Câu trả lời:
http://atbash.net/blog/archives/000135.html
-- the applescript only calls attention to itself when the idle period is up
on idle
tell application "Safari"
--confirms your browser is the front application
activate
end tell
tell application "System Events"
tell process "Safari"
keystroke "r" using {command down}
end tell
end tell
--sets the idle period in seconds.
--i.e. safari will refresh every 10 seconds
return 10
end idle
Nếu kịch bản hơi quá cao đối với bạn (bạn đã mua máy Mac), hãy thử PageReboot .
Vâng! Cuối cùng họ đã đưa ra một phần mở rộng Safari 5 cho nó!
Bạn có thể lấy nó ở đây: Tự động tải lại cho Safari 5
Hãy nhớ rằng, nó sẽ chỉ hoạt động với Safari 5.
Tài liệu được chọn khi tập lệnh được bắt đầu:
tell application "Safari"
set doc to document 1
repeat while true
tell doc to set URL to (get URL)
delay 10
end repeat
end tell
Tất cả các tab:
tell application "Safari"
repeat while true
repeat with t in tabs of windows
tell t to set URL to (get URL)
end repeat
delay 10
end repeat
end tell