hi all. I'm horrible with AS3. I've tried this effect a number of different ways. I'm trying to get a navigation bar in AS3 that does something like this.
A|B|C|D
click on C bar slides and you get
C|A|B|D
click on D bar slides and you get
D|A|B|C and so on. Help or a link to help is much appreciated.
right now i have this much.
david_btn.addEventListener(MouseEvent.CLICK, menuNav); kate_btn.addEventListener(MouseEvent.CLICK, menuNav); robin_btn.addEventListener(MouseEvent.CLICK, menuNav); aaron_btn.addEventListener(MouseEvent.CLICK, menuNav); ken_btn.addEventListener(MouseEvent.CLICK, menuNav); ann_btn.addEventListener(MouseEvent.CLICK, menuNav);
function menuNav(event:MouseEvent):void{ gotoAndStop(event.target.name); }
each goes to the movieclip, plays half way and stops. now i need to play the other half before going to the next specified label.
Thanks in advance