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

[REBOL] Re: Layout in more than one pane

From: ammonjohnson:yaho:o at: 1-Nov-2001 16:32

getting closer... now we got two single faces in the same face. How about two? That's simple: a: layout/offset [size 250x250 origin 0x0 space 0x0 text ""] 100x100 b: layout [origin 0x0 box "hi!"] c: layout [origin 0x0 button "push me!"] d: make b/pane/1 [] append a/pane make d [pane: make c/pane/1 []] append a/pane make d [pane: make c/pane/1 [] offset: 0x100] view a Thanks!! Ammon