aeohn
11-01-2005, 11:07 PM
All I'm trying to do is display a SWF file on a page without using the word "embed" or "object". In other words, I would generally use this code to display a file:
<body bgcolor="..cccccc">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="swfname" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<param name="bgcolor" value="..cccccc" />
<embed src="http://www.thedomain.com/theswf.swf" quality="high" wmode="transparent" bgcolor="..cccccc" width="200" height="200" name="swfname" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</body>
I need to display the file without using the 'embed' or 'object' tags. Does anyone know a way around these tags?
<body bgcolor="..cccccc">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="swfname" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<param name="bgcolor" value="..cccccc" />
<embed src="http://www.thedomain.com/theswf.swf" quality="high" wmode="transparent" bgcolor="..cccccc" width="200" height="200" name="swfname" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</body>
I need to display the file without using the 'embed' or 'object' tags. Does anyone know a way around these tags?