- 積分
- 182
- 最後登入
- 1970-1-1
- 閱讀權限
- 30
- 積分
- 182
- 帖子
- 精華
升級
41%
|
小弟測試的結果是新增一個英文-US的語言。
然後保留一個中文輸入法,將英文-US設為預設的輸入法。
最後使用AutoHotkey這個程式,設定成開機自動執行。
這樣使用Ctrl+space切換輸入法最順...參考看看。
以下附上AutoHotkey的Script內容。
; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
; semicolon, such as this one, are comments. They are not executed.
; This script has a special filename and path because it is automatically
; launched when you run the program directly. Also, any text file whose
; name ends in .ahk is associated with the program, which means that it
; can be launched simply by double-clicking it. You can have as many .ahk
; files as you want, located in any folder. You can also run more than
; one ahk file simultaneously and each will get its own tray icon.
; SAMPLE HOTKEYS: Below are two sample hotkeys. The first is Win+Z and it
; launches a web site in the default browser. The second is Control+Alt+N
; and it launches a new Notepad window (or activates an existing one). To
; try out these hotkeys, run AutoHotkey again, which will load this file.
#z::Run www.autohotkey.com
^!n::
IfWinExist Untitled - Notepad
WinActivate
else
Run Notepad
return
^space::#space
; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.
; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks. It also explains more about hotkeys. |
-
|