AutoIt seems to stop working when focus is given to a java application.
For this code:
MouseMove(61, 121, 10);
WinActivate("Main @ paperMoney [build 1800.20]");
MsgBox(0, "got it", "got it");
Results are --> Mouse moves, java application gets focus and message appears
For this code:
WinActivate("Main @ paperMoney [build 1800.20]");
MouseMove(61, 121, 10);
MsgBox(0, "got it", "got it");
Results are --> java application gets focus, mouse DOES NOT move and message appears.
Is there anything I can do to make the mouse and keyboard commands work after the java application has focus?