MouseEvent.MOUSE_DOWN makes a function being performed only once. Is there a variation for MouseEvent.MOUSE_DOWN to perform a function continuously while the mouse(or actually a button) is being pressed down?
Or should I implement some extra functions into my main Event.ENTER_FRAME function, checking for some boolean variable set to true/false changed by MOUSE_DOWN / MOUSE_UP? That will work I’m sure but is probably not the most efficient.
P.