ActiveDen

Dynamic XML Flash Events Calendar AS 2.0 Version

I am trying to load this calendar in another swf file but it stretches over the whole website interface, how can I fix it?

In the actionscript code inside the FlashCalendar movieclip comment out the following block of code:

Stage.scaleMode = "noscale";
Stage.align = "tl";
//create a stage listener object
var stage_listener: Object = new Object();
Stage.addListener(stage_listener);

Also find calls to function onStageResize() in the code and comment out them.

How to Show Title of the Event Instead of Events Count?

This can be done but one title of one event can be displayed for a particular day. replace the following line inside the initEventsCalendar function:

dateMC.total_events_mc.theLabel.text = events_counter + ” Event(s)”;

with:

dateMC.total_events_mc.theLabel.autoSize = true;
dateMC.total_events_mc.theLabel.wordWrap = true;
dateMC.total_events_mc.theLabel.multiline = true;
dateMC.total_events_mc.theLabel.text = dateMC.dayEvents[0].TITLE;

You can also show the title in fixed length, if you have too much long titles which will mess up the display, by using the following line:

dateMC.total_events_mc.theLabel.text = dateMC.dayEvents[0].TITLE.substr(0,20);

How to Add a User for Event Management System (EMS) through phpMyAdmin?

Once you have added the database tables for the EMS phpMyAdmin then select the ems_users table and from top menu options click Insert button, fill the form, click ok and you are done.

by
by
by
by
by