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

[REBOL] Re: newbieQ: How to make full screen View layout with no border or title

From: greggirwin:starband at: 2-Oct-2001 14:22

Hi Jason, <<..But following this does seem to work: view/offset/options layout [ size system/view/screen-face/size button "End" [unview] ] 0x0 [no-title no-border] why? >> Are you seeing any error messages in the console? This works: view/offset/options layout [ size system/view/screen-face/size button "End" [unview] ] 0x0 [no-title no-border] Try yours at the console (if you're not already) and see what it tells you. << How is one to know what order /new /offset /options /title can go in? >> The refinements can go in any order, and their associated arguments must appear in the same order as the refinements are listed. I.e. both of the following work:
>> view/offset/options lay 0x0 [no-border no-title] >> view/options/offset lay [no-border no-title] 0x0
--Gregg