KEdit
提供: MacWiki
KEdit とは?[編集]
BeOS 用の日本語テキストエディタ KEdit の Mac OS X 版。動作環境は 10.5 以降になります。
- なお、KDE(X Window System のデスクトップ環境。Mac OS X でも使用可能)の標準テキストエディタである KEdit と全く同名ですが,別のアプリケーションですので,使用に X window system は不要です。
AppleScript[編集]
- 新規文書 (ウィンドウ) を作成
set theText to "* " & ((current date) as string) tell application "KEdit" activate if not (exists front document) then make new document if text of front document is not "" then make new document set selected text of front document to theText end tell