per es.
crea un pulsante, posizionalo sullo stage.. dagli nome istanza= mc poi al pulsante gli associ questo code sotto ed hai il tuto tooltip..
codice:
on(rollOver)
//opens the tolltip window at the position of the mouse pointer
{
this.createTextField(tooltip, 1, _xmouse, _ymouse, 50, 40);
this[tooltip].border = true;
this[tooltip].background = true;
this[tooltip].html = true;
this[tooltip].backgroundColor = 0xFFFFCC;
this[tooltip].selectable = false;
this[tooltip].autoSize = true;
this[tooltip].multiline = true;
this[tooltip].wordWrap = false;
this[tooltip].htmlText = "TEXT ";
fontEigenschaften = new TextFormat();
fontEigenschaften.bold = false;
fontEigenschaften.size = 12;
fontEigenschaften.font = "Arial";
fontEigenschaften.align = "center";
this[tooltip].setTextFormat(fontEigenschaften);
}
on(rollOut)
{
this[tooltip].removeTextField();
}