View Single Post
  #2  
Old 07-20-2008, 04:35 AM
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
If you create a dynamic GUI, you can use this:

PHP Code:
new GuiWindowCtrl"Test_" player.account "_Window" )
{
  
// blah
}

( @ 
"Test_" player.account "_Window" ).width 200// for example 
You can always use controls. Here's something I use sometimes:

PHP Code:
new GuiWindowCtrl"blah" )
{
  
this.isWhateverWindow true;
}

for ( 
control GraalControl.controls )
{
  if ( 
control.isWhateverWindow )
  {
    echo( 
"I found a window! It is" SPC control.name "." );
  }

__________________
Reply With Quote