Created
November 30, 2020 08:05
-
-
Save SoundBlaster/d8efce7abccbabb7e7c71e5bbfed1b02 to your computer and use it in GitHub Desktop.
Apple Books DRM remover
This file contains hidden or 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 "System Events" | |
tell application process "Books" | |
set frontmost to true | |
end tell | |
end tell | |
say "start" | |
set i to 0 | |
repeat 500 times | |
do shell script "screencapture -m -t jpg ~/Desktop/book/page" & i & ".jpg" | |
delay 0.2 | |
tell application "System Events" | |
tell process "Books" | |
key code 124 | |
end tell | |
end tell | |
delay 0.8 | |
set i to i + 1 | |
end repeat | |
say "stop" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment