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

[REBOL] Re: specific position in area

From: brett:codeconscious at: 19-Feb-2002 14:18

Hi, view layout [ a: area 500x300 {
> if i have an layout with an area containing some text and i want to to > insert some text somewhere in a line, not the beginning or end with a
click on a
> button, how can this be done.
} button "Insert now" [ p: find/tail a/text "somewhere " insert p "(like here)" show a t/text: reform ["Inserted at:" index? p] show t ] t: text 200x25 white ] I hope this helps. Brett.