Fat Cat Software

PowerPhotos Help

AppleScript Object - export preset

A saved export preset that defines export settings. Export presets store configuration for how photos should be exported, such as format, size, and other options. They can be referenced by name or id when performing export operations.

Properties

Property Type Access Description
name text r/o The name of the export preset.
id text r/o The unique identifier of the export preset.

Example

tell application "PowerPhotos"
	set allPresets to every export preset
	repeat with aPreset in allPresets
		set presetName to name of aPreset
		set presetID to id of aPreset
		log "Export Preset: " & presetName & " (ID: " & presetID & ")"
	end repeat
end tell