On Mar 21, 2013, at 6:08 PM, Jeff Hanlon wrote: I noticed that my Result for get id of signatures (or every signature) is "{1, 2, 9, 10, 11}". Is this an array or just a list of strings?
Hi Jeff,
AppleScript uses terminology unique to itself. Your result is indeed an array, but in AS would be referred to as a list. Similarly, the AS term handler is more commonly known as a subroutine. And the AS term record is, depending on the language, known as an associative array, map, dictionary, or hash.
Because the items in your result aren't inside quotation marks, you actually have a list of integers.
HTH, Stan C.
|