With this library, you can refer to windows and controls using datums instead of just by name.
mob/verb/showrandomwindow()
var/Window/w = new(src.client, "RandWindow", "window")
w.Create()
w.setBounds(100,100,500,250)
w.setVisible("true")
w.Update()
Dynamic Interface Library |
|
Dynamically create and control windows and controls at runtime. |
ID:1431009
Nov 25 2013, 10:00 pm
|
|
Want to have temporary windows pop up, without having to build them first? Want to have a window pop up and show a person's stats with labels, buttons and progress bars? Don't want to deal with a bunch of winset() procs?
With this library, you can refer to windows and controls using datums instead of just by name. mob/verb/showrandomwindow() |