(CC 2014) ScriptUI font do not change?
I have tried to change my ScriptUI font, but nothing changed. I have also tested out with Peter Kahrel's guide where he is showing how to use fonts in ScriptUI, but none affect ![]()
Like:
var w = new Window ("dialog");
button1 = w.add ("button", undefined, "Default");
button2 = w.add ("button", undefined, "Bigger");
button2.graphics.font = "dialog:18";
w.show ();
or
function createMessageWindow ()
{
var w = Window.find ("palette", "Message");
if (w == null)
{
w = new Window ("palette", "Message");
w.mess = w.add ("statictext", [0,0,300,20], "");
}
w.show();
}
...
Is there some problems with CC 2014 with this atm. I tried to find answer here, but none. Someone? ![]()
