Flash Q

Out of context: Reply #9

  • Started
  • Last post
  • 10 Responses
  • Epictive0

    You can have onMouseMove defined basically anywhere. You don't need to have it on each of the section items. Just once place. You can have it on the holder, you just cannont have onRelease, onRollover, etc... Or you can create a clip anywhere and have it check. I just have something like this in my class:

    this.onMouseMove = function(Void) {
    if (!this.hitTest(_root._xmouse, _root._ymouse, false)) {
    this.$close();
    delete this.onMouseMove;
    }
    };

View thread