There is a small oddity in that if you put something after a line of a field, 
the text you put there appears at the start of the next line, unless it was the 
last line of the field, in which case it goes at the end of the text.

When you said you wanted to put "blabla" after the line, did you want this:

"one two three"

to be come this:

"one two threeblabla"

this:

"one two three blabla"

or this:

"one two three
blabla"

?

In the last case, would you want the following line to be pushed down? In other 
words, you're inserting a line with "blabla" in it?

My guess is that you want "one two three" to become "one two three blabla". You 
can achieve that with the do command:

on mouseup
   put the selectedline into sl
   do "put"&&quote&space&blabla&quote&& "after" && sl
end mouseup



_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to