View Single Post
  #1  
Old 12-04-2011, 02:30 PM
samich samich is offline
Registered User
samich's Avatar
Join Date: Jan 2007
Posts: 59
samich will become famous soon enough
Send a message via MSN to samich
GUI Text Backdrop not showing up?

So normally you would see a backdrop behind GuiTextCtrl or GuiMLTextCtrl correct? Sort of a darker blue of the default gui color.


For some reason, I'm not seeing it at all and I've tried everything. I'm working with tabs and well, I'm just getting frustrated cause I would like the backdrop to show.

I've tried layers, I've tried shadow, and just about everything else I could think of.

Any ideas what is wrong?

(And I know I don't need the 'this.' etc stuff but like I said, I was trying anything to get results.)

PHP Code:
//-------- Tab 1: :P --------//
    
new GuiControl(Tab){
      
profile    GuiBlueControlProfile;
      
0;
      
50;
      
width 366;
      
height 300;
      
      
      
//Buttons
      
new GuiButtonCtrl("T1_BUTTON-XXXXXXX"){
        
this.profile GuiBlueButtonProfile;
        
this.15;
        
this.220;
        
this.width 110;
        
this.height 20;
        
this.text "---------";
      }
      new 
GuiButtonCtrl("T1_BUTTON-XXXXXXXX"){
        
this.profile GuiBlueButtonProfile;
        
this.128;
        
this.220;
        
this.width 110;
        
this.height 20;
        
this.text "-------";
      }
      new 
GuiButtonCtrl("T1_BUTTON-XXXXXX"){
        
this.profile GuiBlueButtonProfile;
        
this.241;
        
this.220;
        
this.width 110;
        
this.height 20;
        
this.text "-------";
      }
      
      
//Texts  
      
new GuiMLTextCtrl("T1_TEXT-Output") {
        
this.profile GuiBlueTextProfile;
        
this.10;
        
this.10;
        
this.height 20;
        
this.text "Text";
      }
    } 
__________________
[Graal Related Business]
Reply With Quote