====All Of Group==== Returns a list of all units in a Group. ===Usage:=== **all of group** (text, the name of the group)\\ returns an applescript list of unit names. ===Optional Parameters:=== **with extract** (returns instead a list of [[:manual:unitextract|Unit Extract Records]]) ===Examples:=== set MyGroupMembers to all of group "the group" write log "The Group has " & (count of items of MyGroupMembers) & " units in it and they are:" repeat with ThisUnitName in MyGroupMembers write log ThisUnitName end repeat