Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: pop-up windows

From: gjones05:mail:orion at: 5-May-2001 15:18

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