Question
50 different buttons with 50 different movie clips
I'm creating a timeline of events with about 50 different
points to click on. When each event is clicked on, a movie clip
needs to appear (or tween onto) the screen. Then, when another
event is clicked on, the previous content needs to go away so that
the new content can appear.
A prefect example of what I'm talking about can be seen here: http://www.thechieftains.com/timeline/
I've created a custom class of "TimePoint" that has a public property of date, so that I can assign a date to each individual instance of my TimePoint class.
In my fla, he timeline itself is a movie clip that needs to scroll back and forth as the mouse is moved. It contains the nested instances of my TimePoint class. I already have the scrolling movement taken care of, and I also have a tooltip date appearing over each point in time. Now I just need to figure out how to manage 50 different movie clips, each with and without graphics, bitmaps, etc.
I'm just wondering if there is any way to do this without having to create 50 different event listeners and 50 different classes just so that I can add/remove children. I'm thinking I need to use an array, but I don't know how I would implement it. I'm also not very familiar with XML.
My progress so far can bee seen here: Timeline version 2
Any help with this is much appreciated!
A prefect example of what I'm talking about can be seen here: http://www.thechieftains.com/timeline/
I've created a custom class of "TimePoint" that has a public property of date, so that I can assign a date to each individual instance of my TimePoint class.
In my fla, he timeline itself is a movie clip that needs to scroll back and forth as the mouse is moved. It contains the nested instances of my TimePoint class. I already have the scrolling movement taken care of, and I also have a tooltip date appearing over each point in time. Now I just need to figure out how to manage 50 different movie clips, each with and without graphics, bitmaps, etc.
I'm just wondering if there is any way to do this without having to create 50 different event listeners and 50 different classes just so that I can add/remove children. I'm thinking I need to use an array, but I don't know how I would implement it. I'm also not very familiar with XML.
My progress so far can bee seen here: Timeline version 2
Any help with this is much appreciated!
