I am working on a dynamic calendar using xml…i found a decent tut that got me as far as i have. The only real issue is that the calendar starts on Monday instead of Sunday. I was hoping someone could take a look at the code and let me know what i need to change in order to make it work. I attatched the source files so you can take a look at them.
Thansk for the help.
Button.prototype.useHandCursor = true;
loadMovieNum("sound.swf",1);
function leapYear (Year) {
if (((Year % 4) == 0) && ((Year % 100) != 0) || ((Year % 400) == 0)) {
return (true);
} else {
return (false);
}
}
function daysInMonth (month, year) {
var daysinmonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
if (leapyear(year) == true) {
daysinmonth[1] = 29;
}
return (daysinmonth[month]);
}
function displayMonth(month, year)
{
var d = new Date();
var yspan = 0;
var xspan = 0;
d.setFullYear(year, month, 1);
var firstDay = d.getDay();
var i = 1;
while (daysInMonth(month, year) >= i)
{
d.setDate(i);
attachMovie("day", "date" + i, i);
if (d.getDay() != 0)
{
this["date" + i]._x = startx + w * (d.getDay() - 1);
}
else
{
this["date" + i]._x = startx + w * (d.getDay() + 6);
} // end if
this["date" + i]._y = starty + h * yspan;
this["date" + i].date = d.getDate();
this["date" + i].weekday = weekArray[d.getDay()];
this["date" + i].year = d.getFullYear();
this["date" + i].month = monthArray[month];
this["date" + i].cMonth = month + 1;
if (curDay == d.getDate() && curMonth == d.getMonth() && curYear == d.getFullYear())
{
this["date" + i].gotoAndStop(2);
} // end if
var k = 0;
while (k < t_xml.length)
{
if (d.getDate() + "." + (d.getMonth() + 1) + "." + d.getFullYear() == t_xml[k].attributes.datum)
{
this["date" + i].gotoAndStop(3);
this["date" + i].nr = k;
} // end if
k++;
} // end while
if (d.getDay() == 0)
{
yspan++;
} // end if
i++;
} // end while
current = monthArray[month] + " - " + year;
currentLength = daysInMonth(month, year);
if (d.getDay() != 0)
{
var temp1 = 0;
var i = d.getDay();
while (i < 7)
{
attachMovie("ghost", "lastghost" + i, i + 50);
this["lastghost" + i]._x = startx + w * i;
this["lastghost" + i]._y = starty + h * yspan;
this["lastghost" + i].date = ++temp1;
i++;
} // end while
} // end if
if (firstDay == 0)
{
firstDay = 7;
} // end if
var i = 1;
while (i < firstDay - 1)
{
attachMovie("ghost", "firstghost" + i, i + 100);
this["firstghost" + i]._x = startx + w * i;
this["firstghost" + i]._y = starty;
if (month != 0)
{
this["firstghost" + i].date = daysInMonth(month - 1, year) - (firstDay - 2 - i);
}
else
{
this["firstghost" + i].date = daysInMonth(11, year - 1) - (firstDay - 2 - i);
} // end if
i++;
} // end while
}
function cleanUp () {
for (var i = 0;(currentLength + 1) >= i;i++) {
removeMovieClip ("date" + i);
removeMovieClip ("lastghost" + i);
removeMovieClip ("firstghost" + i);
}
anzeige_txt.text = "";
}
termin_xml = new XML();
termin_xml.ignoreWhite = true;
termin_xml.load("termine.txt");
news_txt.htmlText = "<font color='#ff0000'>Lade Einträge!</font>";
fscommand ("allowscale", false);
stop();
termin_xml.onLoad = function(status) {
if (status) {
news_txt.htmlText = "";
t_xml = termin_xml.firstChild.childNodes;
startx = 96;
starty = 160;
w = 22;
h = 22;
monthArray = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
weekArray = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
var d = new Date ();
currentMonth = d.getMonth();
currentYear = d.getFullYear();
curDay = d.getDate();
curWDay = d.getDay();
curMonth = d.getMonth();
curYear = d.getFullYear();
displayMonth(currentMonth, currentYear);
anzeige_txt.text = weekArray[curWDay] + "
" + (((((curDay + " ") + monthArray[curMonth]) + " - ") + curYear) );
} else {
news_txt.htmlText = "<font color='#ff0000'>Error during the transmission!</font>";
}
}