Thread: GUI Issue
View Single Post
  #4  
Old 09-26-2007, 01:29 PM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
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?

Last edited by Mark Sir Link; 09-26-2007 at 01:41 PM..
Reply With Quote