Been absent for a bit, but hoping you can help me.
I have a website I am needing to automate part of the screen using image capture and then clicking on said location.
The screen looks like this

I am needing to find all the Hyphens (Dashes). I am using an exact match to put them into an Array. I am then needing to step through the Array clicking on the location of the dash. Note I am using a screen capture to limit the search location as such there is the MouseMove>{%DashXArr_0%+767},{%DashYArr_0%+402} command but I am stuck trying to workout out how to step through the array getting each position and being able to mouse move to that location. I think I am having a brain fart in my old age, please help.
[snippet=]//Find and Left Click Center of
FindImagePos>%BMP_DIR%\image_10.bmp,%TEMP_DIR%\screenrect.bmp,0.7,1,DashXArr,DashYArr,DashNumFound,EXACT
If>NumFound>0
MouseMove>{%DashXArr_0%+767},{%DashYArr_0%+402}
LClick
Wait>0.5
EndIf
Endif[/snippet]