Right now I have a flash movie that goes untill frame 20, and on frame 21 at the bottom of the script it has go to and play 20, so it loops. I was wondering if there was a way to skip to frame 22, after the text has typed itself out.
Printable View
Right now I have a flash movie that goes untill frame 20, and on frame 21 at the bottom of the script it has go to and play 20, so it loops. I was wondering if there was a way to skip to frame 22, after the text has typed itself out.
*bump*
Put this in frame 21;
Code:var ctext = ctext+text.substring(0, 1);
text = text.substring(1);
if (ctext != "Welcome to my profile, enjoy!") {
gotoAndPlay(20);
} else {
gotoAndStop(22);
}
Ahh thanks