エクセル配置をapple scriptで

[2286]エクセル配置をapple scriptで 投稿者:中屋 投稿日:2003/06/06(Fri) 21:08
MacOS9.2+Indesign2.0.2でエクセル配置をapple script自動化しようと考えています。

以下のようなスクリプトを書いてみたのですが、うまくいきません。

-------------------------------------------------------
tell application "InDesign 2.0.2J"
activate
tell document 1
make page
end tell
tell active spread of window 1
place "System:Desktop Folder:test.xls" with properties {sheet name:"test", range name:"A1:B4"}
set sheet name of excel import preference to "test"
end tell

end tell
-------------------------------------------------------
どなたかご教示いただければと思います。
よろしくお願いいたします。
» 1
[2286へのレス]Re: エクセル配置をapple scriptで 投稿者:市川せうぞー 投稿日:2003/06/06(Fri) 22:29
こんな感じでどうですか?

tell application "Finder"
set my_file to choose file "エクセルファイルを選んでください" of type {"XLS8"}
end tell

tell application "InDesign 2.0.2J"
tell excel import preference 1
set sheet name to "test"
set range name to "A1:B4"
end tell
tell document 1
tell page 1
set my_frame to make text frame with properties {geometric bounds:{0, 0, 200, 200}}
tell my_frame
place my_file
end tell
end tell
end tell
end tell
» 2
[2286へのレス]Re: エクセル配置をapple scriptで 投稿者:中屋 投稿日:2003/06/07(Sat) 14:28
できました。
ありがとうございます。
この記事の書き込み元へのリンク (コメントや質問などはこちらへどうぞ)

このページをシェア