on (release) {
_root.news_Clip.gotoAndPlay(71);
if (_root.news_Clip._currentframe == 101) {
_root.news_Clip.loadMovie("myth_News.swf");
continue;
}
}
What I’m trying to do is:
When this button is pressed, whatever is in the current news_Clip movieclip goes to frame 71 and plays till it reaches the end of the outro animation which is frame 101. When it reaches frame 101, I want to load a new swf into news_Clip.
Using the above code, the contents of news_Clip does its outro animation but the new SWF is not loaded into it after reaching the end.
I’ve been screwing around with this for the past 7 hours and can’t figure out what I’m not doing or doing wrong.
If anybody can help me, it would be greatly appreciated. Thank you.