Re: Record Access osax
Re: Record Access osax
- Subject: Re: Record Access osax
- From: Graff <email@hidden>
- Date: Mon, 10 May 2004 16:22:51 -0400
I don't know the OSAX either but I'm guessing it does something like
take two lists:
{"a", "b", "c"}
{1, 2, 3}
and turn them into a record:
{a:1, b:2, c:3}
You can see the OSAX in question here:
<
http://osaxen.com/record_access.html>
All it says there about this OSAX is:
"This scripting addition will create records out of lists and retrieve
key and value information from records."
I tried to download it but the link is inactive.
- Ken
On May 10, 2004, at 2:34 PM, Andrew Oliver wrote:
OK, I'm confused. What does Ed Lai's tools do that the standard
AppleScript
doesn't?
set list1 to {"a", "b", "c"}
set list2 to {1, 2, 3}
set combinedList to list1 & list2 -->{"a", "b", "c", 1, 2, 3}
Or maybe you'd prefer:
set combinedList to {list1} & {list2} --> {{"a", "b", "c"}, {1, 2, 3}}
On 5/10/04 10:36 AM, "Fraser" <email@hidden> wrote:
Has anyone compiled Ed Lai's Record Access osax for OS X? I could
really
use an osax to combine two lists into one record.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.