[COLOR=#000000][FONT=verdana]AS2- I have a simple key is down actionscript what i am trying to do is make it a multi ‘key is down’ so instead of pressing ‘‘G’’ to open frame 2 a person has to type a full word for example they would need to type the word ‘‘frame2’’ on their keybored to open frame 2 instead of pressing one key, Thanks in advance! [/FONT][/COLOR]
[COLOR=#000000][FONT=verdana](Typed as a sequence NOT holding all the keys at once)[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]function onEnterFrame()[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]{[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]if (Key.isDown(71))[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]{[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]gotoAndStop(2);[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]} // end if[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]} // End of the function[/FONT][/COLOR]
[COLOR=#000000][FONT=verdana]stop ();[/FONT][/COLOR]