-1

我有一边听音乐一边工作/学习的习惯。由于我在工作时连接的 Mac 没有我想要的所有歌曲,我通常通过 iTunes 从 iPhone 播放列表选项收听歌曲。

为此,每次我将 iPhone 连接到计算机时,iTunes 都会检测到它,然后我必须手动转到应用程序中的“iPhone”按钮,然后选择“在我的 iPhone 上”,然后选择播放列表,然后播放歌曲。

反正有自动化这个过程吗?我正在寻找的是,一旦我连接我的 iPhone,iTunes 应该会自动打开我 iPhone 内的播放列表,并开始随机播放一首歌曲。

我试过用 Automator 自动化它。但这似乎不起作用。我在 AppleScript 中做错了 ::

tell application "iTunes"
    play playlist named "Sasha" of source of type iPhone
end tell
4

1 回答 1

1

哈 !!我想到了 !!然后我创建了一个小程序,它可以使用 AppleScript 为我做这件事。

然后,我在下面的博客上发布了相同的步骤/代码。这是链接::

代码说明 :: 如何在 Mac 上自动开始播放 iOS 设备中的歌曲

和相同的代码::

tell application "iTunes"

    set theCurrentPlaylist to view of front browser window
    set myiPhone to some source whose kind is iPod
    set mainPhonePlaylist to playlist "Sasha" of myiPhone
    set the view of the front browser window to mainPhonePlaylist
    set EQ enabled to true

    play playlist named "Sasha" of myiPhone
    set myRandomSong to random number from 1 to count of tracks of (get view of front window)
    play track myRandomSong of mainPhonePlaylist

end tell
于 2013-03-20T13:02:43.363 回答