<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
   I do not remember what your problem was exactly, but I did come
across a bug in IE where many (or all) of my images would disappear
upon anything after the first load.  The way I had to fix it was to put
call the SWFObject code once the body had loaded.  Here's what I had to
do:<br>
<br>
<html><br>
<head><br>
<script type="text/javascript"><br>
function on_load() {<br>
  //SWFObject code goes here<br>
}<br>
</script><br>
</head><br>
<body onload="on_load();"><br>
  <!-- body content --><br>
</body><br>
</html><br>
<br>
    Also, in response to another question, you can use something like
this to add a parameter to SWFObject:<br>
<br>
so.addParam("wmode", "transparent");<br>
<br>
Jeremy Nicoll<br>
<blockquote
 cite="midmailman.38020.1156262018.31875.swfobject-deconcept.com@lists.deconcept.com"
 type="cite">
  <table class="header-part1" border="0" cellpadding="0" cellspacing="0"
 width="100%">
    <tbody>
      <tr>
        <td>
        <div class="headerdisplayname" style="display: inline;">Subject:
        </div>
Re: [SWFObject] [BUG?] Strange Caching issues</td>
      </tr>
      <tr>
        <td>
        <div class="headerdisplayname" style="display: inline;">From: </div>
"Mike Mountain" <a class="moz-txt-link-rfc2396E" href="mailto:mike.mountain@ecmsys.co.uk"><mike.mountain@ecmsys.co.uk></a></td>
      </tr>
      <tr>
        <td>
        <div class="headerdisplayname" style="display: inline;">Date: </div>
Tue, 22 Aug 2006 10:11:32 +0100</td>
      </tr>
      <tr>
        <td>
        <div class="headerdisplayname" style="display: inline;">To: </div>
<a class="moz-txt-link-rfc2396E" href="mailto:swfobject@lists.deconcept.com"><swfobject@lists.deconcept.com></a></td>
      </tr>
    </tbody>
  </table>
  <table class="header-part2" border="0" cellpadding="0" cellspacing="0"
 width="100%">
    <tbody>
      <tr>
        <td>
        <div class="headerdisplayname" style="display: inline;">To: </div>
<a class="moz-txt-link-rfc2396E" href="mailto:swfobject@lists.deconcept.com"><swfobject@lists.deconcept.com></a></td>
      </tr>
    </tbody>
  </table>
  <br>
  <pre wrap="">Hmmm, doesn't solve my problem though...

M

  </pre>
  <blockquote type="cite">
    <pre wrap="">-----Original Message-----
From: <a class="moz-txt-link-abbreviated" href="mailto:swfobject-bounces@lists.deconcept.com">swfobject-bounces@lists.deconcept.com</a> 
[<a class="moz-txt-link-freetext" href="mailto:swfobject-bounces@lists.deconcept.com">mailto:swfobject-bounces@lists.deconcept.com</a>] On Behalf Of 
Geoff Stearns
Sent: 21 August 2006 20:22
To: <a class="moz-txt-link-abbreviated" href="mailto:swfobject@lists.deconcept.com">swfobject@lists.deconcept.com</a>
Subject: Re: [SWFObject] [BUG?] Strange Caching issues

maybe you are trying to send it to a frame that hasn't loaded yet?

are you waiting until the whole movie is loaded before 
telling it to jump to that frame?</pre>
  </blockquote>
</blockquote>
<br>
</body>
</html>