iText Express
提供: MacWiki
iText Express とは?[編集]
Cocoa で作成されたフリーのテキストエディタ。LightWayText、iText に置き換わる物ではないそうです。縦書き表示に対応。 EPUB形式のファイルを閲覧することができます(付属の iText Pro も可能)。
AppleScript[編集]
- 新規文書 (ウィンドウ) を作成
set theText to "* " & ((current date) as string) & return tell application "iText Express" activate if not (exists front document) then make new document if text of front document is "" then set theDoc to front document else set theDoc to make new document end if set text of theDoc to theText -- set size of text of theDoc to 14 end tell