View Single Post
  #4  
Old 12-04-2011, 11:56 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Quote:
Originally Posted by samich View Post
Is there anyway I would be able to make a box behind it? I'm mostly looking for a nice aesthetic way to go about this to have some kind of backdrop behind a line of text. I'll try just tossing in a GuiScrollCtrl just to see if it gets me my results I'm looking for though.
I think I know what you're saying...
Create a new Gui Control and make it look like a back box.

PHP Code:
//#CLIENTSIDE
function onCreated() {
  new 
GuiControl("Box") {
    
useownprofile true;
    
50;
    
50;
    
width 50;
    
height 50;
    
    
profile.opaque true;
    
profile.border 2//White border
    
profile.fillcolor = {0,0,0,150}; //Black translucent box
  
}

Attached Images
 
Reply With Quote