View Single Post
  #9  
Old 03-13-2010, 06:38 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Quote:
Originally Posted by LoneAngelIbesu View Post
I use it every time I'm making a new GUI layout that I've never made before. It's faster and less annoying than trial-by-error GUI creation. I tend to edit the code heavily, though.
Exactly why I use it, after editing the GUI Control names and adding controls that aren't supported I'm left with a perfectly fine GUI creation.

It'd be nice if it just used the normal width, height, and automatically set it to open in the center of the screen though. I find myself doing this every time with the generated code.

PHP Code:
new GuiWindowCtrl("Example") {
  
width 100;
  
height 100;
  
= (screenwidth width) / 2;
  
= (screenheight height) / 2;

__________________
Quote:

Last edited by fowlplay4; 03-14-2010 at 12:06 AM..
Reply With Quote