Yes, and also set the GuiMLTextCtrl's
active variable to false if you want it to not be selectable (like normal TextCtrls).
Example:
PHP Code:
//#CLIENTSIDE
function onActionLeftMouse() {
new GuiWindowCtrl("MyGUI_Window1") {
resize(285, 241, 320, 240);
profile = GuiBlueWindowProfile;
clientrelative = true;
canresize = canminimize = canmaximize = false;
canclose = destroyonhide = true;
text = "message";
new GuiMLTextCtrl("MyGUI_Text") {
resize(50, 50, 228, 0);
profile = GuiBlueTextProfile;
text = "Uhhhhhhh.The earth is tearing apart with\nwith the reactors there are making the\nplanet die you must stop them please.";
}
}
}
Basically, look at the text = line. See the \n's? Those will change to line breaks.
Good luck!
Also, if you want to use an image instead of a gui window or so, just use GuiBitmapCtrl rather then GuiWindowCtrl and set bitmap = "yourimagehere.png".