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

[REBOL] [REBOL]Panel Problems

From: sanghabum:aol at: 27-Jun-2001 2:41

Can anyone replicate or explain this problem with panels? And then suggest a work-around? On my machine (PC / Win 98; View 1.2) the change to one box alters ALL boxes in BOTH Panels. I get the same problem when changing text effects, and other features, when using subpanels. Thanks, Colin. mainlayout: layout [across My-panel: box 400x600 green ;field for subpanels return Button "Display panel 1" [ My-panel/pane: panel1 Show My-Panel ] Button "Display Panel 2" [ My-panel/pane: panel2 Show My-Panel ] Button "Modify&Display panel2" [MyBox/edge/size: 3x3 MyBox/edge/color: 255.255.255 My-panel/pane: panel2 Show My-Panel ] ] ;layout Panel1: layout [info "Panel1" box red box white box blue ] panel2: layout [info "panel2" mybox: box silver box gray box maroon] unview/all view mainlayout halt