• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Making a List of Lists
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Making a List of Lists


  • Subject: Re: Making a List of Lists
  • From: Luther Fuller <email@hidden>
  • Date: Fri, 26 Apr 2013 15:27:29 -0500


On Apr 26, 2013, at 3:11 PM, Marconi wrote:

How do I make a list of lists? I want it such that...

set MyFakeArray to {}
set list_item to {"A", "B", "C", "D"}
set MyFakeArray to MyFakeArray & list_item
set list_item to {"E", "F", "G", "H"}
set MyFakeArray to MyFakeArray & list_item
count of MyFakeArray
8

Do this …

set MyFakeArray to {}
set list_item to {"A", "B", "C", "D"}
set MyFakeArray to MyFakeArray & {list_item}
set list_item to {"E", "F", "G", "H"}
set MyFakeArray to MyFakeArray & {list_item}
count of MyFakeArray
2


 _______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users

This email sent to email@hidden

  • Follow-Ups:
    • Re: Making a List of Lists
      • From: Stan Cleveland <email@hidden>
References: 
 >Making a List of Lists (From: Marconi <email@hidden>)

  • Prev by Date: Making a List of Lists
  • Next by Date: Re: Execute Javascript on an HTML file
  • Previous by thread: Making a List of Lists
  • Next by thread: Re: Making a List of Lists
  • Index(es):
    • Date
    • Thread