Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!
Making flash recognise what key was pressed
Author: Andreas Thun
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.00 Votes: 2
Hits: 125
|
| » 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)
|
|
Get conversion and unzipping tools
for PC and Mac here!
|
| » Forums |
|
More help? Search our boards for quick answers!
|
|
Please rate this tutorial, 10 is the top rating, you can also click the
comments link to read/write a review.
|
|
|