Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 1 down vote accepted

You should be able to simply do this:

addChild(new component());

Hopefully the name component won't collide with any reserved variables.

If you still would like to use the Loader class, as @Lukasz advises, use the loadBytes() method and pass the embedded asset. If your swf also contains code, you might need to initialize the LoaderContext:

var ctx:LoaderContext = new LoaderContext(false,this.loaderInfo.applicationDomain);
ctx.allowCodeImport = true;
Loader(addChild(new Loader())).loadBytes(new Components(),ctx);
share|improve this answer
i try using 'addChild(new component());' but it leads to a bunch of errors. and if i compile the flex app to use RSL, flash fails to load dependencies, i dont know why. – Paul Dinh Sep 18 '12 at 9:29
1  
I'm not sure what all the possible errors can be, but I can think of at least one instance for a common null object reference: the stage. If your swf tries to access the stage as soon as it initialize, the code would probably work fine when you compile the swf itself, but when you load it and create a new instance it isn't added to the display list yet, so the stage would be null until that happens, in which case I recommend using an event handler for Event.ADDED_TO_STAGE to initialize the stage dependent code in the swf you load. HTH – George Profenza Sep 18 '12 at 9:36

I think you should use loadBytes of Loader class, similar to described solution here: how to embed swf file

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.