Hello all, just found AutoitX3 and this forum yesterday.
So far everything has worked great with one exception. Using ControlClick to click a button on an external application works very well on a Win98se machine but doesn't do anything on a WinXP Pro machine. As an alternative I used MouseClick which works fine on both machines. This is not a good permanent solution for me because the application will be minimised to the tray most of the time which will prevent it fom being clicked by the mouse.
This is the line that only works on the Win98 machine:
iResponse = AIX.ControlClick("Swift Elite", "", "SwiftButton14")
This is the line that works fine on both machines:
iResonse = AIX.MouseClick("left", 873, 600)
I searched the forum and couldn't find anything helpful. Has this come up for anyone else? Any suggestions?