Hello Tim,

You can do it by appending list two to list one, by using a loop and getAt(), 
getPropAt(), addProp() and addAt() methods.

repeat with i = 1 to list2.count()
  addProp(list1, getAt(list2, i)
end repeat

i'm not exatcly sure of the syntax, however, it clearly should give you an idea.

Ciao,
Ozkan


-----Orjinal mesaj-----
From: "Tim Welford" [EMAIL PROTECTED]

Date: Mon, 11 Apr 2005 14:28:10 +0300
To: lingo-l@penworks.com
Subject: <lingo-l> joining lists in lingo

> Greetings List...
> 
> I'm sure this is a daft question, but it escapes me.
> Is there away of joining 2 lists together other than looping through the
> second list and using .add to add it to the first list.
> 
> i.e.
> list1 = [1,2,3,4]
> list2 = [5,6,7,8]
> 
> list1 + list2 = [1,2,3,4,5,6,7,8]
> 
> rather than a result of [6,8,10,12]
> or [1,2,3,4,[5,6,7,8]]
> 
> This is just an example, I actually need to do it with a list of
> property lists, whilst the list is quite complicated, the format of the
> 2 lists being joined will always be exactly the same, although the
> number of elements may change.
> 
> Thanks
> 
> Tim
> 
> 
> [To remove yourself from this list, or to change to digest mode, go to 
> http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
> lingo-l@penworks.com  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
> learning and helping with programming Lingo.  Thanks!]

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
lingo-l@penworks.com  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]

Reply via email to