[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(DTPtechNote:1031) ApplescriptでIllustratorのPlacedItemのpositionを変えられない



みなさん、お世話になります。

表題の通り、ApplescriptでIllustratorに画像を配置したいのですが、
配置はできてもその後、移動させることができません。
スクリプトは 以下の通りです。

tell application "Adobe Illustrator 9.0.2"
	activate
	set f01apl2 to application "Adobe Illustrator 9.0.2"
	set f01doc1 to current document of f01apl2
	set f01lay1 to layer "layer1" of f01doc1
	set f01str2 to "Macintosh2GBHD:images:telephone.jpg"
	set f01file2 to make new placed item in f01lay1
	set file path of f01file2 to file f01str2
	set f01int4 to 100
	set f01int5 to 200
	set position of f01file2 to {f01int4, f01int5}  #####
	display dialog "おわり。"
end tell

このスクリプトを実行しますと、#####のところで、
「placed item 1 of layer 1 of document 1 の position を 
{100, 200}にすることはできません」
というエラーが出てしまいます。

このほか、いったん配置したあとtranslateしようとしてもうまくできませんでした。

どなたか位置を変える方法をご教授いただけないものでしょうか。
よろしくお願いします。