Page 1 of 1

retain tag panel status bar, after script finishes

Posted: Fri Oct 14, 2011 3:37 pm
by hopalongrock
In my little script I can write my counts to the status bar (tag panel) with sys_SetStatusText(1,s1) és sys_SetStatusText(2,s2), but when the script finishes, TGF clears them.
How can I retain them on the status bar?

Re: retain tag panel status bar, after script finishes

Posted: Sat Oct 15, 2011 2:09 pm
by jtclipper
If you want the message to persist please use

Code: Select all

sys_SetStatusText(0,'some text')

Re: retain tag panel status bar, after script finishes

Posted: Sat Oct 15, 2011 6:01 pm
by hopalongrock
jtclipper wrote:If you want the message to persist please use

Code: Select all

sys_SetStatusText(0,'some text')
Thank you, it works !