macOS app

맥 추천 앱 – TextExpander 생산성 향상시키기

맥 추천 앱 TextExpander

TextExpander 각종스크립트 이용가능한 snippet 프로그램

TextExpander 6버전으로 업그레이드되면서 월결제 단위로 변경되었습니다.

인터넷으로 할인 코드 적용하면 30% 할인된 가격으로 이용가능하십니다.

적용했을때의 가격표입니다.

1개월은 무료로 사용 가능하니 사용해보고 좋은 프로그램이다 싶으면 사용하세요!

snippet 기능은 alfred에서도 구현이 가능합니다.

하지만 단순히 단축어 역활을 할 뿐입니다.

하지만

TextExpander 는 다양한 스크립트(applescript, shellscript, javascript)와 다양한 입력 필드를 지원하여

좀 더 유용하게 사용하실 수가 있습니다.

예) 텍스트 박스와 텍스트입력 필드를 적용한 예입니다.

키보드 입력 방식으로 매크로 기능도 지원합니다.

아래는 {Tab} 키를 이용한 매크로와 단축어 기능을 활용했네요!

그리고 스크립트 적용한 동영상만들어 문구 간단히 사용설명 해드리면

;xm – 메일 보내기

set myMail to display dialog "보낼 이메일?" default answer ""  #텍스트박스 생성
set linkMail to text returned of myMail                        #보낼메일주소 변수지정
set mySubject to display dialog "제목은?" default answer ""    #텍스트박스 생성
set linkMail2 to text returned of mySubject                    #보낼메일제목 변수지정

tell application "Mail"
 set theOutMessage to make new outgoing message with properties {visible:true}
 tell theOutMessage
  make new to recipient at end of to recipients with properties {address:linkMail}
  #set sender to "hjm79@me.com"
  set subject to linkMail2
  #내용#set content to "Message Text"
 end tell
end tell

;hloc – 현재 위치 적용함! (applescript)

현재 위치를 탐색하는 location helper 부터 설치합니다.

tell application "Location Helper"
 set listCoords to get location coordinates
 #return (item 1 of listCoords as text) & ", " & (item 2 of listCoords) as text
end tell
#구글지도 사용시
#ignoring case
# set curlCMD to ¬
#  "curl --stderr /dev/null \"https://www.google.com/search?q=" & listCoords & "\""
# -- Run the script and get the result:
# set tinyURL to (do shell script curlCMD)
# return tinyURL
#end ignoring
#카카오맵
set theurl to "https://map.kakao.com/link/map/현재위치," & (item 1 of listCoords as text) & "," & (item 2 of listCoords) & ""

;todo – 일정추가하기 (applescript)

alfred 자연어 기반에서는 추출한 parse.rb 파일을 이용하여 스크립트 적용함

set mydo to display dialog "추가 일정?" default answer ""
set myTodo to text returned of mydo
set scrCommand to "/usr/bin/ruby /Users/hjm79/Downloads/alfredworkflow/BusyCal/parse.rb"

tell application "Terminal"
 do script scrCommand & " " & myTodo
 delay 2
 quit
end tell

아래는 홈페이지상 설명입니다. 설명보시면 링크도 포함하고 있습니다.

마니

Recent Posts

맥북 노치 프로그램 간단비교와 결정

Table of Contents[Open][Close]다양한 노치프로그램들노치프로그램 비교표음악 재생 시 Hud 표시NotchNook 재생 시 효과DynamicLake Pro 재생 시…

2주 ago

Arc Browser 아크브라우저 사용법 정리와 Tip

Table of Contents[Open][Close]기존 사용하던 브라우저 설정가져오기!간편 사용법탭 관리스페이스 활용즐겨찾기 기능화면 분할(스플릿 뷰)많이 사용하는 단축키✮✮ Max…

2주 ago

Sketchybar 설치 방법 (한방에 설치와 테마 적용하기)

Table of Contents[Open][Close]SketchyBar 소개설치방법기능 추가와 테마 변경 작업수정사항수정된 테마 설치 방법추가 작업바 색상 변경삭제 방법…

8개월 ago

맥북 노치 다이내믹 아일랜드 적용

Table of Contents[Open][Close]Dynamic island sketchybar설치 방법해상도에 관련된 설정 변경디스플레이 설정확인음악재생 설정기능 비활성화문제점다른 글들.... 노치바에 다이내믹…

8개월 ago

Bartender5 사용법 과 대체 프로그램들

Table of Contents[Open][Close]Bartender 가격대체 프로그램Hidden BariBarBarbeeSketchybarBartender5 기능일반항목메뉴바 아이템메뉴바 스타일그외 기타 기능들PresetsTriggers HotkeysAdvanced다른 글들.... https://www.macbartender.com/ 메뉴바를…

8개월 ago

Adobe 1년치 최대한 저렴하게 구독하기 24.3월 작성 현재 이상 무!

Table of Contents[Open][Close]라이센스 구입 이유네이버 쇼핑 검색(국내 검색)Reddit 에서 언급되는 방법adobe_king 결제방식텔레그램 채팅과 결제할인코드다른 글들....…

8개월 ago

This website uses cookies.