如何解决AppleScript:获取 Microsoft Word 当前字体的名称
我是 Applescript 的新手,我想获取 Microsoft Word 当前字体的名称。我尝试了以下代码:
tell application "Microsoft Word"
tell selection
tell font
name
end tell
end tell
end tell
但执行此脚本会打印以下错误消息:
我的代码有什么问题? -1728 和 w137 是什么意思?
解决方法
这适用于我使用 macOS Big Sur 和 Word 16.34 版
tell application "Microsoft Word"
set fontUsed to name of font object of selection
end tell
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。