Thankyou
CODE#include <misc.au3>
HotKeySet("{F1}", "start")
HotKeySet("{F2}", "stop")
HotKeySet("{F3}", "escape")
Hotkeyset("{F4}", "move")
main()
Func main()
While 1
Sleep(50)
WEnd
EndFunc;==>main
Func start()
While WinActive("Star Wars")
$I = 1
Do
MouseMove(1124, 524)
MouseDown("Left")
Sleep(600)
Send("5432")
MouseUp("Left")
MouseDown("Left")
Sleep(600)
Send("5342")
MouseUp("Left")
$I += 1
Sleep(600)
Until $I = 4
Sleep(10000)
WEnd
EndFunc;==>start
Func stop()
main()
EndFunc;==>stop
Func escape()
Exit
EndFunc;==>escape
Func move()
MouseMove(1124, 524)
EndFunc ;==>move
thats what i have now, now is there a way to make autoit ovveride the game commands, the game reconizes f1 f2 f3 f4 unless its windowed mode but can i make it bypass the game and still do the commands in non windowed mode