MacOSX:通过 AppleScript 获取 Finder 的当前目录时避免挂起
目前我正在使用这个AppleScript来获取Finder的当前目录: tell application "Finder" return POSIX path of ((folder of the front window) as text) …
Xcode 4 Applescript 构建并运行当前目标应用程序
我正在寻找一些可以告诉 Xcode 运行当前目标的 applescript。 我想从 textmate 自动化 Xcode 以提供“在模拟器中运行”和“在设备上运行”。 据我所知…
applescript 比较单元格值,然后将一个单元格的值放入另一个单元格中
在数字应用程序表中,我有以下数据 A B C D user_id login user_id login 2039 Abbott, Rachael Adams, Sue 110 Abbott, Shelby Adamson, Wendy 2910 …
使用applscript执行dig并启动远程桌面
我不知道 applescript,但我需要自动化执行以下步骤,看来 applsescript 是正确的选择。 1)运行终端命令“dig @123.4.5.678 computername.domain.net…
如何设置 AppleScript 在给定文件被修改时运行?
我知道 applescripts 可以设置为作为文件夹操作运行,但是有没有办法让它们作为 文件 操作运行?是的,我知道我可以通过创建一个新文件夹,将脚本放入…
使用 AppleScript 在 Safari 中选择文件
我正在尝试编写一些自动化代码(主要是用 Ruby Selenium 编写)。有时,Safari 中会打开文件选择器,以便用户可以选择要上传的文件。 Selenium 无法处…
Mac 和 PC 之间的协同更改 mac 热键
Synergy 是一个程序,可让您在两台计算机上使用相同的鼠标和键盘。我有一台 PC 和 Mac 直接通过以太网电缆连接,因此连接很好,看起来好像只有一台计…
使用 AppleScript 获取 Unicode 格式的窗口标题
我一直遇到以下问题: 我有一个从 Firefox 窗口检索标题的脚本: tell application "Firefox" if the (count of windows) is not 0 then set window_n…
将目录(和子目录)中的每个 PDF 文件移动到另一个文件夹
我想将文件夹及其子文件夹内的每个 .pdf 文件移动到另一个文件夹。我尝试使用 AppleScript 执行此操作,但返回错误: tell application "Finder" set …
获取 iTunes 曲目 Applescript 的位置
我有下面的代码来转换 iTunes 中的曲目,但是当它尝试获取转换后的曲目的位置时,会出现错误: tell application "iTunes" set theFiles to the selec…
限制铃声长度 AppleScript
我有下面显示的 AppleScript 代码,它告诉 iTunes 转换所选曲目。我想知道如何限制要转换的曲目的长度? tell application "iTunes" set theFiles to …
在 AppleScript 中复制文件
我有下面的代码在 Applescript 中设置一个变量作为 iTunes 音乐文件夹的路径: set username to text returned of (display dialog "RingtoneDude" de…
在特定的 OS X 空间中运行不同的 Firefox 配置文件
我想知道是否可以在 applescript 中创建一个脚本,其结果出现在特定的空格数 N 中。 我发现,由于我同时打开了许多 Firefox 窗口,所以让每组窗口都是…