EN Window Branch - deadelf79/CIGUI GitHub Wiki
Add 'window' and one of command (see below) in $do to process.
##Contents:
##Create Creates new window and adds it in internal array.
Examples:
create window
create window at x=INT,y=INT
create window with width=INT, height=INT
Last return result of window inspection (uses Kernel.inspect)
##Dispose Disposes selected window (use last for last used window or select to select window from internal array).
Examples:
dispose window index=INT
dispose window label=STR
dispose last
select window index INT dispose this
Last return CIGUI disposed window
##Move Moves window to new position using speed.
Examples:
select window labeled as STR move this window to x=200,y=300,speed=4
Last return result of window inspection (uses Kernel.inspect)
##Resize Resize window or sprite (content over the edge cut).
Examples:
select window labeled as STR resize this window width=300,heigth=500
Last return result of window inspection (uses Kernel.inspect)
##Set Most usable to quickly setup set of parameters.
Difference with move
: window or sprite transfer to new position immediately.
Examples:
last set x=100,y=200
last set width=256,height=128
last set back opacity=56
Last return result of window inspection (uses Kernel.inspect)