Skip to main content
Duduf
Participant
March 28, 2024

Changing text color in ScriptUI won't work with the new UI

  • March 28, 2024
  • 0 replies
  • 187 views

This snippet should be self-explanatory 😉

var win = new Window("palette", "test");
win.txt = win.add('statictext', undefined, "Hello World!");
win.layout.resize();

// This should change the txt color
// It works in non-beta
var g = win.txt.graphics;
var color = [1,0,0,1]; // RED!
var textPen = g.newPen( g.PenType.SOLID_COLOR, color, 1 );
g.foregroundColor = textPen;

win.show();

 It works correctly in the latest release, but not in the Beta with the new UI.
There's no error, it just doesn't change the color.