Flash help
- Started
- Last post
- 3 Responses
- steadyvibe
HELP!
I have my navigation loading all the subnav dynamically and wanted the very first button to be a different color. Is that very diffucult to do? and how would i go about doing that?
Feel free to take a look at my code:
http://www.steadyvibe.com/client…
Thanks
- unfittoprint0
Create a copy of your subButton symbol in the Library and name it firstButton [also on the linkage identifier].
on the stage, your navigation MC has a for in loop. within you have something like:
myButton.attachMovie("subButton... "sub"+x, x);
change this to:
(x!=0) ? myButton.attachMovie("subButton... "sub"+x, x) : myButton.attachMovie("firstButto... "sub"+x, x)
note: onClip events are deprecated. use Movieclip.onmnLoad on action layer instead-
- steadyvibe0
what library item do i make first button??
- steadyvibe0
.. help!!