che azione do ad un mc pulsante :
onClipEvent (mouseMove) {
if (this.hitTest(_root._xmouse, _root._ymouse, false)
....
per cui al passare del mouse mi visualizza un mc in una posizione x y tramite action
grazieee
che azione do ad un mc pulsante :
onClipEvent (mouseMove) {
if (this.hitTest(_root._xmouse, _root._ymouse, false)
....
per cui al passare del mouse mi visualizza un mc in una posizione x y tramite action
grazieee
onClipEvent (load) {
_root.mc._visible = 0;
_root.mc._x = 100; // coordinate x mc
_root.mc._y = 200; // coordinate y mc
}
onClipEvent (mouseMove) {
if (this.hitTest(_root._xmouse, _root._ymouse)){
_root.mc._visible = 1;
}
grazie mille