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

[REBOL] Re: How DO they DO that?

From: antonr::iinet::net::au at: 20-Nov-2003 13:35

Here's a really simple and crude example to get you going: panel-face: layout [ origin 0 icon "I" icon "am" icon "somebody!" icon icon "Solid." ] view layout [ across my-panel: box 100x200 edge [size: 1x1] with [ pane: panel-face ] scroller [ my-panel/pane/offset/y: to-integer -180 * face/data show my-panel ] ] Note, you need a rebol/view beta (version > 1.2.1) for the scroller style. You could replace it with slider, though. Anton.