View Single Post
  #1  
Old 01-10-2010, 10:43 PM
Immolate Immolate is offline
Indigo
Join Date: Dec 2009
Posts: 322
Immolate is on a distinguished road
Gui Profile Problem

I'm having trouble creating customised gui styles. I can't see anything I'm doing wrong:

PHP Code:
//#CLIENTSIDE

function onCreated()
{
  
FinalStar_Test_Gui.destroy();
  
  new 
GuiWindowCtrl("FinalStar_Test_Gui")
  {
    
useownprofile true;
    
    
profile.bitmap "finalstar_gui.png";
    
    
width 200;
    
height 300;
    
    
canclose =
    
canmaximize =
    
canminimize =
    
canresize false;
    
    
text "Test";
  }
  
  echo(
"Test");

I've attached the image I'm using.
Attached Images
 
Reply With Quote