Last active
February 1, 2016 02:55
-
-
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
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 "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