Applescript iTunes 词典解释

发布于 2024-08-31 01:27:38 字数 242 浏览 5 评论 0原文

我想知道以下不同的配色方案意味着什么:

img src="https://lh4.ggpht.com/_bLwRtcZS8No/S993gq8W7pI/AAAAAAAAAWE/Tffl3a3uK4E/itunes.png" alt="alt text">

< 蓝色C标签是什么意思?紫色的呢?

免责声明: 这里绝对是 OSX 新手...请保持温柔;-)

I am wondering what the different color schemes mean in the following:

alt text

What does the blue C tag mean? and the purple one?

Disclaimer: absolute OSX newbie here... please be gentle ;-)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

审判长 2024-09-07 01:27:38

蓝色的“C”意味着“命令”。您可以像这样使用它们:

tell application "iTunes" to <command> --search, stop, update, eject, etc

紫色的 C 表示“类”。这些代表可以从 iTunes 中提取的不同类型的数据,选择单个类会显示它具有哪些属性(橙色 E)。类(或者实际上是类的实例)是您请求信息后返回给您的内容,如下所示:

tell application "iTunes"
   set currentSong to the current song
end tell

运行此命令后,currentSong 将包含 Song 类的实例,然后你可以询问信息,比如它的艺术家是谁,等等。

The blue "C" means "command". You use these like so:

tell application "iTunes" to <command> --search, stop, update, eject, etc

The purple C means "class". These represent different types of data that can be extract from iTunes, and selecting a single class shows what properties it has (the orange E). Classes (or instances of classes, really) are what's returned to you after you request information, like so:

tell application "iTunes"
   set currentSong to the current song
end tell

After running this, currentSong will contain an instance of the Song class, which you can then ask for information, like who its artist is, etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文