Flash Q

Out of context: Reply #10

  • Started
  • Last post
  • 13 Responses
  • xaoscontrol0

    I'm on MX not MX 2k4, btw.

    will the attacheMovie trick attach the balloon to the mouse or to the button?

    this is the code for the balloon dealio

    on nav_mc timeline:

    stop();
    startDrag(_root.main_mc.navi_mc... true);

    code attached to instance of baloon_mc:

    onClipEvent (enterFrame) {
    if (_root.x==1) {
    this._alpha = 90;
    } else {
    this._alpha = 0;
    }
    }

    an, of course, the code on the buttons:

    on (rollOver) {
    _root.x = 1;
    _root.main_mc.navi_mc.caption.wo... = " Home";
    }
    on (rollOut) {
    _root.x = 0;
    _root.main_mc.navi_mc.caption.wo... = " ";
    }

    (I know..I read what you said, but this is how I learned it so for right now...no biggie..I'm just trying to solve this problem right now)

View thread