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

[REBOL] Re: Help with text scroll in /View

From: antonr::iinet::net::au at: 11-Sep-2003 16:43

Just quick initial investigations... Look into here: print mold get in ctx-text 'edit-text area/feel uses edit-text when keys are pressed, so look how it handles down key, for example. Also try this example, but you can see some hardcoded stuff. view layout [ a: area 200x40 button "add" [ append a/text rejoin [now/time/precise newline] a/para/scroll: (size-text a) * 0x1 / 1x-1 + 12x46 show a ] ] Better to try to see how edit-text works. Anton.