codice:
clip._visible = 0;
clip1._visible = 0;
MovieClip.prototype.mioFunc = function(chi) {
	//this.useHandCursor = false;
	this.onRollOver = function() {
		this.onEnterFrame = function() {
			chi._x = _xmouse;
			chi._y = _ymouse;
			chi._visible = 1;
		};
	};
	this.onRollOut = function() {
		mioSet = setInterval(function () {
			chi._visible = 0;
			clearInterval(mioSet);
		}, 3000);
		delete this.onEnterFrame;
	};
};
pulsante.mioFunc(clip);
pulsante1.mioFunc(clip1);