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

(DTPtechNote:1747) Re: Illustratorのオブジェクト情報



>>要約すれば atan2(mvalue_c, mvalue_a) を出して
>
>atan2を求める場合はAppleScriptでは出来ないんですよね。
>perlか何かを使わないと無理なんでしょうか?
>情けない質問でスミマセン。

この場合javascriptがよいのでは
ナサケさんのレスを参考にして角度を割り出すスクリプトを書いてみました。
目的の画像を一つだけ選択して実行してみてください。

tell application "Adobe Illustrator"
	set theMatrix to matrix of selection of document 1
	set theRad to do javascript "Math.acos(" & mvalue_a of theMatrix & ")"
	set theAngle to theRad * 180 / pi
end tell

これでよいのかどうか分からないので参考程度に