views:

156

answers:

1

When I create SWF objects that are temporarly hidden in tabs, thus not fully loaded in some browsers, like FireFox, I can't seem to find way to figure out if the SWF is loaded or not, so I can communicate with it.

/* Generate SWF (onDocumentReady())*/

swfobject.embedSWF("graph.swf","line-graph-one","100%","250","8","expressInstall.swf",null,null,null,swfRegister);

/* Callback function 
 * -------------------
 * Is triggered when SWF object has done it's job, which is fine, but not a 
 *  suggestion that the SWF is actually loaded by the browser) 
 */

function swfRegister(e){
   console.log(e);
}

Here is what doesn't work. While the element exists in the DOM, it's not possible to communicate with it somehow. FireFox in this case hasn't loaded the SWF because the parent container is hidden.(display:none;)

document.getElementById('line-graph-one').reloadAll("foobar");

Resulting in: document.getElementById("map-one").reloadAll is not a function

It only works when I click the tab where the SWF has been created. So FireFox loads it.

I need a way to check if it is loaded,

+1  A: 

Perhaps a visibility check first?

var $el = $("#map-one");
if ( $el.is(':visible') ) {
  $el[0].reloadAll('foobar');
}
BBonifield
It doesn't work, because the element already exists in the DOM, but the actual SWF is not loaded by FireFox. (Firefox tends to load only SWF's visible on the screen). I'll edit my post.
dropson
Ahh, if that's the question, you could maybe just check to see if it's visible first.
BBonifield
Great :) That works
dropson