infatti esiste
.. ma con as
crei un bottone e gli associ il codice:
codice:
on (rollOver) {
alt = true;
create(" Istruzioni per l'uso ");//testo dell'alt
}
on (press, rollOut) {
remove();
}
sulla timeline metti invece:
codice:
style = new TextFormat();
style.font = "Arial";
style.size = 13;
tooltip = function (tip) { txt = style.getTextExtent(tip);_root.createTextField("tip", 5, _root._xmouse-25, _root._ymouse+20, txt.width, txt.height);_root.tip.border = true;_root.tip.background = true;_root.tip.backgroundColor = (0x66ccff);_root.tip.html = true;_root.tip.htmlText = tip;_root.tip.autosize = true;_root.tip.setTextFormat(style);};
create = function (tip) { _root.createEmptyMovieClip("back", 1);_root.back.onEnterFrame = function() {if (alt) {tooltip(tip);}};};
remove = function () { _root.back.removeMovieClip();_root.tip.removeTextField();};
puoi modificare la posizione dell'alt, il font, la dimensione,colore...ecc.
ciauz