Created
August 27, 2011 08:28
-
-
Save rohinomiya/1175139 to your computer and use it in GitHub Desktop.
AutoHotKey script / run GoogleIME word register dialog when press [ctrl]+[f10] key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; run GoogleIME word register dialog when press [ctrl]+[f10] key. | |
#NoEnv | |
#NoTrayIcon | |
#Persistent | |
run_googleime_word_register_dialog() | |
{ | |
GoogleIMEToolPath = C:\Program Files\Google\Google Japanese Input\GoogleIMEJaTool.exe | |
Option = "--mode=word_register_dialog" | |
Cmd = %GoogleIMEToolPath% %Option% | |
run, %Cmd% | |
if ErrorLevel | |
{ | |
MsgBox, Run failed: %Cmd% | |
ExitApp | |
} | |
} | |
; Hotkey | |
^F10::run_googleime_word_register_dialog() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment