我有这个脚本:
set filename to getLocalizedString("Finder", "AXICON5")
--set openIP to filename & PCIP
tell application "Finder" to activate
tell application "Finder"
try
--open folder openIP
--on error errMsg number errNbr
open folder filename
end try
tell application "Finder" to activate
end tell
on getLocalizedString(a, x)
tell application a to return localized string x
end getLocalizedString
我要做的是在“网络”文件夹中打开一个文件夹。如果失败,请打开“网络”文件夹。更重要的是,该应用程序已使用多种语言进行本地化,因此,我使用函数 getLocalizedString(a, x) 从 Finder.app 获取本地化字符串“网络”。
问题来了。有些语言没有区分大小写的问题,比如中文、日文。但是在英文中,我得到了字符串“network”,我无法进入该文件夹。“网络”工作正常。请帮忙!