Skip to content

Instantly share code, notes, and snippets.

@kouichi-c-nakamura
Last active September 16, 2016 12:45
Show Gist options
  • Save kouichi-c-nakamura/523cbebc275d394e673d76f237d4615e to your computer and use it in GitHub Desktop.
Save kouichi-c-nakamura/523cbebc275d394e673d76f237d4615e to your computer and use it in GitHub Desktop.
Microsoft Word for Mac 2011で、コメントだけを表示させるAppleScript ref: http://qiita.com/kouichi-c-nakamura/items/54ef45bd34e8e247fbd3
tell application "Microsoft Word"
-- for Microsoft Word for Mac 2011
-- instead of showing all changes tracked, shows you comments only
-- mimicking Windows version's "Simple Markup" view
--set revisions view of view of active window to "revisions view final"
set show revisions and comments of view of active window to true
set show insertions and deletions of view of active window to false
set show comments of view of active window to true
set show format changes of view of active window to false
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment