
Originally Posted by
hyperspeed
thanks for the help! but its still not working =\
i moved the folder to main zencart folder, then renamed it to "flash"
then i changed define_main_page.php to read the following below.
Any input? Thanks!
try it without using relative links...
Code:
<object type="application/x-shockwave-flash" data="http://www.neffywrap.com/flash/movie.swf" width="555" height="360">
<param name="movie" value="http://www.neffywrap.com/flash/movie.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<param name="menu" value="false" />
</object>
Also, the code above is basic.... your assuming that a flash player is installed and that it's the right version to play the movie.
If you're movie was made with flash 6 then this would be a better way to do it.
Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="movie" width="555" height="360" align="middle">
<param name="movie" value="http://www.neffywrap.com/flash/movie.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<param name="menu" value="false" />
</object>