author: Laiverd [+], Submitted: 11.27.03 4a • Last Edit: 11.27.03 4p

usage

msg1 { bex [+], posted: 11.27.03 2p•-, top [^] }
hi,
nice class.

found a litle typo in the example

//++++++++++++++++++++++++ EXAMPLE USAGE ++++++++++++++++++++++++++++++++++++++++++++++++++++
// var btnTip:Tooltip = new Tooltip("This is the tooltip text.");
// mc1.onRollOver = function() {
// btn1Tip.drawTip();
// };
// mc1.onRollOut = function() {
// btn1Tip.removeTip();
// };
...


should be


//++++++++++++++++++++++++ EXAMPLE USAGE ++++++++++++++++++++++++++++++++++++++++++++++++++++
// var btnTip:Tooltip = new Tooltip("This is the tooltip text.");
// mc1.onRollOver = function() {
// btnTip.drawTip();
// };
// mc1.onRollOut = function() {
// btnTip.removeTip();
// };
...

greetings bex.
msg2 { Laiverd [+], posted: 11.27.03 3p•-, top [^] }
Thanks Bex, I'll correct it.
msg3 { cellb10ck [+], posted: 10.01.04 11a•-, top [^] }
What if I want the tooltip to move with the mouse?