Link to home
Start Free TrialLog in
Avatar of oaktrees
oaktrees

asked on

Help to Modify Autohotkey Script to Add Timestamp to Output

Need help to update this Autohotkey script to add the hour, minute and second to the generated result.  

If possible, prefer AM & PM.  If not, then 24-hour format is fine:

^#q::
FormatTime, CurrentDateTime,, yyyy.M.d-'A'
SendInput %CurrentDateTime%
return

Open in new window


Amy thanks!

OT
Avatar of Kimputer
Kimputer

^#q::
FormatTime, CurrentDateTime,, yyyy.M.d-hh:mm tt
SendInput %CurrentDateTime%
return

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Joe Winograd
Joe Winograd
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of oaktrees

ASKER

T H A N K  Y O U  !  !  !  !
You're very welcome!