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

[REBOL] Re: VID examples?

From: greggirwin::mindspring::com at: 30-May-2005 20:03

Hi Kai, KP> Does someone have or know of an unconvoluted example of how to use multiple KP> forms (both modal and nonmodal) - something like a main form with two KP> buttons, one of which would bring up a second form in modal state KP> and another button that would bring up a 2nd form in non-modal state? Something like this? view layout [ button "non-modal" [ view/new layout [text "I'm non-modal" button "hide" [unview]] ] button "modal" [ inform layout [text "I'm modal" button "hide" [hide-popup]] ] ] -- Gregg