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

[REBOL] How to reset VID/guide?

From: carl::cybercraft::co::nz at: 31-May-2004 19:53

>Hi, I have the following layout: > >view layout [ > across > a: txt "test1" > guide b: txt "test2" return > c: txt "test3" return > d: txt "test4" >] > >And I want to be 'd in line with 'a. How do I get rid of the 'guide once >set? I just want to disable it until the next 'guide happens. Robert
I never actually use guide, but this seems to give you what you want... view layout [ across a: txt "test1" guide b: txt "test2" return c: txt "test3" return guide a/offset d: txt "test4" return e: txt "test5" ] Hope that helps. -- Carl Read