-
1. Re: One more question.
kglad Jan 21, 2010 10:55 AM (in response to d0brin)i don't understand that set-up. and, i don't understand what you mean by "module".
i understand you have a flash menu and i think you're trying to say that menu has 3 movieclip links or maybe 3 submenus.
-
2. Re: One more question.
d0brin Jan 21, 2010 11:07 AM (in response to kglad)okey here is it more clear.
I have a menu, that has 4 categories. Home, Forum, Portfolio, About
For the buttons i have one mc in which is made the entire animation for rollOver, rollOut and release.
This same mc is used for the 4 menus. On the main scene this mc is copied 4 times,
In this mc there is my text animation. My text is placed into another movie clip and than it is animated.
In this movie clip with my text. I have 4 frames. Each frame contains the texts Home, Forum, Portfolio, About.
Since the mc is the same for each menu, how to link this mc to corresponds with a certain frame from the text mc. Like the first mc to be connected with Home, the second copied mc to be connected with Forum, the 3rd with Portfolio and the last with About. How to make that link?
-
3. Re: One more question.
kglad Jan 21, 2010 11:12 AM (in response to d0brin)assign each movieclip an instance name. so, if your 4 menus are homeMC,forumMC,portfolioMc and aboutMC and each contains a movieclip named textAnimationMC which contains 4 frames, you would use:
homeMC.textAnimationMC.gotoAndStop(1);
portfolioMC.textAnimationMC.gotoAndStop(2);
etc



