load movie and goto frame in root
Hello,
I'm hoping someone here can help me. I have an swf with a menu button that loads an external swf: on(release) {
loadMovie("Unit-Type.swf",_root.MC_UnitTypes);
}
When that menu movie is loaded I want to be able to click a button and have it go to a certain frame in the root movie and close itself. I have this code but it's not working: on(release){
_root.gotoAndPlay(25);
}