View Single Post
  #1  
Old 12-21-2011, 01:53 AM
Alpho Alpho is offline
Registered User
Alpho's Avatar
Join Date: Dec 2011
Location: California, USA
Posts: 80
Alpho will become famous soon enough
Quick Gui Question

Quick scripting quesiton, How can I load text from a .txt file that is stored on the server and show it in a gui text control?

this is what I have so far;
PHP Code:
      new GuiMLTextCtrl("CMD_MultiLine1") {
        
profile GuiBlueMLTextProfile;
        
height 17;
        
horizsizing "width";
        
width 463;
        
text gettext("Staff_Commands.txt"); //Something like that?
      

Reply With Quote