Setting up the ActionScript
On the frame that you put your text box on, in the "Actions" layer, open up the Actions menu in Expert Mode and type:
stop();
This, quite obviously, stops the document from entering the next frame.
Then we need to declare the 12 Variables that will be used in the script:
var textIn;
var textOut;
var textOut1;
var textArray;
var cursor;
var cursorS;
var num;
var numA;
var variance;
var flash
var flasher;
var flashrate;
Some of the variables need to be defined, as shown below, but you can change textIn to whatever you like:
textIn = "This text doesn't really say anything. In fact the only reason its here is because otherwise I wouldn't have anything to write a tutourial about. So if your reading this, your probably wasting your time. Sorry about that.";
textOut= " ";
num=-1;
variance=10;
The variance number can be anything between 0 and 30, depending on the speed and variance of the text being typed
numA=random(variance);
cursor = "|";
flash = 0;
flasher = true;
flashrate=10;
The cursor variable could also be "_" depending on what you are making
The next part splits textIn into individual letters and stores them in textArray:
textArray = textIn.split("");
| » Level Intermediate |
|
Added: 2009-08-14 Rating: 5.43 Votes: 7 |
| » Author |
| A person. Not really much else to say here. umm... thats it. i'm not a very interesting person really, am i? |
| » Download |
| Download the files used in this tutorial. |
| Download (0 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!