I’m not exactly sure what you’re trying to do, but if I’m not mistaken then I’m thinking you’re trying to go to frame 45 of the movieclip inside the external movie? If that’s the case then try something like this. [AS]on (release) {
this.gotoAndPlay (45);
}
[/AS] or
[AS]on (release) {
_parent.gotoAndPlay (45);
}
[/AS]