Created
June 14, 2021 11:15
-
-
Save robmiller/bc3514e161b776884f11fbc861c23661 to your computer and use it in GitHub Desktop.
AppleScript for refreshing Skim PDF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Skim" | |
repeat with n from (count of documents) to 1 by -1 | |
set doc to document n | |
if name of doc is "book-screen.pdf" then | |
revert doc | |
end if | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment