2006/08/22(火)Apple Pro KeyboardをWindowsで使用する[完結編]

前回の予告通り、窓使いの憂鬱のみで完結できるようにしました。
使用している.mayuファイルに以下を追加して下さい。

#Macintosh Keyboard Define
def key Mac英数				=	0x71
def key Macかな				=	0x72
def key MacF13				=	0x5D
def key MacF14				=	0x5E
def key MacF15				=	0x5F
#def key MacEject			=	0x6C
def key NumEqual			=	0x59
def key NumComma			=	0x7E

#for Apple Pro Keyboard for 109JP
key U-Mac英数 = D-ひらがな U-ひらがな
key U-Macかな = D-変換 U-変換
key *F1 = *半角/全角
key *MacF13 = *PrintScreen
key *MacF14 = *ScrollLock
key *MacF15 = *Pause
key *Insert = *F1
#key MacEject = *Insert
key *NumEqual = *BackSpace
key *NumComma = *Comma

mod alt -= LeftAlt
mod windows += LeftAlt
key *LeftAlt = *LeftWindows

mod windows -= LeftWindows
mod alt += LeftWindows
key *LeftWindows = *LeftAlt

mod alt -= RightAlt
key *RightAlt = *Apps

mod windows -= RightWindows
mod alt += RightWindows
key *RightWindows = *RightAlt

これを読み込ませれば、これまでのようにレジストリを弄ることなくMacのキーボードを109ライクに使用できるようになります。

追記 2006/08/31

前回の設定ではWin+Rなどの同時押しが正しく動かなかった為、設定項目を修正しました。