Hi.
Im trying to add text to a scrolling list field.
I want to keep the text already in there, and insert the new after the last. Or in Alphabetic order?.
I have tryed the put into field. But it deletes the text and paste it to the first line.
I have tryed the Add command. But it says wrong code.
Maby it could be done by making the list field, list all cards from a stack, and just update after a Mouse Up event?
Any sugestions?
Adding text to scrolling list field
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: Adding text to scrolling list field
Hi appman,
You've answered your own question
Sorry if that answer seems a bit cryptic but I think you'll be happier if you figure it out by yourself.
If not then just say, I'll give my answer.
Simon
You've answered your own question

Keywords there are "into" and "after".I want to keep the text already in there, and insert the new after the last. Or in Alphabetic order?.
I have tryed the put into field.
Sorry if that answer seems a bit cryptic but I think you'll be happier if you figure it out by yourself.
If not then just say, I'll give my answer.
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Adding text to scrolling list field
Hi appman,
Best regards
Jean-Marc
Code: Select all
on mouseUp
get fld 1
put cr & "choice 6" after it
sort it
put it into fld 1
end mouseUp
Jean-Marc
https://alternatic.ch
Re: Adding text to scrolling list field
Thx to you both.
You helped a lot.
You helped a lot.