Posts Tagged ‘IE popup’

March 5th, 2009, by Bodie Leonard

AS3 getting past IE popup blocker

[Edited September 04, 2009]
I also use this fix to bypass popups in IE…

/*
use this snippet in the as file to work with this class
function discoverBtnHandler(e:MouseEvent){
var popup:PassPopup = new PassPopup();
// Open the popup window.
popup.ChangePage( “http://theotherwhitemeat.com/porkrecipes/#/recipes/” );
}
*/
package com {
import flash.external.ExternalInterface;
[...]