Forum Moderators: mack

Message Too Old, No Replies

Adding Flash to The Html Page

This May Sound Stupid

         

sgrad1036

12:58 am on Jul 3, 2003 (gmt 0)

10+ Year Member



i am building a website that comes with flash intro, yet I can't figure out how to make it work.
I also have a site that uses fireworks and cant figure that out either, any suggestions...Im still learning.
Thanks

SlowMove

1:09 am on Jul 3, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You didn't really say what wasn't working with the Flash.

There are many programs that can create *.SWF or Flash files. If you're using Macromedia Flash, you need to go to "Publish Settings..." and "Export Movie..." from the File menu.

MWpro

1:42 am on Jul 3, 2003 (gmt 0)

10+ Year Member



Yes from the publish settings you can check "html" and "flash" and then hit publish. It will then create an html file for you with the code to include the movie (although it's a little sloppy) and you can edit the code if you'd like.

sgrad1036

5:53 am on Jul 3, 2003 (gmt 0)

10+ Year Member



ok, so after I do that will it automatically go into html format or do i just extract the movie into html? Like I said I am still learning flash setup for a new website and cannot figure out how to add the intro to the html page..
i will definitely donate to your site once I get this all figured out.
and thanks for the quick replies.

SlowMove

9:47 am on Jul 3, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



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.

rruusshh

7:48 am on Jul 22, 2003 (gmt 0)



Maybe this would help:

<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.