跳转到内容

AppleScript 编程/简介

来自维基教科书,自由的教科书

AppleScript 是一种面向对象的脚本语言,专门设计用于与应用程序间通信协作,以促进Apple 事件。对象是具有共享特征的预定义类的实例。

使用 AppleScript 语言可以使用的对象可能在三个不同的来源中定义:在 AppleScript 语言本身中,在 macOS 可脚本化应用程序中,或在第三方应用程序中。所有这些来源的类和命令都应在脚本字典中进行记录,这些字典可以在脚本编辑器应用程序的菜单中获得。

AppleScript 类

[编辑 | 编辑源代码]
{alias, application, boolean, class, constant, date, file, integer, list, number, POSIX file, real, record, reference, RGB color, script, text, string, Unicode text}
{centimeters, feet, inches, kilometers, meters, miles, yards, square feet, square kilometers, square meters, square miles, square yards, cubic centimeters, cubic feet, cubic inches, cubic meters, cubic meters, cubic yards, gallons, liters, liters, quarts, grams, kilograms, ounces, pounds, degrees Celsius, degrees Fahrenheit, degrees Kelvin}

使用 AppleScript 时,您可能会遇到AppleScript 命令脚本附加命令用户定义的命令应用程序命令

AppleScript 的标准附加组件包含一系列可供所有脚本使用的命令。这些命令是

为了记录注释,程序员通常会在过程中编写一些注释。单行注释写在#-- 之后。多行注释用 (* *) 括起来。

#  This is a single line comment
-- This is a single line comment
(* This is a 
   multi line 
   comment *)
下一页: 基本命令
主页: AppleScript 编程
华夏公益教科书