我需要知道我的 swf 何时准备好开始播放(例如初始加载程序已完成下载)。我知道我可以在 swfExternalInterface.call('someJSFunc')
中的[loader][1]
处理程序中使用,但如果可能的话,我宁愿没有这种依赖。
在 JS 中有更好的方法吗?到目前为止,我唯一想到的是:
// continually check if the flash is ready
var int = setInterval(function(){
var fl = $('#flashMovie').get(0);
if (fl) {
doThings();
clearInterval(int);
}
}, 50);