here wrote some code in ahk, but its not executing correctly, it goes through the loop once, then stops...
Code:
#s::
IfWinExist ahk_class MozillaUIWindowClass
{
WinActivate
}
else
{
WinWait ahk_class MozillaUIWindowClass
WinActivate
}
xaxis = 400
yaxis = 380
horizspace = 150
; TOP ROW
Loop 5
{
IfWinExist ahk_class MozillaUIWindowClass
{
WinActivate
}
else
{
WinWait ahk_class MozillaUIWindowClass
WinActivate
}
Click %yaxis%,%xaxis%
xaxis = xaxis + horizspace
sleep 2500
;Close
Click 493, 132
sleep 1000
}
MsgBox Done
return