If anyone is interested, I just updated my A9 AHK. slight learning curve, but I made an improvement in the last type of a9 ahk by defaulting the enter key as the last cursor position
start by drawing a bounding box. (if there are zero items, click as if you are starting a bounding box anyway)
numpad0 - there are zero items. push enter to submit
numpad 1 - there is one item
- it will default at no face/label
- it will default at background is uniform color
- it will default at no text or watermark
- it will default at object is not occluded/blocked (fully visible)
numpad 2 - there is more than one item
- it will default at no face/label
- it will default at background is uniform color
- it will default at no text or watermark
- it will default at object is not occluded/blocked (fully visible)
numpad 8 - image didn't load
numpad 6 - toggles watermark
numpad 9 - toggles background color
numpad 7 - toggles visibility
so for example if there's one item, draw the box, and push numpad1. this time it happens to have a watermark, so i push 6, then I push enter.
Code:
numpad0::
send {tab}{space}
send {tab}
return
numpad1::
send {tab}{down}
send {tab}{right}
send {tab}{space}
send {tab}{right}
send {tab}{down}
send {tab}
return
numpad2::
send {tab}{down 2}
send {tab}{right}
send {tab}{space}
send {tab}{right}
send {tab}{down}
send {tab}
return
numpad8::
send {tab}{up}
send {tab}
return
numpad6::
send {shift down}{tab 2}{shift up}
send {left}{tab 2}
return
numpad9::
send {shift down}{tab 3}{shift up}
send {left}{tab 3}
return
numpad7::
send {shift down}{tab}{shift up}
send {up}{tab}
return