Sunday, March 21, 2010

AppleScript에서 Clipboard 사용하기

클립보드 사용예 (한글 모아쓰기를 위해 clipboard 사용해본 예)
set the clipboard to txt -- 한글 모아주기를 위해 클립보드로 옮김
set txt to the clipboard as string -- 한글 모아주기가 완성.
-> 실제 사용할때는 원래 있던 클립보드의 내용을 피신시키는 걸 잊지 말것
http://pc-to-mac-changer.blogspot.com/2011/04/applescript.html 참조

사용예
AppleScript에서 클립보드에 원하는 텍스트를 다음과 같이 넣어줄 수 있다.
다음과 같이 한 후 텍스트 에디터에 paste하면 달력을 텍스트 형식으로 넣게 된다.
set the_text to (do shell script "cal")
set the clipboard to the_text
cal 은 UNIX 커맨드에서 달력을 표시해주는 명령인데,
이것을 이용한 것이다.

No comments:

Post a Comment