ID:872752
 
Keywords: mouseup
Code:


Problem description:
The problem is really simple, Click is not being called until after MouseUp, you know, after the mouse button is released. This is a problem because I only want to use MouseUp for certain actions, but I can't when Click wont even respond until after the mouse button is released. Do I have to use MouseDown in the place of Click for everything effected by MouseUp?

After I thought about this for a minute, I remembered I am using client.MouseUp. Would using atom.MouseUp offer any benefits?

This is intended behavior. Click is called when you mousedown and mouseup on an object without mouseexiting it between the down and up. What are you trying to do?