0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AutoHotKeyのメモ

Last updated at Posted at 2020-08-08

##ダウンロード
https://www.autohotkey.com/

##デフォルトの保存場所

C:\Program Files\AutoHotkey

##スタートアップ起動設定
ファイル名を指定して実行「shell:startup」
ahkのショートカットを入れとく

##キー
無変換 : ~vk1D
変換  : ~vk1C

##私のahkファイル

MyAutoHotKey.ahk
;方向キー
~vk1D & H::Send,{Blind}{Left}
~vk1D & J::Send,{Blind}{Down}
~vk1D & K::Send,{Blind}{Up}
~vk1D & L::Send,{Blind}{Right}

~vk1D & A::Send,{Blind}{Left}
~vk1D & S::Send,{Blind}{Down}
~vk1D & W::Send,{Blind}{Up}
~vk1D & D::Send,{Blind}{Right}


;エンター
;~vk1D & E::Send,{Enter}

;バックスペース
~vk1D & B::Send,{BS}
~vk1C & B::Send,{BS}

;デリート
;~vk1D & D::Send,{Delete}
~vk1C & D::Send,{Delete}

;ブラウザ
~vk1D & Q::Send,{Browser_Back}
~vk1D & E::Send,{Browser_Forward}

;仮想デスクトップ移動
~vk1D & Z::Send,{Blind}#^{Left}
~vk1D & X::Send,{Blind}#^{Right}


0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?