Thread: Custom Gui
View Single Post
  #16  
Old 02-24-2007, 08:24 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Angel_Light View Post
godofwarares sent me this, it didn't work at first, but when I closed graal and logged back on it worked.

PHP Code:
//#CLIENTSIDE
function onCreated()
{
     new 
GuiWindowCtrl("Window")
     {
          
useOwnProfile true;
          
profile.bitmap "whatever.png";
          
          
position = { 100100 };
          
extent = { 200300 };

          
title destroyOnHide true;
          
canMaximize canResize false;

          
text format("Hello, %s!"player.nick);
     }

just one question aswell, I've seen this
PHP Code:
position = { 100100 }; 
and this
PHP Code:
position "100 100"
which way is correct, they both do the same thing?
Either is fine ... I just use
x = BLAH;
y = BLAH;
__________________
Reply With Quote