Thread: GUI Style
View Single Post
  #3  
Old 12-02-2008, 02:08 AM
cyan3 cyan3 is offline
Registered User
cyan3's Avatar
Join Date: Nov 2005
Location: England
Posts: 2,919
cyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant future
Quote:
Originally Posted by cbk1994 View Post
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";
       
10;
       
30;
     
     new 
GuiMLTextCtrl("News_TextList") {
       
useownprofile true;
       
profile.bitmap "guiso_scroll.png";
       
height 32;
       
width 470;
       
horizsizing "width";
       
text = ("Testing this gui style");
       
1;
       
1;
      }
    } 
Reply With Quote