Flash Question

  • Started
  • Last post
  • 0 Responses
  • ian

    Ok, have a very basic nav set up for a little microsite, really really basic. I have a series of four buttons that rotate around a central point, when you roll over one it highlights and grows, the rotating stops and when clicked it stays like that. fine and dandy.

    But, when the next one is clicked the first is still highlighted and I dont know how to trigger the animation without sending all the other buttons to the 'off' animation. Any help would be greatly appreciated. Code on the buttons below.

    on (rollOver) {
    _parent.drugMC.drugBall.gotoAndP... ("grow");
    _parent._parent.stop();
    _parent.stop();
    }

    on (rollOut){
    _parent.drugMC.drugBall.gotoAndP... ("shrink");
    _parent._parent.play();
    _parent.play();
    }

    on (release){
    _root.gotoAndPlay ("drug");
    this.gotoAndPlay ("buttons_off");
    }