Thanks that worked but i only want to make some dates unclickable how do i do that and can i make them a different colour?
Posted 3 months ago
Last Update: 02-04-2008
Source files are now available in Flash 7-8 width AS2 and Flash CS3 with AS3 .
Those who have bought this component and need this in AS3 can re-download it.
Very simple Flash Calendar / Date Chooser utility file. Very easy to use and configure.
Actionscript code is commented.
If you are looking for an Events Calendar File then see these files:
flash calendar, flash calendar component, calendar, date selector, date chooser, as2 date chooser, as3 date chooser, date picker, date component
Subscribe Here to be Get Notified About New File Releases
You might also be interested in:
1- Website Templates Collection:

4- Image Galleries / Slideshows Collection:

6- Navigation Menus Collection:

7- Flash Email Forms Collection:

8- FLV Video Players Collection:
See more files by SaafiDesign
@kag
you have to comment out the following block of code in Actions layer inside the FlashCalendar movieclip:
dateMC.onRollOver = function(){
this.gotoAndStop("over");
}
dateMC.onRollOut = function(){
if( this.id != getDate() ){
this.gotoAndStop("up");
}
}
dateMC.onRelease = function(){
target_text_field.text = this.id+"-"+(getMonth()+1)+"-"+getYear();
root._visible = false;
}
so after commenting out it should look like:
/*dateMC.onRollOver = function(){
this.gotoAndStop("over");
}
dateMC.onRollOut = function(){
if( this.id != getDate() ){
this.gotoAndStop("up");
}
}
dateMC.onRelease = function(){
target_text_field.text = this.id+"-"+(getMonth()+1)+"-"+getYear();
root._visible = false;
}*/
Posted 3 months ago
Thanks that worked but i only want to make some dates unclickable how do i do that and can i make them a different colour?
Posted 3 months ago
@kag
I don’t know what are your exact requirements but it will require customizing this file for some extra cost.
Posted 3 months ago
Thats cool, basically i would like to update it so if someone books on the 15 september to the 20th the next person who chooses dates see they can book on those dates etc
Posted 3 months ago
Hi,
perfect component that fits my project like a glove 
Diggin in to the code I just wanted to ask for the least painful way to get the calendar to return a Date instance of the choosen date. As I understand the date_object is not modified by user interaction. I made a public method to return the date_object but it looks like it isnt affected by chosen date.
All the best, Bjorn
Posted 3 months ago
Hi can you get back to me re customizing the file as the site is going live this week and am happy to pay extra cheers.
Posted 3 months ago
@kag
I have got too busy so please ask on the forums here on flashden and I am sure someone will help you there. Thanks
Posted 2 months ago
Can we embed this in PHP and capture the selected date(s) and how?
Please advise ASAP ! Thanks! would love to buy if so.
Posted about 1 month ago
SaafiDesign,
Great File!
Is there a way to add multiple dates? Let say a single person wants to book me on 4 completely different dates. Is there a way they can click the four different dates and then those dates get populated in the field?
Thank you in advance for your help. Nick
Posted about 1 month ago
SaafiDesign, here is my email address….please contact me and let me know how much something like this will cost.
Thanks Nick nickivory@yahoo.com
Posted 29 days ago
SaafiDesign…. The dates that show up in the text field, i need them to be in the format of: day, month, year. How and where do i change the code to do this?
Thanks Nick
Posted 26 days ago
@nickivory
find following line inside initFlashCalendar function:target_text_field.text = this.id+"-"+(getMonth()+1)+"-"+getYear();and change to:
target_text_field.text = this.id+", "+(getMonth()+1)+", "+getYear();Posted 25 days ago
Saafi,
I dont think I made my issue clear. Currently the format for displaying the date is….month-day-year. I need to switch the month and day so it reads…day-month-year. Ignore the commas. Its the format that needs to change. I tried tweaked the code above but with no luck.
Any ideas?
thanks
Posted 25 days ago
@nickivory
no currently the format is day-month-year which is your requirement.
Posted 25 days ago
@nickivory
which version you are using?
In AS2 version the format is day-month-year which is your requirement but in AS3 the format is year-month-day and that can be changed in the FlashCalendar.as file by replacing the line:dispatchEvent(new KIDateChooserEvent(getYear()+"-"+(getMonth()+1)+"-"+event.currentTarget.id,KIDateChooserEvent.DATE_SELECTED));with:
dispatchEvent(new KIDateChooserEvent(event.currentTarget.id,KIDateChooserEvent.DATE_SELECTED+"-"+(getMonth()+1)+"-"+getYear()));Posted 24 days ago