开发者

Javascript / SWFobject | Determine if a swf object exists when creating dynamic embed objects

开发者 https://www.devze.com 2023-01-16 04:47 出处:网络
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 commun

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","开发者_StackOverflow社区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,


Perhaps a visibility check first?

var $el = $("#map-one");
if ( $el.is(':visible') ) {
  $el[0].reloadAll('foobar');
}
0

精彩评论

暂无评论...
验证码 换一张
取 消