ZUI is Completely FREE! (and No credits required)
Sample image : Sleek UI PSD (from Design Freebies)
[Example Code]
with (zui_main()) {
with (zui_create(zui_get_width() * 0.5, zui_get_height() * 0.5, objUIWindow, -1)) {
zui_set_size(400, 198);
with (zui_create(0, 0, objUIWindowCaption)) {
caption = "Window";
draggable = 1;
}
with (zui_create(12, 38, objUIButton)) {
zui_set_anchor(0, 0);
zui_set_size(120, 32);
caption = "Button 1";
callback = test_callback_button;
}
with (zui_create(140, 38, objUIButton)) {
zui_set_anchor(0, 0);
zui_set_size(120, 32);
caption = "Button 2";
callback = test_callback_button;
}
with (zui_create(268, 38, objUIButton)) {
zui_set_anchor(0, 0);
zui_set_size(120, 32);
caption = "Button 3";
callback = test_callback_button;
}
with (zui_create(36, 170, objUICheckbox)) {
zui_set_anchor(0, 0);
value = 1;
}
with (zui_create(60, 170, objUISlider)) {
zui_set_anchor(0, 0);
zui_set_width(128);
minimum = 4;
maximum = 8;
value = 6;
}
}
}
End User Licence Agreement (EULA).