<!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 have to load the flash after the rest of the content on my page
due to an awful IE bug.  This is a JavaScript thing, not so much a
Flash thing, but here's a stripped down version of how you do it.  This
will wait until the page is entirely loaded (images and all), and then
run the function that is listed in the "onload".<br>
<br>
<br>
<html><br>
<head><br>
<script type="text/javascript"><br>
  function on_load() {<br>
     //Add  SWFObject loading stuff here.<br>
  }<br>
</script><br>
</head><br>
<body onload="on_load();"><br>
  <!-- HTML content goes here --><br>
</body><br>
</html><br>
<br>
--<br>
Jeremy Nicoll<br>
<a class="moz-txt-link-abbreviated" href="http://www.SeeMySites.net">www.SeeMySites.net</a><br>
<blockquote
 cite="midmailman.0.1156809553.9376.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>
[SWFObject] Flash loading before other content</td>
      </tr>
      <tr>
        <td>
        <div class="headerdisplayname" style="display: inline;">From: </div>
Cliff Boyd <a class="moz-txt-link-rfc2396E" href="mailto:evolutionedge@evolutionedge.com"><evolutionedge@evolutionedge.com></a></td>
      </tr>
      <tr>
        <td>
        <div class="headerdisplayname" style="display: inline;">Date: </div>
Sat, 26 Aug 2006 10:57:18 +0100</td>
      </tr>
      <tr>
        <td>
        <div class="headerdisplayname" style="display: inline;">To: </div>
<a class="moz-txt-link-abbreviated" 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-abbreviated" href="mailto:swfobject@lists.deconcept.com">swfobject@lists.deconcept.com</a></td>
      </tr>
    </tbody>
  </table>
  <br>
Hi
  <br>
  <br>
I'm in no way an advanced flash user and I'm new to swf object. I have
a particular behavior occurring and I wonder if anyone would know the
reason.
  <br>
  <br>
I have a page (it's just in development at this stage) that contains a
relatively small flash movie. It loads and functions fine the first
time the page is loaded, but when I navigate to another site and 
return to it there is a moment in which the flash appears before the
rest of the page's content. Sometimes the previous page's content is
still visible 'around' the flash then is replaced by my page's content.
This occurs to varying degrees in any browser on both mac and windows.
  <br>
  <br>
My question is: Is there a way (javascript?) to have the entire page's
content load and then once done the flash is loaded - or for the flash
to be loaded at the same time as the rest of the content?
  <br>
  <br>
(I did some searching but no luck - I did find the FOUC issue but that
seems to only happen on IE on windows and its not really the same
issue).
  <br>
  <br>
Thank you for any input
  <br>
  <br>
Cliff Boyd
  <br>
</blockquote>
<br>
</body>
</html>