0

http://blog.mackerron.com/2009/05/19/paste-unformatted-keyboard-shortcut-office-2008-mac/ Word では問題なく動作しましたしかし、以下のコードをApplescriptに貼り付けてに保存すると/Documents/Microsoft User Data/Excel Script Menu Items、このエラーが発生しますSyntax Error: Expected end of line, etc. but found “text”.

try
  set theClip to Unicode text of (the clipboard as record)
  tell application "Microsoft Excel" to tell selection to type text text theClip
end try

ここで何がうまくいかなかったのですか?

4

2 に答える 2

1

試す:

set theClip to the clipboard as text

tell application "Microsoft Excel"
    activate
    set value of active cell to theClip
end tell

またはこれ:

set theClip to the clipboard as text

tell application "Microsoft Excel" to activate
tell application "System Events" to tell process "Microsoft Excel"
    keystroke theClip
end tell

スクリプトをここにドラッグします。

tell application "Finder" to open (path to library folder from user domain as text) & "Application Support:Microsoft:Office:Excel Script Menu Items:"

ここに画像の説明を入力

于 2012-10-12T13:06:01.820 に答える
0
to type text text

たぶん、変数 text の名前を変更する必要がありますか?

于 2012-10-12T12:17:50.953 に答える