codice:
on (rollOver) {
	this.onEnterFrame = function() {
		if (this.bt_andrea._alpha>=60) {
			bt_andrea._alpha -= 5;
		} else {
			delete this.onEnterFrame;
		}
	};
}
on (rollOut) {
	this.onEnterFrame = function() {
		if (this.bt_andrea._alpha<100) {
			bt_andrea._alpha += 5;
		} else {
			delete this.onEnterFrame;
		}
	};
}
on (press) {
	getURL("http://www.music-x.it", _blank);
}
nel getURL ad un sito devi mettere "http://"!!!