
Код:
//делаем треугольник (из ММ Help)
_root.createEmptyMovieClip ("mc", 1);
with (_root.mc){
beginFill (0x0000FF, 50);
lineStyle (5, 0xFF00FF, 100);
moveTo (200, 200);
lineTo (300, 300);
lineTo (100, 300);
lineTo (200, 200);
endFill();
}
mc.onRollOut = function() {
trace("the cursor is out of the MC boundary");
//убираем руку
this.useHandCursor=false
};