Usually we load external swf file into Flash using 'Loader' class.
var loader:Loader = new Loader();
loader.load(new URLRequest("http://domain/path/my-external-swf.swf"));
However, the external swf file is now embedded in my flash document:
[Embed("my-external-swf.swf")]
public var component:Class;
Is it possible to tell 'Loader' to load from embedded content instead?