Embed Tag no longer working
Hi,
I have a pure AS3 project which uses Embed tag for iOS. I have been using 3.4 to 3.6 and 3.7 betas.
Now i updated to the official release of 3.7 sdk but when i test with my project I got the Error.
[Fault] exception, information=Error: Error #3747: Multiple application domains are not supported on this operating system.
package {
import flash.display.MovieClip;
import flash.display.Sprite;
public class TestAirIntelliJ extends Sprite {
[Embed(source="../assets/bling.swf")]
private var FaceBling:Class;
public function TestAirIntelliJ() {
var mc:MovieClip = new FaceBling()
addChild(mc)
}
}
}
The SWF files has no AS3 code in it, it's a plain timeline animation swf
What should i do to make it work with SDK 3.7 (I really don't want to write loads of code as I have LOTS of Embed tag in the project)
