Setting label text not working
-
This doesn't seem to be working in the latest build from github, I've tried both via JSON and with the code below.
const var lblTest = Content.addLabel("lblTest", 0, 0); lblTest.set("text", "HELLO WORLD");
Update: It seems to be working sometimes now... not too sure what the issue is/was yet though.
-
Yeah, I see. The label is a bit schizophrenic because the text property is actually the same thing as when you call
setValue()
and something messed this up.You can definitely solve this by setting
saveInPreset
to false, so for static labels this might work. But I'll check what's up there.