Hey,
I have a situation that I need you help with. I am exporting this Flash banner
to my PHP website. I exported the banner.fla file and the banner.swf. I ftp
everything correctly ,but it is displaying a blank object. // It said, ?Please
press spacebar to activate this control. I did that ,and it still was blank. I
also right clicked the banner and it said, ? movie could not be loaded.? I
browse through my directory and I did see the files were loaded. I can view the
files through iexplore , but when I use the code listed below it won?t work:
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
rsion=6,0,29,0" width="500" height="200">
<param name="movie" value="banner.swf" />
<param name="quality" value="high" />
<embed src="banner.swf" quality="high"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="500" height="200"></embed>
</object>
</body>
</html>
//Can you please help me with this issue? If so, please email me at:
TakeeiousB@yahoo.com
Thanks,
Takeeious Boatwright
sinwi - 12 Dec 2006 06:13 GMT
to make sure that swf file and this page are in same directory. or you can change parameter to <param name="movie" value="_dir_/banner.swf" /> and <embed src="_dir_/" ...>
maybe helpful