I want to be able to click to the left (180 pixels) of an image array. The image will appear multiple times and in every instance I want to de-select the item. I have tried the following but this gives me an error:
MouseMove>XArr_%k%-180,YArr_%k%
I'm sure that it is a simple fix but all the things I have tried have failed.
Any help would be greatly appreciated.
Kind Regards
Trevor
Code: Select all
//Find and Left Click Center of
FindImagePos>C:\Macro Scheduler\Bitmaps\CusModTaskExtraInfo.bmp,WINDOW:Tasks,0,1,XArr,YArr,NumFound,EXACT
If>NumFound>0
Let>k=0
Repeat>k
MouseMove>XArr_%k%,YArr_%k%
LClick
Wait>0.5
Let>k=k+1
Until>k=NumFound
Endif