Message List Page Down
Summary: Scrolls Apple Mail’s message list one pane down.
Requires: Apple Mail
Suggested Key Binding: Control–Page Down
Install Location: ~/Library/Scripts/Applications/Mail/
Last Modified: 2019-10-02
Description
In Apple Mail, you can scroll the message content using the Page Up and Page Down keys. You used to be able to scroll the message list using Control–Page Up and Control–Page Down. In Mac OS X 10.9, this only works if no messages are selected. This script makes it work whether or not there are selected messages.
Installation Instructions · Download in Compiled Format · Download in Text Format
Script
tell application "System Events"
tell process "Mail"
set _messageList to scroll area 1 of splitter group 1 of splitter group 1 of window 1
click button 3 of scroll bar 1 of _messageList -- increment page
end tell
end tell