13
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

kindle for mac で自動ページめくり(AppleScript)

Last updated at Posted at 2015-05-28

こんな感じで自動再生できる.Automatorだとうまくできなかった.

repeat with p from 1 to 110
    tell application "Kindle"
        activate
        tell application "System Events"
            delay 1
                key code 123
            -- ページ送り (カーソルキー)
        end tell
    end tell
end repeat

間にスクリーンショットをはさんで(ry

13
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?