Autoit not working???

07/27/2010 16:55 babas666#1
Hi,

I am trying to setup a little something using autoit.
My problem is that none of the actions like MouseClick, MouseMove etc are working inside the Conquer window.
The programm is working fine outside but when the cursor enters the CO windows the pointer stops working.
Here is the code .
Any idea?
Thanks a lot

Code:
Func QuitProg() ;user-defined-function
	Exit ; quites out of the script
EndFunc

HotKeySet("^!x","QuitProg") ;

While 1 
WinActivate("[Con","")

MouseClick("right",512,288)
MouseMove(random(1,800),random(1,500))
sleep(Random(300, 3000))
	           
WEnd
07/31/2010 11:05 kflow44#2
WinActivate("[Con","") <----> WinActivate("[Conquer 2.0]","")

Maybe try it without it too.