OS X 10.9의 광범위한 응용 프로그램에서 강조 표시된 텍스트의 색상 변경을 핫키하는 방법을 찾고 있습니다.
이것은 다음과 같을 수 있습니다 :
답변
다른 응용 프로그램에 대해서는 잘 모르지만 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