PDA

View Full Version : iconbar


ejink
02-07-2009, 06:11 PM
can someone please walk me through linking the icons in my iconbar to frames in the timeline.

thanks

endergrl
02-09-2009, 03:46 PM
what do you mean by icon bar?

cjx3711
02-17-2009, 04:27 AM
Ok, I will assume that your iconbar means some form of navigation menu right?

THis is what you do.
Convert each icon to a button first.
Press F9 to get the actions window up and make sure that you select the icon that you want to edit.
Type:
on (release) {
gotoAndPlay(2);
}

the 2 only means the frame you want to link the icon to.

kkbbcute
02-17-2009, 08:13 AM
Or if your button is a movieclip, type

buttonMC.onPress = function():Void {
gotoAndPlay("FrameLabelorNumberHere");
}