Subscribe to our newsletter:
Awaiting 3 votes.
Posted by : vip on 10/08/2008
4259 pageviews, 10 purchases
Package includes: FLA,images, XML file, SWF, HTML
Opens with: Flash 8, Flash CS3
AS Version: ActionScript 2.0
Viewable with: Flash Player 8 and above
This component can be used in your personal site, business site or just like a simple application ... The events, pictures for every month, the name of the month, the day number for each month, the name of the days, almost everything is given by the XML file. The calendar is made in ActionScript 2.0 and you can find the code in the first frame. Some variables that you can change on the .fla file:
width set the calendar width
height set the calendar height
border set the size of the picture border, you can put a picture for every month
borderColor set the picture border color
daySpacing set the spacing bettwen the days ... but this is a minimum spacing, the code will genereate the best spacing
beginDay set the begin day for the calendar ... you just give the value and the calendar will auto arrange
number set the number of events category that will be display ... the rest of the event on that day will be autoscroll
categoryNumber you can add new category to the XML file ... there is no limit but the code gets just a limited number ... this is the categoryNumber ... so if you give more category dont forget to increase this number
scrollWidth for the events you are going to have a scroll bar if it's necessary ... just set the width of this bar ... the height will auto generate
barNumber the pictures have a round bar preloader ... set the bars number
barWidth for the preloader set the bars width
barSpace set the preloader bar space
fillType
colors
colorsOver
alphas
ratios
matrix gradient for the scroll bar ... you can set the colors ... alphas ... ratios ... every thing is customizable
some text formats you can set the (font/color/size/bold/underline) I just tell you what are this about:
monthFormat set the month text format
yearFormat set the year text format
dayFormat set the day text format
dayFormatSpecial set the format for special days like Su/Sa
daysFormat set the format for the number of the day
daysFormatSpecial set the number of the active day text format
eventFormat set the event text format
I offer full support for this component and a special price
- Price : $15
- buy now
- add to alerts
Sample
Purchased. Nice program
Just wondering if you have any documentation for the AS so I don’t have to go through your code line by line to figure out what is what?
Trying to change the box and fill around the date in the main calendar.
In your example you have a 1 point line around the 7th. I would like to modify that, is it possible?
Also, how do you estimate picture size and position?
No … the events are add from the XML file … it could be done for every user to add their own events … but this means that every user to have their own XML file that can be modify … this can be done is you are realy interested contact me at viptehnology@gmail.com
Is there "ADD EVENT" front end aplication to allow my site visitors add their events?
If the last day of the month is 31 …. a saw the problem … sorry is my mistake … just modify line 534:
for(j=0;j<31;j )
with
for(j=0;j<=31;j )
sorry for the inconvenient …
Regards
Vip
Had no problem getting the program up an running. Having problem displaying event if the event day is the last day of the month.
what a great file, great work
For next/previos month or year just move the mouse on the month/year name and the arrows will appear … just click and that‘s it. And for back to calendar when you click an event just click Events/Calendar.







help
and feedback
latest
news
latest
forum entries
“Trying to change the box and fill around the date in the main calendar.
In your example you have a 1 point line around the 7th. I would like to modify that, is it possible? “
This is posible … but you will change to all the days that have event on it … the code is :
with(calendar.numbers[“day” i].background.event){ lineStyle(1,0xFFFFFF); lineTo(dw,0); lineTo(dw,dh); lineTo(0,dh); lineTo(0,0); _alpha=0;
}
alpha=0 is left there because I used a beginFill at first … you can use that …
“Also, how do you estimate picture size and position?”
What picture are you talking about ? the main picture is loaded, resized and mask-ed
Any way … please send an email to viptehnology@gmail.com … and you will recive the code surce with comments on it … this is how you will know where is everything.