Hi all,

I have a flash file that, for the most part, just loads other swfs with their own interaction code, etc. In the loaded swf (not the main one, the ones being loaded), I want to access some functions in the loading swf. However, in the Loader documentation, it says that the root object in the display list of the loaded swf is the swf itself, not the loading one (I have confirmed this with lots and lots of traces statements and loops... )

Does anyone have an idea of how this can be done? In psuedo code this is basically what I want:

function some_function() {
trace('here');
}
addChild(load_some_other_swf('other.swf'));

in other.swf:
my_loading_swf.some_function();

All swfs are in the same domain.

Thanks!
-Thomas