Hi,
I want to say;
on keyPress up, down or left do whatever
I have this:
on (keyPress “<Up>”) {
_root.incorrect();
}
on (keyPress “<Down>”) {
_root.incorrect();
}
on (keyPress “<Left>”) {
_root.incorrect();
}
But want to put it all in one statement.
What do I do?
Cheers!