Dreamweaver/PHP/SWF

Associate
Joined
4 Dec 2006
Posts
21
Location
Newcastle [UK]
I have a *.php page, and want to insert a piece of flash I have made.

I go to Insert > Media > Flash and inser the *.SWF.

It shows fine on the screen. I can play the file on the screen infront of me.

I upload both the *.PHP file and the *.SWF and the *.SWF simply will not show.

Both files are definetly on the server.

Where am I going wrong? What makes it even annoying is that it is so simple, yet will not work whatsoever.

Any ideas?
 
For swf files:
Code:
<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" WIDTH="580" HEIGHT="344" CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0"> 
<PARAM NAME="MOVIE" VALUE="movie.swf"> 
<PARAM NAME="PLAY" VALUE="true"> 
<PARAM NAME="LOOP" VALUE="true"> 
<PARAM NAME="QUALITY" VALUE="high"> 
<EMBED SRC="movie.swf" WIDTH="580" HEIGHT="344" PLAY="true" LOOP="true" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> 
</EMBED> 
</OBJECT>
And everything should work :)
 
Back
Top Bottom