http://pages.emerson.edu/students/firstname_lastname/flash_filename.htmlNote: You need to insert your name into "firstname_lastname" and you need to insert your Flash file's title into "flash_filename.html"
For example, my final Flash movie would be viewable at this address:
http://pages.emerson.edu/faculty/andrew_slocum/mac_slocumv3.html
The basic outputted code that Flash produces looks something like this:
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="550" HEIGHT="400" id="flash-template-example" ALIGN="">
<PARAM NAME=movie VALUE="flash-template-example.swf">
<PARAM NAME=loop VALUE=false>
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="flash-template-example.swf" loop=false quality=high bgcolor=#FFFFFF WIDTH="550" HEIGHT="400" NAME="flash-template-example" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>
Because of this, you need to make sure you tell both types of browsers where to find your .swf file. This means you need to alter the "VALUE" parameter for Internet Explorer and the "src" parameter for Netscape/Firefox.
This is the VALUE parameter (used with Internet Explorer):
<PARAM NAME=movie VALUE="flash-template-example.swf">
This is the src parameter (used with Netscape/Firefox):
<EMBED src="flash-template-example.swf"
My .html file is here:
http://www.theindependentpublisher.com/flash-tutorials/flash-in-template-example.shtml
My .swf file is here:
http://www.theindependentpublisher.com/flash-files/flash-template-example.swf
This is the VALUE parameter (used with Internet Explorer):
<PARAM NAME=movie VALUE="/flash-files/flash-template-example.swf">
This is the src parameter (used with Netscape/Firefox):
<EMBED src="/flash-files/flash-template-example.swf"
If I neglected to insert the /flash-files/ code, the browser wouldn't know where to find the flash-template-example.swf and my final Web page would not show my Flash movie.