se il movieclip "pippo" e il pulsante "pulsante" sono sulla _root

codice:
_root.pippo.onEnterFrame = function () {
	if (this.hitTest(_root.pulsante)) {
		_root.pulsante.enable = false;
	} else {
		_root.pulsante.enable = true;
	}
}