retain tag panel status bar, after script finishes

Use this forum for everything concerning script usage
Post Reply
hopalongrock
Sr. Member
Sr. Member
Posts: 289
Joined: Wed Sep 15, 2010 1:38 pm

retain tag panel status bar, after script finishes

Post 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?

User avatar
jtclipper
Administrator
Administrator
Posts: 768
Joined: Tue Aug 10, 2010 12:04 pm

Re: retain tag panel status bar, after script finishes

Post by jtclipper »

If you want the message to persist please use

Code: Select all

sys_SetStatusText(0,'some text')

hopalongrock
Sr. Member
Sr. Member
Posts: 289
Joined: Wed Sep 15, 2010 1:38 pm

Re: retain tag panel status bar, after script finishes

Post 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 !

Post Reply