[REBOL] Re: [view] Problems with /new and not /new
From: nitsch-lists:netcologne at: 15-Aug-2004 3:40
On Sonntag, 15. August 2004 02:53, Izkata wrote:
> In what I'm working on, there is a main layout which opens right away -
> view center-face layout [blah blah]
> In it, a button is supposed to open another window as a menu - but in the
> function,
> it uses bitmaps in another directory to construct the menu each time it's
> called.
> But it isn't pausing to let a person choose one of the images.
>
Ah! Thats inbuild too. Use 'inform instead of 'view. and 'hide-popup instead
of unview. inform waits until windows is closed.
source request-text
for example.
> So, click on "Menu", it opens a second window, click on an image, the
> second window
> closes and returns the image to the first window. (To be used as the
> remaining part of the
> button's function)
>
>
> -Izzy boy
-Volker