[REBOL] Re: How to open a window without borders
From: charles:mougel:spinodo at: 6-Aug-2004 14:59
Carlos Lorenz wrote:
>Hi list
>
>I was playing with this some sort of screen saver with REBOL
>and then I stuck at this point: is it possible to open a window in full screen mode
>without borders, control bar etc etc
>
>Carlos
>
Hi Carlos,
/view/options layout/offset/size [backdrop black] 0x0
system/view/screen-face/size [no-border]
>> ? view
USAGE:
VIEW view-face /new /offset xy /options opts /title text
DESCRIPTION:
Displays a window face.
VIEW is a function value.
ARGUMENTS:
view-face -- (Type: object)
REFINEMENTS:
/new -- Creates a new window and returns immediately
/offset
xy -- Offset of window on screen (Type: pair)
/options
opts -- Window options [no-title no-border resize] (Type: block wo
rd)
/title
text -- Window bar title (Type: string)
/Charles.