Ti faccio un esempio con un movieclip generico mc
codice:mc.onRollOut=function(){ if(rel==false){ this = new Color(this); this.setRGB(0x666666); } } mc.onRollOver=function(){ this = new Color(this); this.setRGB(0x990066); rel=false; } mc.onRelease=function(){ this = new Color(this); this.setRGB(0x000000); rel = true; }

Rispondi quotando