Hey Everyone,
I have an event calendar generated with actionscript and populated with XML. When a date in the XML matches a date on the calendar the square turns blue, and becomes a button. Great. This works fine when i test the movie by itself, but when i load it into my main movie, the calendar loads, the XML loads, but the square does not turn blue! The site is a full flash site, and when you click “Events” the calendar loads, but the square doesn’t.
This is the code for my calendar.
fscommand ("allowscale", 0);
CurDate = new Date();
MyCurYear = CurDate.getFullYear();
MyCurMonth = CurDate.getMonth();
MyCurDate = CurDate.getDate();
MonthNames = new array();
NoofDays = new array();
NameofDays = new array();
if ( MyCurMonth == 1 )
{
if ( (MyCurYear%4) == 0 )
{
NoofDays[1] = 29;
}
else
{
NoofDays[1] = 28
}
}
MonthNames[0] = "January";
MonthNames[1] = "February";
MonthNames[2] = "March";
MonthNames[3] = "April";
MonthNames[4] = "May";
MonthNames[5] = "June";
MonthNames[6] = "July";
MonthNames[7] = "August";
MonthNames[8] = "September";
MonthNames[9] = "October";
MonthNames[10] = "November";
MonthNames[11] = "December";
NoofDays[0] = 31;
NoofDays[2] = 31;
NoofDays[3] = 30;
NoofDays[4] = 31;
NoofDays[5] = 30;
NoofDays[6] = 31;
NoofDays[7] = 31;
NoofDays[8] = 30;
NoofDays[9] = 31;
NoofDays[10] = 30;
NoofDays[11] = 31;
NameofDays[0] = "Sun";
NameofDays[1] = "Mon";
NameofDays[2] = "Tue";
NameofDays[3] = "Wed";
NameofDays[4] = "Thu";
NameofDays[5] = "Fri";
NameofDays[6] = "Sat";
mc_flash.gotoAndPlay (2);
myNewDate = new Date(MyCurYear, MyCurMonth, 1);
myNewYear = myNewDate.getFullYear();
myNewMonth = myNewDate.getMonth();
Display = MonthNames[myNewMonth]+" "+myNewYear;
if (myNewMonth == 1) {
if ((myNewYear%4) == 0) {
NoofDays[1] = 29;
} else {
NoofDays[1] = 28;
}
}
myNoofDays = NoofDays[myNewDate.getMonth()];
myDay = NameofDays[myNewDate.getDay()];
if (myDay == "Sun") {
setProperty ("Numbers1", _x, 5);
} else if (myDay == "Mon") {
setProperty ("Numbers1", _x, 33);
} else if (myDay == "Tue") {
setProperty ("Numbers1", _x, 61);
} else if (myDay == "Wed") {
setProperty ("Numbers1", _x, 89);
} else if (myDay == "Thu") {
setProperty ("Numbers1", _x, 117);
} else if (myDay == "Fri") {
setProperty ("Numbers1", _x, 145);
} else if (myDay == "Sat") {
setProperty ("Numbers1", _x, 173);
}
i = 1;
Max = myNoofDays;
Numbers1.gotoAndStop(1);
i = i+1;
duplicateMovieClip("Numbers" add (i-1), "Numbers" add i, i);
"Numbers" add (i-1).gotoAndStop(1);
setProperty("Numbers" add i, _x, getProperty("Numbers" add (i-1),_x)+28);
set("Numbers" add i add ".Num", i);
if ((getProperty("Numbers" add (i-1), _x) > 170)) {
setProperty("Numbers" add i, _x, 5);
setProperty("Numbers" add i, _y, getProperty("Numbers" add (i-1), _y)+25);
}
if (i == Max) {
gotoAndPlay(6);
} else {
gotoAndPlay(3);
}
stop();
mc_msgtxt._visible = 0;
mc_ViewClickedDate._visible = 0;
ChkDate = new Date();
ChkYear = ChkDate.getFullYear();
ChkMonth = ChkDate.getMonth();
ChkDateNo = ChkDate.getDate();
if ((MyNewYear == ChkYear) && (MyNewMonth == ChkMonth)) {
tellTarget ("Numbers" add ChkDateNo) {
gotoAndStop(2);
}
}
stop();
XMLData = new XML();
XMLData.ignoreWhite = true;
XMLData.load("cal.xml.cfm");
XMLData.onLoad = viewApp;
fscommand ("allowscale", false);
function viewApp (success) {
if(success){
mainTag = this.firstChild.childNodes;
for (i=0; i<mainTag.length; i++) {
if ((mainTag*.attributes.year == myNewYear) and (mainTag*.attributes.month == myNewMonth)) {
trace(mainTag*)
eventDate = mainTag*.attributes.date;
myEvent = _root["Numbers" + eventDate];
myEvent.gotoAndStop(3);
}
}
}
}
Does anyone have any ideas?
Thanks,
DjPizat