【发布时间】:2014-03-25 07:39:55
【问题描述】:
以下applescript 将AppUninstaller.scpt 注册为垃圾文件夹的文件夹操作。
在 Mac OSX 10.7 和 10.8 中注册文件夹操作脚本可以正常工作。
在 10.9 中,我收到错误“附加错误 System Events got an error: Can't make alias "Macintosh HD:Users:[username]:.Trash:" into type specifier. em>"
执行此语句时发生错误
attach action to _trashFolder using _uninstallerScriptPath
完整的脚本如下。
on run
tell utils
init()
registerFolderAction()
end tell
end run
script utils
property _uninstallerScript : "AppUninstaller.scpt"
property _resRelativePath : ":Applications:TestDemo.app:Contents:Resources:"
property _folderActionScriptRelativePath : "Scripts:Folder Action Scripts"
global _resPath
global _trashFolder
global _uninstallerScriptPath
on init()
-- Setup paths
set _trashFolder to path to trash folder
set _uninstallerScriptPath to getUninstallerScript()
-- Add boot disk name to App relative path
tell application "Finder"
set startupDisk to (name of startup disk)
set _resPath to startupDisk & _resRelativePath
end tell
set scriptFolderPath to getScriptPath()
-- Copy folder action script file from appbundle to scripts folder
copyScript()
end init
on registerFolderAction()
try
tell application "System Events"
set folder actions enabled to true
log _uninstallerScriptPath
-- problem with below statement.
attach action to _trashFolder using _uninstallerScriptPath
end tell
on error msg
display dialog "Attach error " & msg
end try
end registerFolderAction
on getScriptPath()
return ((path to library folder from user domain) as string) & _folderActionScriptRelativePath
end getScriptPath
on getUninstallerScript()
return getScriptPath() & ":" & _uninstallerScript
end getUninstallerScript
-- copying the script inside app bundle into scripts folder.
on copyScript()
tell application "Finder"
set srcFile to _resPath & _uninstallerScript
set dstFile to my getScriptPath()
log "Src File " & srcFile & " dstFolder " & dstFile
duplicate file srcFile to dstFile with replacing
end tell
end copyScript
end script
【问题讨论】:
标签: macos applescript