1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| var i:Number = 1;
while(this["piece"+i] != undefined)
{
var mcTmp:MovieClip = this["piece"+i];
mcTmp.onMouseDown = function()
{
if(this.hitTest(_root._xmouse, _root._ymouse, false))
{
abs = this._x ;
ordo = this._y ;
startDrag("",true) ;
this._alpha = 50 ;
}
};
mcTmp.onMouseUp = function()
{
this._alpha = 100 ;
stopDrag() ;
if(_root["zone_untel"].hitTest(this))
{
this._x = _root["zone_untel"]._x ;
this._y = _root["zone_untel"]._y ;
}
else
{
this._x = abs ;
this._y = ordo ;
}
};
i++;
} |
Partager