Cita:
onClipEvent (load) {
a = 3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
a--;
}
switch (a) {
case 3 :
this._xscale = 100;
break;
case 2 :
this._xscale = 50;
break;
case 1 :
this._xscale = 25;
break;
default :
unloadMovie(this);
break;
}
this._xscale = 50;
this._yscale = this._xscale;
trace(a);
}
a = 3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
a--;
}
switch (a) {
case 3 :
this._xscale = 100;
break;
case 2 :
this._xscale = 50;
break;
case 1 :
this._xscale = 25;
break;
default :
unloadMovie(this);
break;
}
this._xscale = 50;
this._yscale = this._xscale;
trace(a);
}