1

Office 2011 で Word 用の簡単な AppleScript を作成しようとしていますが、うまくいきません。このリンクを見つけましたが、Office 2011 では構文が異なり、Google はこのタスクの友ではありません... http://www.mactech.com/articles/mactech/Vol.23/23.01/2301applescript/index.html

私が欲しいもの:新しいドキュメントを作成し、日付を書き、新しいドキュメントをホームフォルダーに保存します

これが私が試したものです:

tell application "Microsoft Word"
activate
make new document
set theDate to current date
set text of active document to theDate as text
save as active document file name "/Users/user/toto.doc"
end tell

私を手伝ってくれますか ?

4

1 に答える 1

0

これは私のMountain Lion + MS Word 2011で動作します:

set outputPath to (path to home folder as string) & "toto.doc"

tell application "Microsoft Word"
    activate
    make new document
    set theDate to ((current date) as string)
    tell active document
        set theRange to create range start 0 end 0
        set content of theRange to theDate
    end tell
    set activeDoc to active document
    save as activeDoc file name outputPath
end tell

お役に立てれば !

于 2012-12-26T13:52:11.977 に答える