Navigation for external movie

okay, i browsed thru alot of posts here, but i dont seem to figure it out myself, so please help me. i unfortunatly can’t post the fla’s here, cause my client would kill me :frowning:

so, basically i got a few swfs. the first one is “main.swf” and the second one is “external_01.swf” and so on.
i dynamically create a blank movieClip in “main.swf” in which i can load all the “external_xx.swf” files, based on what buttons i click, which all works out perfectly fine. my problem is the following: i got one external file that has quite alot data, all divided by labels on the main timeline of that “external_01.swf”.
but somehow i can’t seem to navigate to these labels from the “main.swf”.

here is the code so far for one button in “main.swf”:

on (release) {
_root.loadercontainer.loadMovie(“preloader.swf”);
_root.mccontainer5.loadMovie(“clips/external_01.swf”);
_root.mccontainer5.gotoAndPlay(“hans”);
}

so, nevermind the preloader just tell me, how i can get the “external_01.swf” to play the label “hans”?

thx alot for the help - cheers, cyze.