Calendar
Features:
Customizable Calendar, XML customizable events, images, urls and text, editable settings through the FLA file.
The Calendar has the following customizable variables:
- calendarWidth & calendarHeight
- calendarColor & calendarGradient
- backgroundAlpha & alphaSpeed
- calendarTextSize & calendarTextFont & calendarTextColor
- effect
- daySize & dayColor & dayEventColor & dayAlpha
- daySpacing
- eventBorder & eventColor
- eventTextSize & eventTextFont & eventTextColor
- transition & eventTransitionSpeed
- startDay
All the code is in the first frame of the calendar_container symbol.
The events, the images and the texts are loaded from the XML file.
You can set a different background for each month.
You can edit the day letters and month names for different languages, and you can set any day as the start day in the calendar.
- FREE ARCHIVE
- - currently, there is no free archive to download for this product
- - an FX component similar to this file could be released soon, please check this page for updates
PAID ARCHIVE
- - Label FREE (
) - - customizable AS2 FLA file for new or current Adobe Flash projects
- DETAILS
- FLASH INSTALL
- LICENSE
Non-Flash users:
At the moment, this product cannot be configured without using Flash. An FX component could be released soon, please come back for updates. Meanwhile you can download and use for free the FX-labeled components in the Components section.
Flash users
Please read the FLA installation instructions to be able to easily configure the FLA file with Adobe Flash (8, CS3 and CS4 supported) and to embed this product into your website.
Please read the FLA installation instructions to be able to easily configure the FLA file with Adobe Flash (8, CS3 and CS4 supported) and to embed this product into your website.
| Personal License (details ...) | 15 USD | Add to cart |
The "Personal License" grants you, the purchaser, a non-exclusive and non-transferable right to make use of this product in a single non-commercial application*, your own work or client work. |
||
| Commercial License (details ...) | 36 USD | Add to cart |
The "Commercial License" grants you, the purchaser, a non-exclusive and non-transferable right to make use of this product in a single commercial application*, your own work or client work. |
||
| Special License (details ...) | 47 USD | Add to cart |
The "Special License" grants you, the purchaser, a non-exclusive and non-transferable right to make use of this product in an unlimited number of personal OR commercial applications* owned by you or your company. |
||
| Extended License (details ...) | 235 USD | Add to cart |
The "Extended License" grants you, the purchaser, a non-exclusive and non-transferable right to make use of this product in an unlimited number of personal OR commercial applications* owned by you OR your clients. |
||
- COMMENTS
- SEARCH COMMENTS









I have one problem with the calendar. When you click on an event…the window opens up fine but I can not see the x to close the window or scroll arrows if there is alot of type…..
Anything other than 2009 and 2010 will not show the background image – just a blank grey color. I paid $15 for this and need it to work!
Hi,
You have to specify the image to load on any other year in your data.xml file.
Hello,
How can i change start day of week.
Regards.
Hi,
To change the start day you have to do the following steps:
1. Open the calendar.fla file
2. Go to Window -> Library (Ctrl+L), right click on calendar_container and select Edit
3. Go to Window -> Actions (F9) and you’ll have access to the source code.
4. On line 14 you have to edit this code:
Change it to 0 for Sunday, 1 for Monday and so on.
Thanks for the quick reply.
It works.
Now though i am having problems with the images not showing up. In the data.xml i file i tried both paths “calendar/images/01.jpg” and “images/01.jpg” but it doesnt load the pics.
Also in Firefox the calendar is displayed correctly, whereas in IE8 it shows part of the calendar in the top left of the swf.
Final question. I have a background that i would like to use as a default picture for all. How do i do that? I tried overwriting all the month pics with my image, but after the year changes it switches to radial.
Thank you in advance.
Hi,
Please make sure you set the correct path for your images.
About the IE8 problem, send us a link to your website and we will check it.
Regarding the background image, send to support[at]flashxml.net your archive and your image and we will make the changes for you.
Hello,
I have placed all the calendar files under a folder named “calendar”. I have changed all the necessary paths to have calendar/ prior to them.
My index page is in the root of my site.
The calendar doesnt play, whereas if i run the index page under the calendar folder, the test page that came with the demo, it works.
I also checked the FAQ, but i cant seem to find where to apply the flashvars rule that you said may fix it.
thanks in advance
Hi,
Please add this code between the <head></head> tags of your main page:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script> <script type="text/javascript"> var flashvars = {}; flashvars.folderPath = "calendar/" var params = {}; params.scale = "noscale"; params.salign = "tl"; params.wmode = "transparent"; var attributes = {}; swfobject.embedSWF("calendar/calendar.swf", "CalendarDiv", "600", "260", "9.0.0", false, flashvars, params, attributes); </script>Also, add this code between the <body></body> tags of your main page:
i want this flash, i like this flash
Hi,
If I have to add events for the forthcoming year, how do I add them to the XML? I have tried a few methods, and for some reason the events start overlapping, like something I set for 2008, shows up in all the subsequent years, and something I set for 2011 does not show up at all.
Is it possible for you to create an XML with dummy entries for a couple of years, and send it to me? Would really appreciate it.
Thanks in advance.
Hi,
You need to write this code to add new dates:
<year type="folder" number="2011"> <month type="folder" number="0" pic="images/january.jpg"> <day type="folder" number="9"> <picture pic="icons/04.png"></picture> <text txt="Your text here"></text> </day> <day type="folder" number="10"> <picture pic="icons/03.png"></picture> <text txt="Your text here"></text> </day> </month> <month type="folder" number="1" pic="images/february.jpg"> <day type="folder" number="1"> <picture pic="icons/05.png"></picture> <text txt="Your text here"></text> </day> <day type="folder" number="2"> <picture pic="icons/03.png"></picture> <text txt="Your text here"></text> </day> </month> </year>I hope you get it. Modify it according to your needs.
This project include admin area to update effent in the calendar?
Hi,
Please read the comment from the user YhwhDesign.
You’ll find the answear there.
good
Just a quick note, if you want to allow users to add info to the calendar, what you need to do is setup a mysql database that keeps the calender data in it. Create a form that the users will fill out, take that form info and use php code to save it to the database, then have php print out an xml file from the database that will allow the calender to reflect the new data… that simple.
Hi,
Thank you for your tutorial.