[REBOL] Re: About docs and View's flaws
From: ammonjohnson:yah:oo at: 18-Oct-2001 16:15
<Snip>
>
> Speaking about view: has anyone written a bug-list of
> some sort for View, or even better, a list of work
> arounds to known issues? With my first attempt, I
> found several flaws. For example the choice face seems
> to decide the size of the button from first string,
> resulting in trash if following strings are lengthier?
choice 150x25 "text" "text" "& more text"
the pair! (150x25) sets the width, & height of the choice.
> I also don't know how to produce a button that would
> close the window peacefully, I always get trash, if I
> press "ESC" and the next time I run the script, it
> doesn't work... These kind of show stoppers are a pity
> because otherwise View seems to be very nice
> concept...
either,
[button "unview" [unview self]]
or,
[button "quit" [quit]]
depending on wether you wanted to close the window, or quit the script.
Enjoy!!
Ammon