Quote:
Originally Posted by LoneAngelIbesu
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;
x = (screenwidth - width) / 2;
y = (screenheight - height) / 2;
}