[REBOL] Re: event/offset relative to screen-face ?
From: max:quazart at: 26-Nov-2001 8:29
The custom window manager I built a while ago (which I sent with the
timeline example a while back) handles all events and does not loose track
of the pointer with regards to the window.
BUT it does lag behind the mouse when moving slowly...
so,
My solution, is to do a to-image of the entire ui in the down event of the
engage func.
replace the pane of the window with one function which tracks NOTHING else
than the mouse movement and when the 'up is called, just put the panes back
before calling show on the window.
I have not tried this, but combined with the recently discovered move
optimisation... this should make the loop much quicker.
HTH
-MAx