MAC上每次打开Excel显示“运行时错误5,无效的过程调用或参数”

然后继续点击调试,出现如下的VBA代码:

Function FolderExists(ByVal FilePath As String) As Boolean
#If Mac Then
FolderExists = AppleScriptTask("FoxitUtils.applescript", "ExistsFolder", FilePath)
#End If
'FolderExists = Dir(FilePath) <> ""
End Function
每次打开都会这样提示,请问各位可以怎么解决这个问题呀!