[REBOL] Re: scroll-face bug?
From: brett::codeconscious::com at: 17-Mar-2002 9:55
Hi Graham, Scroll-face wraps what ever you give it inside another face. So you need to unview that instead of your original face. You could do it with unview/all or do something like: do load-thru http://www.codeconscious.com/rebol-library/scroll-face.r lo: layout [ button "close window" [ unview/only lyo ] area 200x1000 ] lyo: scroll-face lo 200x300 view center-face lyo Regards, Brett.