In Foxit Reader, I'd like Autohotkey to respond to Numpad5 by double-clicking, then calling NumpadAdd. Individually, both work normally. But the first won't call the second. What is wrong? Thanks!
SetTitleMatchMode 2 ; allow partial titles
#IfWinActive, Foxit
Numpad5::
Click 2
Send {NumpadAdd} ; THIS DOESN'T REACT
Return
NumpadAdd::
Send ^b ; create a bookmark
... do other stuff ...