N nau310d Client Регистрация 17.05.2011 Сообщения 87 Благодарностей 1 Баллы 0 27.05.2011 #1 There doesn't seem to be a macro to get the current day of the month, for example 26th. How can I do this? javascript? Thanks
There doesn't seem to be a macro to get the current day of the month, for example 26th. How can I do this? javascript? Thanks
bigcajones Client Регистрация 09.02.2011 Сообщения 1 216 Благодарностей 683 Баллы 113 27.05.2011 #2 var d = new Date();(d.getDate()); Will return today's date. Put it in your macro.