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

[REBOL] Re: AW: Rebol IRSee.r Discussing all things Rebol

From: agem:crosswinds at: 3-May-2001 21:39

>>>>>>>>>>>>>>>>>> Ursprüngliche Nachricht <<<<<<<<<<<<<<<<<<
Am 03.05.01, 18:01:36, schrieb "Terry Brownell" <[depotcity--telus--net]> zum Thema [REBOL] Re: AW: Rebol IRSee.r Discussing all things Rebol:
> Hi. > I noticed the button aspect when scrolling... Alan Kamp suggested the > following.. > Hi Terry, > {Perhaps a bit more information on series will help with understanding
what
> is happening here with the message/text string > http://www.rebol.com/docs/core23/rebolcore-6.html#78912 > Cheers, > Allen K} > I went over the doc (very helpful) but I still don't understand why
the text
> on the buttons would scroll? > I'll double the size of the text to 2k, (a fresh version can be had at
the
> LFReD rebsite) but it would be nice to have the text scroll down with
each
> input, and then back to the top once the pane is refreshed. > Anybody?
Maybe this helps, t1: area ... with [para: make para []] s1: slider 16x0 + hoehe [scroll-para t1 s1] it seems the 'para object is not automatic copied, but shared. So if scroll-para modifies position for 't1 it modifies for all fields. At least this fixed it for one of my scrollers. Volker