Also I coded a script for AutoHotkey if anyone wants to screw around with TaikoJiro. By holding u I was able to pop the Rotter Tarmination Ura Oni bubble note.
Copy into notepad and save as *.ahk - if you have AutoHotkey installed the extension will be affiliated with the program and you can double click the resulting file to run it. The AutoHotkey icon should appear in the taskbar when it is active.
$u::
Loop 200 ;this number can be altered to get the best result for your computer
{
if not GetKeyState("u", "P")
break
SendInput j
SendInput f
}
return
Copy into notepad and save as *.ahk - if you have AutoHotkey installed the extension will be affiliated with the program and you can double click the resulting file to run it. The AutoHotkey icon should appear in the taskbar when it is active.