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

[REBOL] Re: Changing VID Styles

From: nitsch-lists:netcologne at: 13-Dec-2001 12:59

RE: [REBOL] Re: Changing VID Styles Hi Colin first, have a look at http://www.reboltech.com/library/scripts/disable-face.r , something like this? to access all faces in a layout something like l: layout[...] faces: l/pane forall faces[ face: first faces any[ if 'field = face/style [swap-feel face 'break] ;and change color or effect or that.. if i-want-to-hide face [disable-face face 'break] if i-want-to-show face [enable face 'break] ] note there are three ways to mask a face, one can - append the new face to the parent-face/pane, - to the face/pane - or create a new wrap-face, plug the old face in, append a filter to wrap-face/pane and set the wrap-face at the old position in parent/pane. experimenting, i tried the third, mostly because iam worried about tabbing in a blocked face (is this otherwise possible?). not sure whats the best choice. customize as you like :) oh, and your help-system sounds very cool! :) :) -Volker [Sanghabum--aol--com] wrote: