Re: Detect ResizeStack completion?

2002-10-29 Thread David Epstein
Thanks for the replies to my question: Has anyone found a good way to detect the COMPLETION of a stack's resizing? It now appears that Mac and Windows responses to resizeStack are different. Scott Rossi suggested: Check a variable state, not the mouse state. on mouseDown set the

Detect ResizeStack completion?

2002-10-28 Thread depstein
Has anyone found a good way to detect the COMPLETION of a stack's resizing? The resizeStack message gets sent continuously while the stack is being resized, and I want to know when the user has finished resizing by releasing the mouse. An approach using the mouse works ok on my Mac OS9: on

Re: Detect ResizeStack completion?

2002-10-28 Thread Scott Rossi
Recently, [EMAIL PROTECTED] wrote: on resizeStack w,h if the mouse is up then doComplexThings -- only happens when user releases mouse at -- end of resizing But this does not work on Windows; and Metacard Help advises never using the mouse in this way. What is the best alternative?