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

[REBOL] Object question

From: kpeters::otaksoft::com at: 17-Sep-2007 11:03

Hi all ~ I need to have 6 identical (visually) checkbox groups in one of my layouts and thought I could do this: cat-pane: layout/offset [ styles address-styles ; at 10x10 lab "Undefined" at 100x10 sf-check1: check at 10x30 lab "Undefined" at 100x30 sf-check2: check at 10x50 lab "Undefined" at 100x50 sf-check3: check ..snip.. ] 0x0 cat-pane2: make cat-pane cat-pane3: make cat-pane [] cat-pane4: make cat-pane [] cat-pane5: make cat-pane [] cat-pane6: make cat-pane [] address-form: center-face layout [ ..snip.. at 10x410=09box1: box cat-pane/size at 150x420=09box2: box cat-pane/size ..snip.. ] box1/pane: cat-pane/pane box2/pane: cat-pane2/pane This results in: ** Script Error: Face object reused (in more than one pane): Undefined ** Where: view ** Near: show scr-face if new [do-events]
>>
I don't think it's correct that it bemoans the caption of a label as offending culprit here. But more importantly, how can I achieve something like this? TIA, Kai