Page 1 of 1

refresh static text in a palette?

Posted: September 14th, 2006, 3:25 pm
by lloydalvarez
Is this possible? I would setup a refresh button if necessary.

-Lloyd

Posted: September 15th, 2006, 12:32 am
by Paul Tuersley
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;