任何人都可以解释一下为什么脚本突然变得如此缓慢吗?
即使这个测试脚本在 120 秒超时之前也没有完成。
tell application "Mail"
set selectedEmails to get selection -- returns a list
end tell
任何人都可以解释一下为什么脚本突然变得如此缓慢吗?
即使这个测试脚本在 120 秒超时之前也没有完成。
tell application "Mail"
set selectedEmails to get selection -- returns a list
end tell
这可能是您的系统的问题。该脚本在我的计算机上执行并不需要太多时间。
set time1 to do shell script "perl -e 'use Time::HiRes qw(time); print time'"
tell application "Mail" to set selectedEmails to get selection -- returns a list
set time2 to do shell script "perl -e 'use Time::HiRes qw(time); print time'"
set millisec to (round ((time2 - time1) * 1000))
return "Emails:" & (count of selectedEmails) & " Milliseconds:" & millisec
“电子邮件:1000 毫秒:183”