AutoIt - How do execute the code in the CO world?

03/03/2009 22:31 lbax#1
Hey guys

Okay I can get the program to click the F3 key 3 times every like 1 second.

It works on the desktop which is annoying because whenever I have the CO window active it does nothing.


Is there some specific code I need or does CO now stop this some how?
03/07/2009 11:56 DarkLord4u#2
Quote:
Originally Posted by lbax View Post
Hey guys

Okay I can get the program to click the F3 key 3 times every like 1 second.

It works on the desktop which is annoying because whenever I have the CO window active it does nothing.


Is there some specific code I need or does CO now stop this some how?

Try asking Evan Lim in his Thread .....
03/07/2009 14:18 Darkyy#3
Quote:
Originally Posted by DarkLord4u View Post
Try asking Evan Lim in his Thread .....
I believe that Eval Lim uses AHK not AutoIt.
03/09/2009 16:25 Azothoras#4
Quote:
Originally Posted by lbax View Post
Hey guys

Okay I can get the program to click the F3 key 3 times every like 1 second.

It works on the desktop which is annoying because whenever I have the CO window active it does nothing.


Is there some specific code I need or does CO now stop this some how?
Code:
$conquername = "[Conquer2.0]"
While 1
   Sleep(333)
   If WinActive($conquername) Then
      Send("{F3}")
   EndIf
WEnd
This will send F3 three times everysecond but only if conquer is active... :)