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 dayvar Y = tDate.getFullYear(); // get
today's yearI get the tDate, which is correct, but I can't get the
month, day and year. Please help.Thanks!Student