Applescriptを使用してMS Word文書に追加する特定のテキスト文字列のスタイルをheading1に変更する方法を見つけたいのですが、何時間も検索して辞書を見ると、方法が見つかりませんそれに。このようなもの:
tell application "Microsoft Word"
activate
tell active document
set ContTemp to content of text object
set StartRange to (count of ContTemp) - 1
set endrange to StartRange
set theRange to create range start StartRange end endrange
set style of format of theRange to style heading1
set content of theRange to StringVar
end tell
end tell
しかし、「set the style of the Range。。。」でエラーを生成します。この単一行を削除すると、Word文書にテキストStringVar(単純なテキスト文字列)が追加されます。ただし、スタイルを設定することはできません。heading1に設定する必要があります。
助けてくれてありがとう!!