View Single Post
  #1  
Old 06-30-2008, 12:05 AM
TheStan TheStan is offline
Stan?
Join Date: May 2008
Location: U.S.
Posts: 100
TheStan is on a distinguished road
Send a message via AIM to TheStan Send a message via MSN to TheStan
Issues With HTML I Suppose

Recently, I've been working on something of a file editor for my own personal use during server developement. But, I seem to be having a problem when it comes to placing the data I've loaded from the server into a GuiMLTextEditCtrl you see. It's not quite having the effect I wanted. :O

Code:
PHP Code:
public function onNodeSelected(objnodenodeslashpathnodedotpath) {
  
temp.data null;
  
temp.text "";
  
  if (!
node.isfile) return;
  if (
node.filedata.length() > 0) {
    
player.chat "Have data!";
    for (
datanode.filedata) {
      
temp.text @= "<br>" data "</br>";
    }
    
FileEdit.text temp.text;
  }

PIC BELOW.
Attached Thumbnails
Click image for larger version

Name:	importantpic.png
Views:	187
Size:	89.0 KB
ID:	45053  
Reply With Quote