PopUp code issue
Hoping someone can help with this ongoing issue I have in AS3. I am using this code
popupBtn.addEventListener(MouseEvent.CLICK, popup);
function popup(e:MouseEvent):void{
ExternalInterface.call("window.open", "http://youtu.be/iGAHnZ555nI", "win", "width=1000,height=559");
}
to open a popup/popover window on this test site http://villagegreenstudios.com/view10 . It works like a charm in Chrome (both Mac and PC) and IE on PC. It works on Safari, Firefox (Mac) but takes a loooooooong time on Safari and even loooooonger time on FF for the new window to load. While loading in FF I get the spinning wheel of death and have to force quit after waiting over minute. I'm currently unable to check it on my PC's FF for unrelated reasons.
Help?
