Field
From Director Online Wiki
Quirks
Here's one quirk with field members under DIR 10.1, win2000:
put member("myField").selection[1] --> script error "property not found: selection"
You can get around it like this:
put (member("myField").selection)[1] -- 0
s = member("myField").selection put s[1] -- 0
-- benjamin 20051114