Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;
- ; AutoHotkey Version: 1.x
- ; Language: English
- ; Platform: Win9x/NT
- ; Author: A.N.Other <myemail@nowhere.com>
- ;
- ; Script Function:
- ; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
- ;
- ;#InstallKeybdHook
- #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
- SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
- SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
- ;Capslock::Send {LAlt down}{Shift}{LAlt up}
- Down := false
- *Numpad1::
- Down := !Down
- If Down
- Send {ALT Down}
- else
- Send {ALT Up}
- return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement