A Flash Developer Resource Site

Results 1 to 8 of 8

Thread: How to make Calendar like this one?

  1. #1
    Member
    Join Date
    Mar 2003
    Location
    Charlotte, NC
    Posts
    47

    How to make Calendar like this one?

    Hey Guys and Gals,

    Can anyone help point me in the direction of making a calendar in Flash similar to this? I want to create a dynmaically updatable calendar.

    dub magazine


    Thanks,

    Ths2000

  2. #2
    Junior Member
    Join Date
    Aug 2005
    Posts
    1
    Yeah, I like that calendar! I want to know how to make something like that too.

  3. #3
    www.intensewd.com
    Join Date
    Apr 2002
    Location
    Australia
    Posts
    450
    You could use this as the basis for it:actionscript calendar

    All you really need to do is establish some sort of list of events & combine it with an actionscript tooltip or an as2 tooltip class to create the rollover effect.

  4. #4
    imagination through stupidity
    Join Date
    Apr 2001
    Location
    P3X-3113
    Posts
    1,238
    the problem with that calendar is that the months aren't automatically generated, you have to input how many days are in that month. You need to use a server app like php to get that type of information.
    Nothing to see here, move along.

  5. #5
    Senior Member
    Join Date
    Nov 2003
    Location
    Las Vegas
    Posts
    770
    Quote Originally Posted by Sybersnake
    the problem with that calendar is that the months aren't automatically generated, you have to input how many days are in that month. You need to use a server app like php to get that type of information.
    You don't need a server app, the Flash Date() object will give you the number of days in the month, you just use a little trick

    Create a date object using the next month, and set the day to zero:
    Code:
    now=new Date();
    lastdate=new Date(now.getFullYear(), now.getMonth()+1, 0);
    trace(lastdate.getDate());

  6. #6
    imagination through stupidity
    Join Date
    Apr 2001
    Location
    P3X-3113
    Posts
    1,238
    i wasn't aware you could pass variables to the date constructor.
    Nothing to see here, move along.

  7. #7
    Member
    Join Date
    Dec 2002
    Location
    Lawrence, Kansas
    Posts
    53
    This looks a little similar to the very nice (Macromedia) tutorial here: http://www.macromedia.com/devnet/fla...tabinding.html

    Hope that helps.

  8. #8
    Junior Member
    Join Date
    Nov 2005
    Posts
    21
    If you are using Windows, checkout this Flash Website Calendar maker software -- which can automatically generate flash calendar and let you choose a calendar skin.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center