[REBOL] Re: newbieQ: How to make full screen View layout with no border or title
From: carl:cybercraft at: 2-Oct-2001 23:46
On 02-Oct-01, Jason Cunliffe wrote:
> I need to offer full-screen option, no visible titles, no window
> border widgets: clean minmax display canvas.
> So far I have this:
> Rebol []
> screensize: system/view/screen-face/size
> view layout [
> box screensize
> backcolor white
> ]
> Please, how do I lose the rest?
> thanks
> - Jason
Try this...
screensize: system/view/screen-face/size
view/offset/options layout [
size screensize
button "quit" [unview]
] 0x0 [no-border]
Enter...
? view
at the console to see all the View options.
--
Carl Read