ti conviene fare un tooltip
ovvero un clip indipendente che contiene un campo testo dinamico
quando sei in rollOver su un Qualsiasi pulsante
codice:
mc.onRollOver=function(){
toolTIP.text = "Il pulsante fa esattamente ......."
toolTIP.stato=true
crtl_toolTIP()
}
mc.onRollOut=function(){
toolTIP.text = ""
toolTIP.stato=false
}
function crtl_toolTIP(){
toolTIP.onEnterFrame=function(){
if(this.stato){
this._alpha=100
this._x = _level0._xmouse+5
this._y = _level0._ymouse+5
}
if(!this.stato){
this._alpha=0
delete this.onEnterFrame
}
}