苹果脚本 |照片 |幻灯片放映

Applescript | Photos | SlideShow

如何使用 applescript 开始幻灯片放映?

tell application "Photos"
start slideshow using folder "Monday"
end tell

这行不通

来自 Photos 词典:

folder (noun), pl folders A folder. A container that holds albums and other folders, but not media items

start slideshow (verb) Display an ad-hoc slide show from a list of media items, an album, a folder, or a moment (from Photos Suite)

尽管命令 start slideshow 的描述表明您可以从文件夹中显示幻灯片,但它不起作用。

您必须获取文件夹中相册的媒体项列表。

tell application "Photos"
    set mediaItems to media items of album "myAlbum" of folder "Monday"
    start slideshow using mediaItems
end tell