AutoHotkeyのv2についてニュースが出ていたので、今まで使っていたスクリプトをv2で動くように調整した。
デフォルトだとv1、v2が共存していてv2で動くかどうかの確認作業が進めづらいので、
Launch settings>Run all … interpreter
に設定する。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
ProcessSetPriority "High" SetMouseDelay -1 SendMode "InputThenPlay" A_HotkeyInterval := 1000 A_MaxHotkeysPerInterval := 100 ;-------------------------------------------------------- ; Google日本語入力 ;-------------------------------------------------------- ; "C:\Program Files (x86)\Google\Google Japanese Input\GoogleIMEJaTool.exe" -mode=config_dialog ; キー設定の選択>編集 ; sc07b 無変換 ; Muhenkan > IMEを無効化 ; Shift Muhenkan > IMEを無効化 ; sc070 ひらがな ; Hiragana > IMEを有効化 ; sc079 変換 ; Henkan > エントリー削除 ; Shift Henkan > エントリー削除 ;-------------------------------------------------------- ; Esc(RShift)※左1段目 ;-------------------------------------------------------- >+MButton::Send "#{Tab}" >+WheelUp::Send "{PgUp}" >+WheelDown::Send "{PgDn}" >+h::Send "{Left}" >+j::Send "{Down}" >+k::Send "{Up}" >+l::Send "{Right}" >+7::Send "{Home}" >+8::Send "{End}" >+q::Send "{&}" >+w::Send "{'}" >+e::Send "{``}" >+a::Send "{^}" >+s::Send "{$}" >+d::Send "{~}" >+u::Send "{|}" >+i::Send "{\}" >+o::Send "{@}" >+p::Send "{`%}" >+n::Send "{(}" >+m::Send "{)}" >+4::Send "{Enter}" >+Enter::Send "{Tab}" >+Backspace::Send "{Delete}" ;-------------------------------------------------------- ; Tab(変換)※左2段目 ;-------------------------------------------------------- sc079 & 1::Send "{F12}" sc079 & 2::Send "{F2}" sc079 & q::Send "{Esc}" sc079 & w::Send "{LWin}" sc079 & e::Send "#e" sc079 & r::Send "#r" sc079 & c::Send "#c" ; Color Picker ; 移動+Shift sc079 & h::Send "+{Left}" sc079 & j::Send "+{Down}" sc079 & k::Send "+{Up}" sc079 & l::Send "+{Right}" sc079 & 7::Send "+{Home}" sc079 & 8::Send "+{End}" ;-------------------------------------------------------- ; LControl ;-------------------------------------------------------- ~<^c:: { If (A_PriorHotkey = A_ThisHotkey && 500 > A_TimeSincePriorHotkey) { Send "{End}+{Home}^c" } } ;-------------------------------------------------------- ; LAlt ;-------------------------------------------------------- ; エクセル以外単独押下無効 ~LAlt:: { if (WinActive("ahk_exe excel.exe") = 0) { Send "{vk99}" } } <!1::Send "{Home}" <!2::Send "{End}" <!q::Send "!{Left}" ; 戻る <!w::Send "!{Right}" ; 進む <!e::Send "^w" ; 閉じる <!a::Send "^{PgUp}" ; 前のタブ <!s::Send "^{PgDn}" ; 次のタブ <!d::Send "^+t" ; 再び開く <!f::Send "^{F5}" ; 更新 <!z::Send "!+{Z}" ; Chrome拡張(右側のタブを閉じる) CoordMode "Mouse", "Window" <!v:: { static keyDownCount If (A_PriorHotkey = A_ThisHotkey && 500 > A_TimeSincePriorHotkey) { keyDownCount += 1 If (keyDownCount > 1) { keyDownCount := 0 } } Else { keyDownCount := 0 } this_id := WinGetID("A") If (WinGetMinMax(this_id) = 1) { WinRestore(this_id) WinMove(,,1100,750,this_id) } WinGetPos(&x, &y, &w, &h, this_id) If (keyDownCount = 0) { MouseMove(w//2, 8) } Else If (keyDownCount = 1) { MouseMove(w-5, h-5) } } ;-------------------------------------------------------- ; 無変換(Space左側) ;-------------------------------------------------------- ~sc07b:: { If (A_PriorHotkey = A_ThisHotkey && 500 > A_TimeSincePriorHotkey) { Send "{sc070}" } } ;-------------------------------------------------------- ; マウス ;-------------------------------------------------------- F14:: { if (WinActive("ahk_exe chrome.exe") != 0) { Send "!+e" ; Chrome拡張(ESET) } for this_id in WinGetList("ahk_exe chrome.exe") { If (WinExist(this_id) != 0 && WinGetMinMax(this_id) = 0) { WinClose(this_id) } } } |