2

我正在尝试在已启动的 plist 中运行 Applescript,但由于某种原因它无法正常工作。可能是我的电脑,但我认为它可能还有其他问题。如果有人可以查看并评论这篇文章,我将不胜感激!

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.pf.Testing</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/osascript</string>
<string>-e</string>
<string>'tell application "Finder"' -e  'set didQuit to (path to home folder as string) &amp; ".myApp"' -e 'if (exists file didQuit) then' -e 'tell application "TestApp"' -e 'activate' -e 'end tell' -e 'end if' -e 'end tell'</string>
</array>
<key>StartInterval</key>
<integer>20</integer>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>

谢谢你的帮助!

最新列表:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.pf.Testing</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/osascript</string>
<string>-e</string>
<string>'tell application "Finder"'</string>
<string>-e</string>
<string>'set didQuit to (path to home folder as string) &amp; ".myApp"'</string>
<string>-e</string>
<string>'if (exists file didQuit) then'</string>
<string>-e</string>
<string>'tell application "TestApp"'</string>
<string>-e</string>
<string>'activate'</string>
<string>-e</string>
<string>'end tell'</string>
<string>-e</string>
<string>'end if'</string>
<string>-e</string>
<string>'end tell'</string>
</array>
<key>StandardErrorPath</key>
<string>/Users/pf/Desktop/Problem.log</string>
<key>StartInterval</key>
<integer>20</integer>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
4

2 回答 2

1

我认为您需要将最终参数分解为单独的参数 - 每个参数(-eAppleScript 的各个行)应该在一个单独的<string />元素中。要么,或者正如尼克所说,只需传入一个.applescript包含整个脚本的文件。

问题是您的命令被解释为:

/usr/bin/osascript -e '\'tell application "Finder"\' -e  \'set didQuit to (path to home folder as string) & ".myApp"\' -e \'if (exists file didQuit) then\' -e \'tell application "TestApp"\' -e \'activate\' -e \'end tell\' -e \'end if\' -e \'end tell\''

这不是你的意思。

于 2009-08-14T17:34:22.533 回答
1

一个可能的问题是,launchd 没有在登录用户的 GUI 上下文中执行您的 AppleScript,因此 AppleScript 无法与 Finder 对话。

确保 plist 安装为 LaunchAgent,而不是 LaunchDaemon(plist 应位于 /Library/LauchAgents 或 ~/Library/LaunchAgents)。

尝试将以下内容添加到 plist 中,以使脚本在 GUI 上下文中运行:

<key>LimitLoadToSessionType</key>
<string>Aqua</string>

请注意,这只能在 10.5 及更高版本上可靠地工作;我无法让每用户 LaunchAgents 在 10.4 上正常工作。

于 2009-08-12T10:25:34.067 回答