Search tutorials
Step 2
Now we're all set on the stage and can start writing the actionscript.
Select the first frame in layer 1 (the only frame) and open up the actions window. Here is where all the code will be.
First thing we're going to do is to create a empty function called charcheck with a interval of 200. We'll use this code:
function charcheck() {
}
var charID;
charID = setInterval( charcheck, 200 );
Any thing we type inside the function, flash will now execute every 200 milliseconds.
Inside the function we'll enter the code that makes flash recognize what key the user pressed, so we'll add this:
var char
char = chr(Key.getCode());
Now your actions window should look like this:

| » Level Intermediate |
|
Added: 2004-09-07 Rating: 5 Votes: 2 |
| » Author |
| Andreas is a swedish flash actionscript programer with maby to much free time |
| » Download |
| Download the files used in this tutorial. |
| Download (34 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!