thanks again for your help, it doesnt seem to be working for me.
for your initial post when using:
var days:Array = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];
var months:Array = ["Jan.","Feb.","Mar.","Apr.","May.","Jun.","Jul.","Aug.","Sep.","Oct.","Nov.","Dec."];
var ampm:String = "AM";
var d:Date = new Date();
var day:int = d.day;
var date:int = d.date;
var hour:int = d.hours;
var min:int = d.minutes;
var month:int = d.month;
if(hour>12){
hour = hour - 12;
ampm = "PM";
}
if(hour==0) hour = 12;
trace(days[day]+", " + months[month] + " " + date);
How was the document set up? Did you have to include any text? Where you working with only one frame?
Sorry for all of the questions, but getting a bit lost in trying to code this. Very much appreciate the help!
Here is a working version of the one that is two frames, and that puts the date into a field:
showdate
Here's the FLA that made that:
http://colin.scienceninja.com/showdate.fla.zip
If you see a message that says that the file was made with a later version, don't worry about it. I'm often a little ahead of everyone else! It should work ok.