Next and previous using keys

say i want to go to the next frame and previous frame using the left and right arrow keys, is this possible? thanks for any help.

=ryan=

Sure.


on(keyPress "<Left>") {
   prevFrame();
}

on (keyPress "<Right>") {
   nextFrame();
}

Hope that helps
Karen

The right and left arrow symbols aren’t coming through because I think the board sees them as HTML. At any rate, in the quotation marks, you insert the word Left or Right between those symbols.

alright, thank you evr so much
=ryan=