Quick question - shortcut for today's date?

Soldato
Joined
6 Mar 2008
Posts
10,078
Location
Stoke area
Autohotkey is great, I use it for lots of little things especially text replacement. It'll easily do what you want.

Create the script, output as an exe and then add it to the startup folder so it boots each time you load windows.
 
Associate
OP
Joined
16 Jul 2018
Posts
4
Thanks for the comments

This Autohotkey script should work?

:R*?:ddd::
FormatTime, CurrentDateTime,, dd/MM/yy
SendInput %CurrentDateTime%
return
:R*?:xxx::
FormatTime, CurrentDateTime,, yyMMddHHmmss
SendInput %CurrentDateTime%
return
:R*?:aaa::
FormatTime, CurrentDateTime,, yyMMdd
SendInput %CurrentDateTime%
return
:R*?:jjd::
FormatTime, CurrentDateTime,, dd-MM-yy
SendInput %CurrentDateTime%
return
:R*?:yyy::
FormatTime, CurrentDateTime,, dd-MM-yy HH:mm
SendInput %CurrentDateTime%
return
 
Back
Top Bottom