Quote:
Originally Posted by cbk1994
The text box doesn't have an image you edit. This article should help you with what you're trying to accomplish.
EDIT: I think I misunderstood you. Can you explain a bit better which control and what you're trying to do, and show the script you're using?
|
PHP Code:
new GuiScrollCtrl("News_Scroll") {
useownprofile = true;
profile.bitmap = "guiso_scroll.png";
height = 220;
width = 470;
hscrollbar = "alwaysOff";
vscrollbar = "dynamic";
x = 10;
y = 30;
new GuiMLTextCtrl("News_TextList") {
useownprofile = true;
profile.bitmap = "guiso_scroll.png";
height = 32;
width = 470;
horizsizing = "width";
text = ("Testing this gui style");
x = 1;
y = 1;
}
}