Is there a updateAfterEvent function like in jQuery ? I’m playing with the mouse events (mousemove, mouvedown, mouseup) while resizing some containers (divs). Even if it’s smooth, i am wondering if there is way to have it smoother.. In AS3.0 updateAfterEvent makes a significant difference…
Share
No, there’s no equivalent to ActionScript’s updateAfterEvent() in jQuery.
It would not really be applicable since repaint in the browser is not tied to a fixed framerate like in the Flash Player. You could say that updateAfterEvent() is “built in” already when working with mouse events in the browser, since the browser will repaint immediately when needed automatically.