hi,
i’m new here and still learning actionscript. i have the similar project like Mikol27, My boss ask me to create a standalone calendar (not for website) for our clients that only display the current month. So I’ll send it each month, ex: for August only send the August calendar. In this calendar, it will display the current date, month (of course), and year. When it shows 27 July, it shows a quote of the day, in 28 July it shows different quote. So I make a new dynamic text with var=date
In actionscript I have add this:
[size=1]onClipEvent(load){
now = new Date();
dates = [“1”, “2”, “3”, “4”, “5”, “6”, “7”, “8”, “9”, “10”, “11”, “12”, “13”, “14”, “15”, “16”, “17”, “18”, “19”, “20”, “21”, “22”, “23”, “24”, “25”, “26”, “27”, “28”, “29”, “30”, “31”];[/size]
[size=1]months = [“January”, “Febuary”, “March”, “April”, “May”, “June”, “July”, “August”, “September”, “October”, “November”, “December”];
}
onClipEvent(enterFrame){
_root.month=months[now.getMonth()]+" “+now.getDate()+” "+now.getFullYear();[/size]
[size=1]_root.date=dates[now.getDate()];[/size]
[size=1]} [/size]
[size=1]if(_root.date == “1”){
_root.holiday_holder.loadMovie(“quote1.swf”);
}[/size]
It shows error :P. Anyone could help me? 
Thanks for your help