applescript(10.9)不能将别名变为类型说明符

时间:2014-03-25 07:39:56

标签: macos applescript

以下Applecript将AppUninstaller.scpt注册为Trash文件夹的文件夹操作。 在Mac OSX 10.7和10.8中注册文件夹操作脚本可以正常工作。

在10.9中,我收到错误“ 附加错误系统事件出错:无法生成别名”Macintosh HD:用户:[用户名]:。垃圾:“进入类型说明符。

执行此语句时发生错误

 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

1 个答案:

答案 0 :(得分:3)

查看错误(并在测试自己之后),似乎在pre-Mavericks系统中,attach action to命令的第一个参数在参数为别名时被正确强制转换为文件/文件夹对象说明符。在Mavericks中,这种强制不会发生并且会发生错误,因为给定的参数不是对象/类型说明符而是别名类。 attach action to的第一个参数需要是一个对象/类型说明符,因此您可以通过在调用该命令时强制强制来解决您的问题。

attach action to folder (_trashFolder as text) using _uninstallerScriptPath 

您可以使用参数using

执行相同的操作