启动PLIST未运行

时间:2009-08-06 00:51:49

标签: applescript plist launchd

我试图在一个启动的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>

2 个答案:

答案 0 :(得分: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上正常工作。

答案 1 :(得分:1)

我认为你需要将最后的参数分解为单独的参数 - 每个参数(-e和AppleScript的各行)应该在一个单独的<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\''

这不是你的意思。