do this do that ask for input() wait until input received do this do that
That part where it asks for input and then waits until its received - I want to mimic that with interface windows. Since interface windows are great for allowing you to use labels, inputs and buttons to basically create your own style of alert boxes, I want to use them for just that. The trouble is, I can't figure out how to make them wait until you respond to the box before continuing the proc.
Now looking at similar examples, Shadowdarke's sd_Alert() library uses browser popups to achieve the same effect as alerts. But the browser has the advantage that the "okay" button can be linked back to a datum which is behind the scenes managing the browser alert. I can't think of any way to link an interface popup with a datum.
So I guess I'm just wondering if anyone has any novel ideas on how to use interface popups to imitate the effects of alert boxes?
do this do that popup an interface window wait until input from interface window is received do this do that
do this
do that
check for var
if false, set to true
ask for input()
wait until input received
set car to false
do this
do that
I forgot what the library was called. It might be sd_Alert, but if you search "alert()", some things will come up.