Article

Home » Design and Layout » Flash Tutorials » Flash Script - Simple Typewriter Effect

About the Author

SitePoint

View all articles by SitePoint...

Flash Script - Simple Typewriter Effect

By SitePoint

April 28th, 2003

Reader Rating: 8

Download the sample files here.

1. Create one text field, and give it variable name "type".

2. Create 3 keyframes as shown below:

1067_tool1

3. In the first key frame, insert the action:

text = "This text is being displayed with type writer effect";
max = length(text);  
loop = 1;

4. In the second key frame insert the action:

loop = loop + 1  

type = substring(text,1,loop);

5. In the third key frame insert the action:

if (i > max)  
{ stop(); }  
else  
{ gotoAndPlay (2); }

6. That's it! You have built your own type writer effect!

If you liked this article, share the love:
Print-Friendly Version Suggest an Article

Sponsored Links

Rate This Article

  • 1
    Poor
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
    Great

Comment on This Article

Have something to say?

Post A Comment

You need to be a member of the SitePoint Forums to comment on this post. Sign Up

Already a member? Post using your SitePoint Forums account: