quote:
Originally posted by matty
quote:
Originally posted by Flash
ok thx that work fine now, but u see my little bug?
It's not a bug when you are doing it wrong.
what is wrong in that HUH?
code:
var MyToolTip = new Array()
function CrtToolTip(w,id,Text) {
var b = w.GetControlHandle(id);
if (MyToolTip[b] == null) {
MyToolTip[b] = new ToolTip(b,"Save every setting and Quit.\nChange(s):\n" +Text, "Save&Quit", TTI_INFO);
}
else {
MyToolTip[b].Text += '\n'+Text;
MyToolTip[b].UpdateToolTip();
}
}
if i hold my mouse on the button 10 secondes, the tip desapear and i try to repass my mouse on the button but nothing Appear so i need to recreate the tip.
Its a bad setting whit your variable?