ÿþÿmon,tue,wed,thu,fri,sat,sun,ÿþÿHoursDÿþÿ,Insert current date and time on Ctrl+Shift+Dÿþÿ&{A057AF2B-925D-4a3c-BB77-2C8C14A8AC5A}ÿþÿ Open fileÿþÿÿþÿÿþÿÿþÿÿþÿÿG/* This simple script example inserts current date and time to active window. To find out what DNM Script is, visit: http://www.konradp.com/wiki/index.php/DNM_Script */ //first let's get current time (type: INT - that is, a number) var $nCurrentTime=TimeGetCurrent(); //now we have to convert it to a string, //using a specified format. e.g. %Y means "year" //more: http://www.konradp.com/wiki/index.php/TimeFormat var $sCurDate=TimeFormat($nCurrentTime,"%Y-%m-%d %H:%M:%S"); //now let's insert it to currently active window: SendTextToWindow($sCurDate); Of1S>ã@