Quote:
Originally Posted by Schetti
isnt there a way, to get the same text, as I wrote down? without any "" or such?
|
I haven't used loadLines() much, but I'm assuming you could just loop through the array of lines and add them to the GUI control one at a time...
Something like this:
PHP Code:
temp.paragraph.loadlines("somefolder/textfile.txt");
for( temp.line: paragraph ) {
MyGuiControl.text = MyGuiControl.text @ "\n" @ line;
}
Anyways, I'm heading to class, so I'm not sure if this makes sense or not