Forums / Setup & design / Flash loaded on homepage but not on other pages
Chris Lan
Monday 02 January 2006 11:54:03 pm
Hello,
I included a flash movie following the instruction in the doc. I include this code in the pagelayout.
<object classid="clsid:D27CTR6E-AE8D-11cf-96B8-444577740000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="800" height="160"> <param name="movie" value="design/mysite/images/main_photo.swf"> <param name="quality" value="high"> <embed src="design/mysite/images/main_photo.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="800" height="160"></embed></object>
The movie load inside the homepage but when I change of page it does not loaded and look for it forever. Any clue on what it could be?
Thanks,Chris
john polo
Tuesday 03 January 2006 12:30:05 am
I figured this out by try / error and i believe this is the esaiest way to put flash on your site.
First of all put your main_photo.swf into images folder of your design then use the following code. It works for me for both firefox and IE.
<object classid="clsid:D27CTR6E-AE8D-11cf-96B8-444577740000" codebase="http://download.macromedia.com/pu...h/swflash.cab#version=6,0,29,0" width="800" height="160"> <param name="movie" value={"main_photo.swf" |ezimage }> <param name="quality" value="high"> <embed src={"main_photo.swf" |ezimage } quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="800" height="160"></embed></object>
Tuesday 03 January 2006 4:03:41 am
Thank you so much John. It's working just great!Chris