How can you load an external swf after this latest patch?

It looks like adobe’s new patch breaks this code:

var loader:Loader = new Loader();

function loaded(evt:Event){
addChild(loader);
}
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaded);
loader.load(new URLRequest(‘http://website.com/logos/1.swf’));
}

And website.com already has a crossdomain.xml. I tried adding Security.allowDomain(“website.com”);

I tried adding:

var context:LoaderContext = new LoaderContext();
context.checkPolicyFile = true;

Everything works in the IDE, but nothing works in the new player. It doesn’t even give me an error, even though I’m supposedly running the Debug version. Does anyone have any idea what adobe changed or how you are supposed to load external swf files now? I believe it’s only 10.3.183.5 that is screwed up.