Codigo que uso para mover el clip:
Código :
Stage.scaleMode = "noScale";
volcano.onPress = function ()
{
this.onMouseMove = function ()
{
if (grid != 0)
{
}
else
{
(grid = 1);
} // end if
this._x = Math.round(_root._xmouse / _root.grid) * _root.grid;
this._y = Math.round(_root._ymouse / _root.grid) * _root.grid;
};
};
volcano.onMouseUp = function ()
{
delete this["onMouseMove"];
}; 