I'm working with Timelines
and was hoping to hook up some KeyPress
events to the stage that could alter the way the timeline changes the properties over the course it runs.
I know how to differentiate between what key was pressed and for what keys I want to listen, but need to know how I can determine if a key has just been pressed once, like typing, or if a key is being held down for a longer period of time, so that I can have the program make more rapid adjustments the longer the key is held down.
When a key is being held down, you keep on getting KEY_PRESSED events. You can count how many presses of the same key you get in a row:
Here is a simple test application: