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

[REBOL] Re: full screen

From: Patrick:Philipot:laposte at: 1-Jan-2004 10:22

Hello Gregg, Wednesday, December 31, 2003, you wrote: GI> view/options/offset layout [ GI> size system/view/screen-face/size button "Unview" [unview] GI> ] 'no-title 0x0 As often, when I see a valuable code, I have made a little program to kept it in a folder that I have named "Good to know". I have there a collection of Rebol code of interest. Curiously, when inserted in a program, I observe a message in the top left corner. This message is either "no title" or the title given in the header program. This is my code: Rebol[ title: "full screen layout" date: 1-jan-2004 purpose: {FAQ Q - How to make a full screen, not a window? A - You need: . an offset of 0x0 . no-title . a size get from system/view/screen-face/size } ] view/options/offset layout [ size system/view/screen-face/size button "Unview" [unview] ] 'no-title 0x0 Can we remove this message? -- Best regards and Happy New Year Patrick