| I got Flash code and don't know how to put it on my website Please help me! |
ineedhelp

msg:1564005 | 1:41 am on Aug 14, 2004 (gmt 0) | Hi I have created a small flash movie for the top of my website and I got the HTML code for it but I don’t know what to do with it. This is the first flash movie I made so I have don’t know anything at Flash but I know some HTML. Just to let you know I am using the Geocities webserver. Thanks for your help! Scott
|
sidyadav

msg:1564006 | 9:17 am on Aug 14, 2004 (gmt 0) | Welcome to WebmasterWorld, Scott! Follow these steps to get your Flash file on the web: - Upload your Flash file to the GeoCities server (e.g. [geocities.com ])
- Open your HTML file in a text editor and modify the path poiting to the Flash file (e.g. movie.swf OR C:/My Documents/movie.swf) to the full URL (e.g. [geocities.com ])
- Upload the HTML File. Access it using a browser and you will see it working.
Good luck! Sid
|
ineedhelp

msg:1564007 | 2:09 am on Aug 15, 2004 (gmt 0) | is this the code I shuld paste to a new page: -------------------------------------------- <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH="250" HEIGHT="80"> <PARAM NAME=movie VALUE="-----MOVIE NAME----.swf"> <PARAM NAME=quality VALUE="Best"> <PARAM NAME=wmode VALUE="transparent"> <PARAM NAME=bgcolor VALUE="#000000"> <EMBED src="-------MOVIE NAME-----.swf" quality="Best" wmode="transparent" bgcolor="#000000" WIDTH="250" HEIGHT="80" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> </EMBED> </OBJECT> ------------------------------------------------- I hope that is the code!
|
sidyadav

msg:1564008 | 3:21 am on Aug 15, 2004 (gmt 0) | Yes, that's right. However, you will need the standard HTML tags (e.g. <html>, <body>), and if you prefer, a title and some text. Example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <HTML> <HEAD> <title>The Title</title> </HEAD> <BODY> <p>Some content</p> [i]<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs /flash/swflash.cab#version=5,0,0,0" WIDTH="250" HEIGHT="80"> <PARAM NAME=movie VALUE="MOVIE NAME.swf"> <PARAM NAME=quality VALUE="Best"> <PARAM NAME=wmode VALUE="transparent"> <PARAM NAME=bgcolor VALUE="#000000"> <EMBED src="MOVIE NAME.swf" quality="Best" wmode="transparent" bgcolor="#000000" WIDTH="250" HEIGHT="80" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/i ndex.cgi?P1_Prod_Version=ShockwaveFlash"> </EMBED> </OBJECT>[/i] </BODY> </HTML> Sid
|
|
|