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

full screen

 [1/8] from: dividenot::yahoo::com at: 31-Dec-2003 13:14


how do i make a program that makes, not a window, but a full screen.

 [2/8] from: greggirwin:mindspring at: 31-Dec-2003 14:33


Hi Anthony, AM> how do i make a program that makes, not a window, but AM> a full screen. view/options/offset layout [ size system/view/screen-face/size button "Unview" [unview] ] 'no-title 0x0 -- Gregg

 [3/8] from: dividenot:yaho:o at: 31-Dec-2003 15:11


ive read the manual for rebol and ive read the "easy vid" program in the rebol folder. the manual doesnt have anything about video operations in and the "easy vid" program doesnt seem to cover all of ther display opetions. is there a manual for video operations? --- Gregg Irwin <[greggirwin--mindspring--com]> wrote:

 [4/8] 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

 [5/8] from: antonr:iinet:au at: 1-Jan-2004 23:18


The text is added by VIEW, unfortunately. But you can work around it by doing: view/new lay: layout [...] lay/text: none show lay wait none Anton

 [6/8] from: atruter:labyrinth:au at: 1-Jan-2004 23:26


> 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.
Just use title: "" Regards, Ashley<

 [7/8] from: greggirwin:mindspring at: 1-Jan-2004 10:08


Hi Anthony, AM> ive read the manual for rebol and ive read the "easy AM> vid" program in the rebol folder. the manual doesnt AM> have anything about video operations in and the "easy AM> vid" program doesnt seem to cover all of ther display AM> opetions. is there a manual for video operations? What exactly do you mean by "video operations"? Do you mean things you can put into the effect block of a face? The View Developer's Guide may have what you want. You can get to it from here: http://www.rebol.com/docs-view.html -- Gregg

 [8/8] from: ronaldoff:free at: 2-Jan-2004 10:56


Sorry, it gives me "untitled" in left up corner I added 'center-face and it works (under XP pro) Rebol[] view/new center-face lay: layout [ size system/view/screen-face/size button "Unview" [unview]] wait none Learned a good trick with you all ... Happy New Rebolix Ronaldoff