Help to convert a v1 script into v2 – insert the current date Topic is solved

Get help with using AutoHotkey (v2 or newer) and its commands and hotkeys
User avatar
entropy
Posts: 93
Joined: 17 Oct 2014, 01:45

Help to convert a v1 script into v2 – insert the current date

Post by entropy » 22 Mar 2023, 01:24

Hello,
I have this v1 script to insert the current date, however, I tried to convert it into v2 but I can’t find the way. Could someone help me?

Code: Select all

#Numpad6::send %A_DD%-%A_MMM%-%A_YYYY%
Thanks

swagfag
Posts: 6222
Joined: 11 Jan 2017, 17:59

Re: Help to convert a v1 script into v2 – insert the current date  Topic is solved

Post by swagfag » 22 Mar 2023, 01:57

Code: Select all

#Numpad6::send(A_DD '-' A_MMM '-' A_YYYY)

Post Reply

Return to “Ask for Help (v2)”