Skip to content

Instantly share code, notes, and snippets.

@kouichi-c-nakamura
Last active February 1, 2016 02:55
Show Gist options
  • Save kouichi-c-nakamura/f6f69e1ea48818308db9 to your computer and use it in GitHub Desktop.
Save kouichi-c-nakamura/f6f69e1ea48818308db9 to your computer and use it in GitHub Desktop.
AppleScript code to change the font and asian font of selected text in Microsoft Word 2011 Mac
tell application "Microsoft Word"
tell active window
set name of font object of text object of selection of it to "Palatino Linotype"
set east asian name of font object of text object of selection of it to "游明朝体"
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment