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

(DTPtechNote:980) Re: [AS-Illustrator CS] 線分の作成



>なんていうか、make new path itemって成功するのに、パスは作成されないんだね。

しょうちゃんの方法だと2角形が作られちゃうからダメなんじゃないかねぇ。
path item には path point を作ってやって初めて線分になるみたいよ。

property p1 : {100, 100}
property p2 : {150, 200}

tell application "Illustrator CS" to tell document 1
	set myPath to make path item at beginning
	tell myPath
		make path point with properties {anchor:p1, left direction:p1, right direction:p1, point type:corner}
		make path point with properties {anchor:p2, left direction:p2, right direction:p2, point type:corner}
	end tell
end tell