Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way I can load a swf file but not automatically instantiate it's DocumentClass?

Instead I want to do something like the following:

protected function mainLoaded(e:Event = null):void {
  trace('mainLoaded');
  var main:* = this.mainLoad.createClassByName('Main');
  trace(main);
}

where mainLoad is an instance of CasaLib's SwfLoad and createClassByName is the equivalent to loaderInfo.applicationDomain.getDefinition();

The thing is that when my swf finishes loading I can see it is created, because of some trace calls, although its obviously not added to the display list.

share|improve this question

1 Answer

up vote 1 down vote accepted

In your child swf's document class, use the following:

//constructor
public function ChildSWF()
{
    if(stage) init()
    else addEventListener(Event.ADDED_TO_STAGE, init);

}// end if

private function init(e:Event = null):void
{
    removeEventListener(Event.ADDED_TO_STAGE, init);
    trace("This will only trace when an instance of ChildSWF is added to the stage, not when it's instantiated");

}// end function
share|improve this answer
Not exactly what I was hoping for, but it works, thanks! – Marcel M. Sep 27 '11 at 0:53

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.