Retrieving items from AppleScript record

171 Views Asked by At

I have an AppleScript record, myJSON, which I've created from a JSON entry using JSON Helper:

{"height":200.0,"width":300.0,"productoption":["fabric","rectangle","roll"],"id":33,"product":["backdrop"]}

I can easily access all the keys with a single entry by using, for example,

product of myJSON

I can't figure out how to access the productoption key which has a multiple entries.

1

There are 1 best solutions below

0
vadian On BEST ANSWER

Actually it's exactly the same way, the value for key productoption is an array (list in AppleScript terms)

set options to productoption of myJSON
repeat with anOption in options
    display dialog anOption
end repeat