I just came up with an AHK for the current A9s
not as useful as the one I made for colors, but oh well
first, draw the bounding box (if applicable)
push numpad0 if nothing matches (must click workspace first)
push numpad 1 if there is one object, then it's set to select nonwatermarked solid background - change when necessary
push numpad 2 if there's more than 1
push numpad 8 if it didn't load
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}{down 3}
send {tab}
return