Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Force Preview to reload a document' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Force Preview to reload a document
Authored by: danjo on Nov 13, '11 05:06:02AM
Adding to flyingillini's comment, here is a short AppleScript, which will toggle focus on Preview to force it to reload.

set frontApp to (path to frontmost application as Unicode text)
if "Preview" is in frontApp then
  tell application "Finder" to activate
  tell application "Preview" to activate
else
  tell application "Preview" to activate
  tell application frontApp to activate
end if


[ Reply to This | # ]