Anyone see why this should return the character "T" instead of "Thu"? The original dynamic text elemnt has plenty of room to render 3 characters.
onClipEvent (load) {
myDay = new Date();
dayname = ["Sun", "Mon", "Tue", "Wen", "Thu", "Fri", "Sat"];
datenum = myDay.getDay();
code2 = dayname[datenum];
}




Reply With Quote