The HTML code provided with your SWF file may be as simple as:
<EMBED SRC="Soccer.swf" WIDTH="129" HEIGHT="148">
<NOEMBED>Get Flash !</NOEMBED>
</EMBED>
or something more complicated, like:
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" width="129" height="148">
<PARAM name="movie" value="Soccer.swf">
<PARAM name="quality" value="high">
<PARAM name="menu" value="true">
<EMBED SRC="Soccer.swf" quality="high" menu="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="129" height="148">
</EMBED>
</OBJECT>
Note: in both cases, you want to add ^GEMDIR/ inside the starting double quotes on the EMBED SRC line:
<EMBED SRC="^GEMDIR/Soccer.swf" WIDTH="129" HEIGHT="148">
-or-
<EMBED SRC="^GEMDIR/Soccer.swf" quality="high" menu ...
|