|
I see really only one possibility, which is a problem in your linking. You've linked to your .swf file with a <embed src="image1.swf"...>, which means it will need to know where exactly that file is located. So either you can change it to <embed src="http://www.yourdomain.com/image1.swf"...>, or get a base code on your page, such as <base href="http://www.yourdomain.com/"> in between your <head></head> tags. Of course, if your .swf file is in a subfolder, you'll have to edit the values in the embed code to meet those standards.
P.S. If you're going to change the code of the .swf file on the page, make sure you change it everywhere image1.swf appears, which should be two.
Example 1:
<head>
<base href="http://www.yourdomain.com/">
</head>
<tr>
<td bgcolor="000000" width="340"> <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="730" height="55" id="image1" align>
<param name="movie" value="image1.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#CCCCCC">
<embed src="image1.swf" quality="high" bgcolor="#CCCCCC" width="730" height="55" name="image1" align type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
</td>
</tr></table>
Example 2:
<tr>
<td bgcolor="000000" width="340"> <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="730" height="55" id="image1" align>
<param name="movie" value="http://www.yourdomain.com/image1.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#CCCCCC">
<embed src='http://www.yourdomain.com/image1.swf" quality="high" bgcolor="#CCCCCC" width="730" height="55" name="image1" align type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
</td>
</tr></table>
__________________
I am admin [elsewhere].
Last edited by Cory; 05-03-2004 at 12:49 PM..
|