For embedding a flash object into a HTML site there a many possiblites,
here are some methods:
<object width="640" height="480"> <param name="movie" value="krpano.swf"> <embed src="krpano.swf" width="640" height="480"> </embed> </object>Note: This is the minimum code you need to embed a Flash movie in a browser. A broken icon will appear on the Web page if the user does not have the Flash plug-in installed. Note: In the code above there is both an <embed> tag and an <object> tag. This is because the <object> tag is recognized by Internet Explorer, and other browsers recognizes the <embed> tag and ignores the <object> tag.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/ ...linebreak...
...continueline... cabs/flash/swflash.cab#version=9,0,28,0"
height="100%" width="100%">
<param name="movie" value="krpano.swf">
<param name="flashvars" value="pano=krpano.xml">
<param name="allowFullScreen" value="true">
<embed src="krpano.swf"
pluginspage="http://www.macromedia.com/go/getflashplayer"
height="100%" width="100%" allowFullScreen="true"
flashvars="pano=krpano.xml" />
</object>
<html>
<head>
<title>krpano.com example</title>
</head>
<body>
<div id="krpano">
<noscript>
Javascript not activated
</noscript>
</div>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
var so = new SWFObject("krpano.swf","krpanoSWF","100%","100%","9.0.28");
so.write("krpano");
</script>
</body>
</html>
...
var so = new SWFObject("krpano.swf","krpano","100%","100%","9.0.28");
so.useExpressInstall('expressinstall.swf');
so.setAttribute('xiRedirectUrl', window.location);
so.write("krpano");
...