how to send contorl+mouse click in autoit

09/07/2005 17:49 GiYo#1
Hi,

I am wondering how to send contorl+left mouse click in autoit.
What I do now:
Code:
 AutoItSetOption ( "SendKeyDownDelay", 10) 
 Send("^")
 MouseClick("left",Random(0,1024,1),Random(0,700,1),1,1)
 AutoItSetOption ( "SendKeyDownDelay", 1)
but it does not work

please help

here is the solution:
Code:
Send("{CTRLDOWN}")
MouseClick("left",Random(0,1024,1),Random(0,700,1),1,1)
Send("{CTRLUP}")