View Single Post
  #6  
Old 10-16-2007, 10:22 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Do something like this:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
// Create a new window and set attributes
  
new GuiWindowCtrl("MyWindow") {
    
// Use the default skin
    
style $pref::Video::defaultguistyle;

    
// Set the size of the window
    
clientrelative true;
    
clientextent = {320200};

    
// Set the position
    
120;
    
80;

    
// Set the title of the window
    
text "Hello Window";
  }
}

function 
onDefaultStyleChanges() {
  
MyWindow.style $pref::Video::defaultguistyle;

Reply With Quote