Forum Moderators: mack
will it automatically go into html format or do i just extract the movie into html?
You don't need Flash for the HTML file. The *.SWF file is like a *.GIF or *.JPG file. Right click on other Web pages that use Flash and search the code for "SWF".
In many cases, you can just borrow and modify the code that starts with <object>, references the SWF file, and ends with </object>. Just change the file referenced to whatever file you're using.
<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="640" height="480">
<param name="movie" value="movie.swf">
<param name=quality value=high>
<embed src="movie.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="640" height="480"></embed>
</object>
This piece of code does the following:
"tells" the browser the version of the plugin necessary to run your .SWF movie, in this case 6.0.29.0
It has the name of the movie, the source, the quality and the size of the movie so it should be presented the way you created it, in this case movie.swf has the following attribute:
The quality to be reproduced is HIGH.
It has a screen size of 640x480 pixels (that can also be used as percentage).
Also, the code above identifies the plug-in version and if you don't have it, it can redirect you to Macromedia for download.
I hope this information is useful for you.