se si magari è meglio cosi:
codice:
// per togliere la manina
mc.useHandCursor = false;
/////////////////////////
mc.onPress = function()
{
	this.onEnterFrame = function()
	{
		if (this._alpha>0)
		{
			this._alpha -= 10;
		}
	};
};
mc.onRelease = mc.onReleaseOutside=function ()
{
	this.onEnterFrame = null;
};
ciao