?How to insert flash animation ...

Status
Not open for further replies.
The most basic way is......there are alot of other things you can add most have it to recognize if player is installde and if not it will install it.

<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">
</embed>
</object>
 
<center><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
ID=newintro WIDTH=550 HEIGHT=400>
<PARAM NAME=movie VALUE="welcome.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#000000> <EMBED src="welcome.swf" quality=high WIDTH=550 HEIGHT=400 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</OBJECT></center>

that what oyu are talking about with the thing that recognises the player? I am often looking at the source of websites and see simaller ways to this alot.
 
Using html text above I have inserted my animations, but something strange is going on - when I upload it to server instead Flash Animation I get text area box, and on my computer everything ok??? For creating web I use MS FP.
 
I found this script on many sites - what does it do:

<SCRIPT language=JavaScript>
<!--

function SymError()
{
return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
return (new Object());
}

window.open = SymWinOpen;

//-->

I'm a beginner at this.
 
Status
Not open for further replies.
Back
Top Bottom