Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
You can write an AppleScript with something like this:

Code:
repeat	
	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}
			delay 60
		end tell
	end tell
end repeat

Or you could use Opera, which has this built into the contextual menu.
 
WildCowboy said:
You can write an AppleScript with something like this:

Code:
repeat	
	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}
			delay 60
		end tell
	end tell
end repeat

Or you could use Opera, which has this built into the contextual menu.
Seems a bit too complicated for me to mess with.:eek:
 
MattyMac said:
Seems a bit too complicated for me to mess with.:eek:

Meh...it's not so bad once you sit down and think about what it's doing.

But yes, Opera can do this very easily...a simple right click on the page to turn on auto refresh, and then set the delay.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.