LoginSignup
2

More than 5 years have passed since last update.

Apple Keyboard を Windows で気持ちよく使うためのソフトウェアとその設定

Last updated at Posted at 2017-05-15

初投稿は、環境設定からと言うことで、
Apple有線キーボードをWindowsで使う際に、割り当て変更がなかなか上手くいかない
”英数”キーを攻略した際の手順のメモ。
わかるとすごく簡単です。

基本形はこちら:Change key
http://satoshi3.sakura.ne.jp/f_soft/dw_win.htm

手ごわい”英数”キーはこちら:Auto hot Key

ソフトを入手
https://autohotkey.com

設定ファイルに下記を追記
”英数”キーに、Windowsキーボードの半角/全角を割り当て

#InstallKeybdHook

;Mac keyboard
#USEHOOK
vkE9sc071 Up::Send,{vkF3sc029 Down}{VkF3sc029 Up}  ;Apple英数->半全
vkFFsc072 Up::Send,{vkF3sc029 Down}{VkF3sc029 Up}  ;Appleかな->半全
#USEHOOK off

以上

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
2