var content:MovieClip; //eventual target for the loaded content
//
// ...do a bunch of loading stuff...
//
function loadComplete(event:Event):void {
content = event.target.content as MovieClip;
this.addChild(content);
content.doWhatever("dog","cat");
}

this way the content for the loaded swf gets loaded into "content" and
you can then treat it like any other object on the display list.

hth,

.m
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to