Weird title, I know… but its hard to explain in just one sentence…
Here’s the deal: I have a flash site, and I’m loading external movies for certain sections.
code:
on (release){
loadMovie(‘website.swf’, _root.contentmov);
}
This works fine… My problem comes inside that externally loaded movie. I have a button in it that goes to the second frame when pressed.
code:
on (release) {
tellTarget ("_root.mainmov") {
gotoAndStop (2);
}
}
Now, it works fine when I just load that file… but when its called by the main movie, it loads perfectly but the button doesn’t change the frames. I’m sure its just some simple solution, but its really bothering me…
If anyone can help out with this, I’d really appreciate it!