
June 13th, 2001, 03:53 PM
|
|
Junior Member
|
|
Join Date: Jun 2001
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
How to use FLASh in HTML
After you have edited and saved your flash file, the quickest way to see the code necessary to display Flash files in an HTML page is to view the file in a browser from the Flash application using the following commands: FILE:PUBLISH PREVIEW:HTML then when the file opens in the browser, view the source code. Copy the Object code lines into your html page and adjust the file locations as necessary.
See the example below:
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
ID=Movie1 WIDTH=550 HEIGHT=400>
<PARAM NAME=movie VALUE="Movie1.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="Movie1.swf" quality=high bgcolor=#FFFFFF WIDTH=550 HEIGHT=400 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</OBJECT>
Hope this helps,
Rob
:D
|