powered by FreeFind
Propellerhead-Graphix

 

  Kool Clip-Art    Kool Moves and Flash - Related Tutorials

Terms of Use

            All .fun files presented on this site are original works made with Kool Moves © 2004 Propellerhead-Graphix.com PO Box 14, Capac, MI, 48014

 

Using HTML
Home Page
Tutorials
Using HTML
Tutorials
Home Page
This page shows the minimum required HTML to display Flash Player content on an html web page. The example code below is color coded in dark red to ease with editing.
Search this Site
Using HTML to display Flash Player content on a web page.
Use HTML to add a Flash (or Kool Moves) movie to a web page.
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0
"WIDTH="550"
HEIGHT="400"
id="myMovieName">
<PARAM NAME=movie VALUE="myFlashMovie.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>

<EMBED src="myFlashMovie.swf" quality=high bgcolor=#FFFFFF
WIDTH="550"
HEIGHT="400"
NAME="myMovieName"
ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>

Edit the lines coded in dark red above to match the specifics of your flash movie.
1.
2.
WIDTH   should equal the pixel width of your .swf file

HEIGHT   should equal the pixel height of your .swf file

myMovieName is the name of your .swf file (or whatever you named the movie).

myFlashMovie.swf is the url (web address) of your .swf file

bgcolor usually matches the background color of your .swf file.
About the HTML tags used. (Quoted from the Macromedia Web Site.)

"The OBJECT tag is for Internet Explorer 3.0 or later on Windows 9x/2000/NT/ME/XP platforms or any browser that supports the use of the Flash ActiveX control. The "classid" must appear exactly as it does in this example. The "codebase" attribute must also appear exactly as it does in this example; it tells the browser where to find Flash Player for automatic download. Internet Explorer 3.0 or later on Windows 9x/2000/NT/ME/XP will prompt the user with a dialog asking if they would like to auto-install the Flash Player if it's not already installed. This process can occur without the user having to restart the browser.

The EMBED tag is for Netscape Navigator 2.0 or later, or browsers that support the use of the Netscape-compatible plugin version of Flash Player. The "pluginspage" attribute tells the browser where to direct the user to find Flash Player for download if the Player is not already installed. The user would then need to download and run the installer and restart their browser.

To ensure that the most browsers will play your Flash Player movies, you should place the EMBED tag nested within the OBJECT tag as shown in the above example. ActiveX-enabled browsers will "ignore" the EMBED tag inside the OBJECT tag. Netscape and Microsoft browsers using the Flash Plugin will not recognize the OBJECT tag and will read only the EMBED tag."
The tutorial above may involve the use of some actionscript, html, and the like, but are not necessarily intended to teach them. These tutorials are intended to familiarize new users to the Kool Moves interface and contain simplified examples of how to perform specific tasks in Kool Moves as they would relate to the use of materials from this site. Suggested examples contained within these tutorials may not necessarily be the "best" way to accomplish a task, but they do accomplish the job at hand. These tutorials are not an attempt to copy already existing tutorials. In some instances, more detailed tutorials on actionscript and the use of the Kool Moves tool are available at the Support page on the Kool Moves web site.