There are some idiosyncracies when objects appear and disappear under 
the mouse.  In general, by listening to all mouse events (down, up, 
over, out) you can see a pattern that you can look for (you may see an 
over instead of a down for example).

In other situations, this can be remedied by not changing the object 
under the mouse in response to a mouse event, which can be done by 
taking the functionality in the mouse event, wrapping it in a function 
and calling it via doLater.

function showAlertLater()
{
   Alert.show(...)
}
mousedown="doLater(this, 'showAlertLater')"

No guarantees, but we've worked around these kinds of issues 
successfully.




 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to