Добрый день!
что нужно изменит чтобы код заработал не в руте а внутри муклипа? Пример прилагаю. Спасибо!

Код AS1/AS2:
this.attachMovie("cursor_id", "cursor_mc", this.getNextHighestDepth(), {_x:_xmouse, _y:_ymouse, _visible:false});
cursor_mc.onMouseMove = function() {
this._x = _xmouse;
this._y = _ymouse;
updateAfterEvent();
if (target_mc.hitTest(_xmouse, _ymouse)) {
Mouse.hide();
this._visible = true;
}
else {
Mouse.show();
this._visible = false;
}
};