« Fontographer | トップページ | AppleScriptでの改行 »

[make new document] properties付きでドキュメントを作る

Website_image20111223_215406 プロパティを確認出来ます。
tell application "Jedit X"
activate
make new document
tell document 1
properties
end tell

end tell

「properties.rtf」をダウンロード

「properties.scpt.zip」をダウンロード

では

Website_image20111223_215927




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で開く

Website_image20111223_220539

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

「rich_text.rtf」をダウンロード

「rich_text.scpt.zip」をダウンロード

|

« Fontographer | トップページ | AppleScriptでの改行 »

JeditXAppleScript」カテゴリの記事

トラックバック


この記事へのトラックバック一覧です: [make new document] properties付きでドキュメントを作る:

« Fontographer | トップページ | AppleScriptでの改行 »