flash keyboard input
flash keyboard input
Out of context: Reply #1
- Started
- Last post
- 1 Response
- ********0
not sure if this is what you looking for. could try this method:
code:
onClipEvent (enterFrame) {
if (key.isdown(key.right) or key.isdown(68)) {
if (i != 1) {
this.gotoAndPlay(25);
i = 1;
}
} else {
this.gotoAndStop(1);
}
}