rather than make anew thread, I'll insert this issue here.
Again, I am sure this the noobness instead of a legitimate issue here, but...
in Scroll Control, inside a Window Control, I am attempting to add text using a MLTextObject.
PHP Code:
new GuiMLTextCtrl("Test_MultiLineText") {
profile = "GuiBlueMLTextProfile";
position = "5 5";
extent = "250 250";
text = format("<font size = 16> %s </font>", this.text);
the issue as I'm sure you'll notice is with the text.
I have tried appending the text and then anotehr </font> tag, I have tried using the format functionality - Tests have shown this.text is a valid string so I am certain the issue isn't with actually getting data.
Could use help with this.
UPDATE:
Upon further review, I am finding that the this.text actually doesn't exist clientside but it does serverside.
I tried using a triggerclient in the class but found that doesn't work for getting the string to clientside.
Any suggestions?