Search tutorials
Step 2 - creating the frame-actions:
Then, you are ready to create the actions to make the whole thing work:
o frame 1 has these actions:
q = 1;
text = "this is where
you put your text";
stop();
o frame 2 has these actions:
if (q < text.length) {
textbox = text.substring(0,
q);
q++
} else {
textbox = text;
gotoAndStop(1);
}
o frame 3 has these actions:
gotoAndPlay(2);
| » Level Intermediate |
|
Added: 2002-10-01 Rating: 5 Votes: 18 |
| » Author |
| aka: gozzip@Undernet |
| » Download |
| Download the files used in this tutorial. |
| Download (54 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!