My AHK Script for A9 Shoe. Can probably be cleaner but it works.
Numpad1 selects the 1 bubble and submits, Numpad 2 selects the 2 bubble and submits, and so on.
Code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Numpad1::
send {tab}{space}{tab}{enter}
return
Numpad2::
send {tab}{space}{right}{tab}{enter}
return
Numpad3::
send {tab}{space}{right 2}{tab}{enter}
return
Numpad4::
send {tab}{space}{right 3}{tab}{enter}
return
Numpad5::
send {tab}{space}{right 4}{tab}{enter}
return