Featured Tutorials

css,dreamweaver,css dreamweaver,css problem,dreamweaver problem,fix css dreamweaver,fixing css,center background,conflicting styles CSS Problem Solving in Dreamweaver

CSS Problem Solving in Dreamweaver

Here's a great article/tutorial that covers the solutions to some common problems when dev..

shape dynamics,grass text,bush text,tree text,green text,text effects,brush effects,photoshop tutorial,leafy text,leaves text,brush dynamics,grass effect text,grass text,text with brush Text Effects #3 Brush Text with Shape Dynamics

Text Effects #3 Brush Text with Shape Dynamics

Learn how to create dynamic text effects with shape dynamics that allows you to write text..

ADO, ADO.NET, ASP, VB, C#, c sharp, database ADO Connection Strings

ADO Connection Strings

A reasonably comprehensive list of ADO and ADO.NET database connection strings for use wit..

photoshop,tutorial,photo editing,effects,filters Create a Time is Money hour glass in photoshop

Create a Time is Money hour glass in photoshop

In this tutorial we will learn how to create an hourglass...

graphics design tutorials, how to design logos, logo design,flash drawing,drawing in flash,design in flash,logo illustration,how to logo design,easy logo design,how to design logos,logos,flash logos Tips and tricks for designing logos

Tips and tricks for designing logos

How to design a logo covering some good font techniques, how to get inspiration, playing w..

Featured Videos

Another amazing video showing how easy it is to change a persons ..

Foto Flexer is an amazing tool allows you to resize photos dynami..

Heres a cool tutorial slash speed painting of painting realistic ..

This video shows off the upcoming Flash "Next" 10 from the Adobe ..

Some amazing footage of how Photoshop can be used to great effect..

Flash Detect Keyboard Input with Key Listeners

Heres another helpful bit of flash actionscript code to help you on your way with developing dynamic flash content.

 

Key Listeners

Key Listeners allow you to record the input of keys from the keyboard in flash and allow you to peform actions with keys

First you need to setup your key listener as a function as follows:


KeyListener = new Object();
KeyListener.onKeyDown = function() {
if (Key.getAscii() == 13) { // Code for ENTER key
gotoAndPlay(25);
} else if (Key.getAscii() == 8) { // Code for BACKSPACE key
gotoAndPlay(35);
}
}

 

Then either after the function or on another frame where you want the key listender to start simply add this code:


Key.addListener(KeyListener);

 

Detecting if "Any Key" is pressed


this.createEmptyMovieClip("_keyListener",1);
Key.addListener(_keyListener);
_keyListener.onKeyDown=function(){
play();
}

 

Useful Key ASCII/ALT Codes

ENTER

13

BACKSPACE

8

SHIFT

16

CTRL

17

ALT

18

0

48

1

49

2

50

3

51

4

52

5

53

6

54

7

55

8

56

9

57

Arrow Keys (left)

37

Arrow Keys (up)

38

Arrow Keys (right)

39

Arrow Keys (down)

40



More Flash...

Other Content...

 Subscribe to our feed

Send to a friend