refresh static text in a palette?

Find out why the . goes before the /

Moderator: Paul Tuersley

Post Reply
User avatar
lloydalvarez
Enhancement master
Posts: 460
Joined: June 17th, 2004, 9:27 am
Location: New York City, NY
Contact:

Is this possible? I would setup a refresh button if necessary.

-Lloyd
Paul Tuersley
Posts: 704
Joined: June 5th, 2004, 7:59 am
Location: London, UK

It is possible to change the contents of statictext. I did it in my SearchEffects palette, here are a couple of lines from it:

Code: Select all

var effectsFoundText = thePalette.add("statictext", [10,70,400,85], compCount + compString + "selected.");

effectsFoundText.text = resultString;
Post Reply