View Single Post
  #11 (permalink)  
Old 09-24-2003, 11:03 PM
Que Que is offline
WebProWorld New Member
 
Join Date: Sep 2003
Location: LA
Posts: 6
Que RepRank 0
Default Figured out two of my questions

- As for changing MTWTFSS to SMTWTFS, duh, it was in the parameters for the calendar component. "First day of week." Can't believe I missed that.

- The wierdness of it showing the first day of the month that had an event vs today's events was in the getEvents.onLoad function located in frame 1 of the _root.
Changed the following at the end of the getEvents.onLoad function:

while(--todayDate){
if(calendar_ec.getDataByDate(todayDate).length){
calendar_ec.getDayByDate(todayDate).onRelease();
}else{
//trace("no events:" + todayDate);
}
}

/to:/

calendar_ec.getDayByDate.onRelease();

and it started showing todays events on loadup.


A new problem that I've found is that I made a mc of "no appointments" (static text) that fades in and then out again but it doesn't fade when testing the swf. I've never seen this before where something that fades perfectly fine in the flash program itself, won't fade in the swf. It simply turns on, then off. I don't mind it, but why isn't it fading??

-=Randy
Reply With Quote