Insert Flash on Frontpage
1. Go to CMS > page Manager > Click to edit the page you want. Frontpage in this example
2. paste that code where you want your .swf to be displayed :
<div> <object classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0” width=”550” height=”400”> <param name=”movie” value=”your/path/file.swf”> <param name=”quality” value=”high”> <embed src=”your/path/file.swf” quality=”high” pluginspage=”http://www.macromedia.com/go/getflashplayer” type=”application/x-shockwave-flash” width=”550” height=”400”> </embed> </object> </div>
3. If you work with any gallery using a XML file to load the pictures, you will need to set the absolute path like http://localhost:8888/www.yoursite.com/www/yourflashfolder/...
4. Done
Note: for small flash movies, the following is better:
<object width=”[width]” height=”[height]” data=”[URL of flash movie]” type=”application/x-shockwave-flash”></object>

