irlynjl
03-23-2006, 02:19 AM
Hello!
I want to put animated pictures in my website. My colleague was the one who made it through macromedia flash. How can i attach the file in my website?
Please help.
sta12s
03-23-2006, 03:56 AM
When you want to put a Flash file on a website you embed it.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="XXX" height="XXX" title="Your Title Here">
<param name="movie" value="flash/fileName.swf">
<param name="quality" value="high">
<embed src="flash/fileName.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="XXX" height="XXX"></embed>
Also, you need the .swf file not the .fla
Be sure to replace the fileName.swf (it's in 2 places) and also replace the width and hieght.
-Sta12s