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: carl:cybercraft at: 3-Oct-2001 7:25

On 03-Oct-01, Jason Cunilffe wrote:
> aha: my mistake was I had been trying to include the options and > offset _within_ the layout block Can somone explain what the syntax > rules are? >>> ? view > USAGE: > VIEW view-face /new /offset xy /options opts /title text > ..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? > How is one to know what order /new /offset /options /title can go > in?
They're decided by the order you place them in after view. Ie, this is okay... view/offset/options layout [whatever] 0x0 [no-title no-border] as is this... view/options/offset layout [whatever] [no-title no-border] 0x0 -- Carl Read