Prob not the best or very well or even correctly written, but what I've been using for A9s that is working for me (AHK): two separate scripts to run at once because I didn't know how and couldn't and didn't wanted to try anymore to figure out how to do them as one.
All keys are on the number pad, with number lock
-off-, use 1 (end) on the number pad when there is one item, 2 for two then 'no' is automatically selected for the last three options. To change any to yes, change 'right' in the script to 'space' for whichever you want to change.
When there are zero items, click + (which is remapped to tab), then - (remapped to space), then enter to submit.
To make sure nothing random happens, click somewhere on the screen first before doing any of these, it seems to need it. I found if I draw a box first, click outside of the image somewhere, then hit 1 or 2, I can usually hit enter to submit if nothing has to be changed, and it goes quickly.
Code:
NumpadAdd::Tab
Numpadsub::Space
NumpadEnd::
send, {click}
send, {tab}
send, {down}
send, {tab 2}
send, {right}
send, {tab}
send, {right}
send, {tab}
send, {right}
send, {tab}
return
Code:
NumpadAdd::Tab
Numpadsub::Space
NumpadDown::
send, {click}
send, {tab}
send, {down}
send, {down}
send, {tab 2}
send, {right}
send, {tab}
send, {right}
send, {tab}
send, {right}
send, {tab}
return