Ok, this should be very simple but I am stuck.I want to get the Month, Day and Year for the current day. Here's my script:var tDate = Date(); app.alert("tDate is: " + tDate );// get today's monthvar M = tDate.getMonth() + 1; // 0 based app.alert("M is : "+ M );var D = tDate.getDate(); // get today's...