在 OS X 中为应用程序间的文本应用颜色的应用程序

在 OS X 中为应用程序间的文本应用颜色的应用程序

我正在寻找一种方法来通过热键更改 OS X 10.9 上各种应用程序中突出显示文本的颜色。

这可能是:

  • 一个作用于选定文本的小应用程序(例如液体
  • applescript 或其他编程解决方案;可以使用实用程序进行热键控制基曼多
  • 还要别的吗

答案1

我不知道其他应用程序,但你可以在 TextEdit 中使用这样的脚本:

tell application "System Events" to tell process "TextEdit"
    set {x, y} to value of attribute "AXSelectedTextRange" of text area 1 of scroll area 1 of window 1
end tell
tell application "TextEdit"
    set color of characters x thru y of document 1 to {65535, 0, 0}
end tell

相关内容