PDA

View Full Version : How do you import swish into dreamweaver



xavier
11th Jan 2005, 03:25 pm
I'm using swish v2.0 and dreamweaver 4

CADTutor
11th Jan 2005, 05:23 pm
Well SWiSH creates flash movies with a .swf file extension. X/HTML does not have native support for flash objects so you need to use the <object> tag. Here is an example:



<object classid="clsid&#58;D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http&#58;//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="300" height="100">
<param name="movie" value="gardens.swf" />
<param name="quality" value="high" />
<embed src="gardens.swf" quality="high" pluginspage="http&#58;//www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="100"></embed>
</object>



It looks rather more complicated than it is. You could modify this code for your own purposes. Alternatively, in Dreamweaver 2004MX select Insert>Media>Flash from the pull-down menu.

xavier
11th Jan 2005, 05:37 pm
Thank you