//There is a OnEvent>KEY_DOWN,VK1,0,MouseClick
//Is there a way to know when the OnEvent>LUp
//I'm trying to write a script that will save the mouse REC when the mouse is left clicked in X1,Y1
//then save the mouse REC when the mouse is left clicked is released in X2,Y2
//-------something like this------------
Let>X1=0
Let>Y1=0
Let>X2=0
Let>Y2=0
OnEvent>KEY_DOWN,VK1,0
GetCursorPos>X1,Y1
Label>MainLoop
Wait>0.2
Goto>MainLoop
OnEvent>LUp
GetCursorPos>X2,Y2
MessageModal>%X1%,%Y1%,%X2%,%Y2%