Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

How to open a window without borders

 [1/5] from: carloslorenz:rebolbrasil:nobrenet at: 6-Aug-2004 9:54


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

 [2/5] from: petr:krenzelok:trz:cz at: 6-Aug-2004 14:56


Carlos Lorenz napsal(a):
>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 >
yes, it is .... view/offset/options layout/size [button "ok" [unview]] system/view/screen-face/size 0x0 [no-border no-title] cheers, -pekr- -- This message was scanned for spam and viruses by BitDefender For more information please visit http://linux.bitdefender.com/

 [3/5] 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.

 [4/5] from: carl:cybercraft at: 7-Aug-2004 1:04


>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
Yes, though it only works in some OSs. Works in Windows, but not in Linux, for instance. (I think.) Herre's how... view/options layout [button "Close" [unview]] [no-border no-title] -- Carl Read

 [5/5] from: antonr:lexicon at: 7-Aug-2004 0:12


I think the potential problem is that some window managers may not allow a window with no decorations at all. Anton.