Fat Cat Software

PowerPhotos Help

AppleScript Object - library group

A group of Photos libraries in your library list. Library groups let you organize your libraries into named groups for easier management.

Properties

Property Type Access Description
name text r/w The name of the library group.

Elements

Element Description
library The libraries contained in this group.

Example

tell application "PowerPhotos"
	set allGroups to every library group
	repeat with grp in allGroups
		set groupName to name of grp
		set groupLibraries to name of every library of grp
		log "Group: " & groupName
		repeat with libName in groupLibraries
			log "  Library: " & libName
		end repeat
	end repeat
end tell