Please Have Mercy!

Im so new to this that I cant come up with a solution about inserting a swf file into my html page, what is the right step to follow ? i want my html page to show the movie I’ve just created in flash.
Pleazze HELP!

THANKS

MARCOVNI

That’s not too hard. What program are you using to make the web page, or are you hand coding it?

Well, if you’re using Dreamweaver then all you have to do is go to the Insert tool and select Flash. Otherwise, I think the code is similar to this:

<i><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=“32” height=“32”>
<param name=“movie” value=“filename.swf”>
<param name=“quality” value=“high”>
<embed src=“name.swf” quality=“high” pluginspage=“http://www.macromedia.com/go/getflashplayer” type=“application/x-shockwave-flash” width=“32” height=“32”></embed></object></i>

Oops, I actually did embed that…

Or you can do this.

In publish settings (in the Flash program) check off html to have flash publish a page which contains the code to embed the object. Then you can use a text editor to open the html file and simply copy everything between the two object tags. (or embed tags.) This code can be placed in any page and have it read by IE or NN. The addressing is important in this case though. Flash is assuming that the swf file will be in the same exact place as the html page that will have the embed code.

Usually the reason an embed doesn’t work is that the swf is not where the embed code is looking for it.