[make new document] properties付きでドキュメントを作る
tell application "Jedit X"
activate
make new document with properties {encoding:"Japanese (Shift JIS)", line endings:CR, text:"美しい日本語", name:"日本語.txt"}
tell document 1
properties
end tell
end tell
「make_new_document_with_properties.rtf」をダウンロード
「make_new_document_with_properties.scpt.zip」をダウンロード
Rich Textで開く
tell application "Jedit X"
activate
make new document with properties {document type:"Rich Text", rich text:true, line endings:LF, text:"1234567890", name:"RichText.txt", selected character range:{loc:4, len:5}}
end tell
| 固定リンク
「JeditXAppleScript」カテゴリの記事
- htmlentities(2021.10.04)
- 【Jedit Ω】選択HTMLをhtmlentities変換してBLOG等に貼り付けられるようにする(2021.09.12)
- AppleScriptでの改行(2011.12.24)
- [make new document] properties付きでドキュメントを作る(2011.12.23)