How to just pop up a wait message window in rebol view ?
Posted
by Rebol Tutorial
on Stack Overflow
See other posts from Stack Overflow
or by Rebol Tutorial
Published on 2010-05-08T21:44:31Z
Indexed on
2010/05/08
21:48 UTC
Read the original article
Hit count: 150
rebol
I just want to popup a wait message window in rebol view, but there's no option to do so with View command as
View win: layout [text "wait"]
do-some-lengthy-task
Unview win
will block the script until the user close the message himself which is not wanted here of course.
So how to make non-blocking view ?
© Stack Overflow or respective owner