Quote:
Originally Posted by Alpho
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?
}
|
GUI Controls are Clientside, if the text file is stored on the server you need to communicate between the client and server in order to retrieve its data.