User Tools

Site Tools


wiki:windows:auto_hotkey:auto_hoykey

This is an old revision of the document!


Auto Hot Key

My Scripts

Window Always on Top

^SPACE::
Winset, Alwaysontop, , A
return

Insert Date

:R*?:ddd::
FormatTime, CurrentDateTime,, yyyyMMdd
SendInput %CurrentDateTime%
return

Create Dated Directory

^!d::
Send !d
Send ^c
Destin = %Clipboard%
FormatTime, DatedDir, , yyyyMMdd
FileCreateDir, %Destin%\%DatedDir%

Create Dated Directory with Prefix

^!c::
Send !d
Send ^c
Destin = %Clipboard%
PrefixName = Unsigned Invoices
FormatTime, DatedDir, , yyyyMMdd
FileCreateDir, %Destin%\%PrefixName% %DatedDir%

Move PDFs to New Dated Sub-Folder

^!m::
Send !d
Send ^c
Destin = %Clipboard%
FormatTime, DatedDir, , yyyyMMdd
FileCreateDir, %Destin%\%DatedDir%
FileMove, %Destin%\*.pdf, %Destin%\%DatedDir%

Run/Focus Notepad++

^!n::
Run C:\Program Files (x86)\Notepad++\notepad++.exe
wiki/windows/auto_hotkey/auto_hoykey.1463158576.txt.gz · Last modified: 2016/09/13 15:54 (external edit)