誰かがスクリプトが突然とても遅い理由に光を当てることができますか?
このテストスクリプトでさえ、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」