Fat Cat Software

PowerPhotos Help

AppleScript Command - move

Move photos or albums to a different library. The items will be copied to the destination library and removed from the source library.

Syntax

move <photos or albums> to <library or location>

Parameters

Parameter Type Required Description
direct parameter list of photo or album yes The photos or albums to move.
to library or location yes The destination library or location within the album list.

Result

None.

Example

tell application "PowerPhotos"
	set sourceLibrary to first library whose name is "Old Library"
	set destLibrary to first library whose name is "Main Library"

	move (every photo of sourceLibrary) to destLibrary
end tell