From: "Rishi Oswal"
> Hi. I was wondering if there is a way to create a
> pop-up window in rebol/view. I wanted to create a
> pop-up "Confirm" dialog window with an "Ok" and
> "Cancel" button but haven't figured out a general way
> to create a multi-window app. I have noticed the
> 'alert function but it is not sufficient for my
> needs... is there anything else? If not, why is it
> that you can't do multiple windows in rebol anyway?
> 
> rishi

Hi, Rishi,

Check out 'request. Rich source of popup dialogs.  Here is one example:

view layout [
    button "click" [
        t1/text: request/confirm "Hi"
        show t1
    ]
    label "Return Value:"
    t1: text 50x20
]

Hope this helps.
--Scott Jones

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to