Câu trả lời:
Tôi đoán AppleScript này nên làm:
set numberOfWindows to "0"
tell application "System Events"
set allProcesses to application processes
repeat with i from 1 to number of allProcesses
tell process i
set numberOfWindows to (numberOfWindows + (count windows))
end tell
end repeat
end tell
tell application "System Events" to get UI elements enabled
. Bạn có thể kích hoạt nó bằng cách thêm tell application "System Events" to set UI elements enabled to true
vào phần đầu của tập lệnh; mặc dù nó có vẻ lạ đối với tôi, rằng nó dường như đã được kích hoạt trong trường hợp của bạn.
tell application "System Events" to get UI elements enabled
trả về true
, nhưng lỗi ở trên vẫn xảy ra, ngay cả khi thêm dòng enabler mà bạn đề xuất vào đầu.