; ; AutoHotkey Version: 1.x ; Language: English ; Platform: Win9x/NT ; Author: Alan J Hogan (alanjhogan.com) ; Copyright: None (Public Domain: Share and modify freely) ; ; Script Function: ; Remaps left Windows key to be a right-click button! ; Useful on my MacBookPro. (Of course, it's really a ; cmd/Apple key, but registers as Windows key.) ; Also turns the Enter key to the left of the arrow ; keys into right-click. ; Combine the right Apple/Windows key and that same ; Enter button to Middle-Click! #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. *NumpadEnter::Delete ; Reassigns "Numpad Enter" to Delete *RWin::RButton ; Reassigns the right Windows/Apple Cmd button to simulate right-click RWin & NumpadEnter::Send {MButton} ; Holding the right Windows/Apple Cmd button and then hitting the same Enter key now simulates a middle click