Answered
ExtendScriptでストーリーの組方向を変える
ExtendScriptでストーリーの組方向を変える方法はありますでしょうか?

ExtendScriptでストーリーの組方向を変える方法はありますでしょうか?

対象のテキストフレームを選択した状態からとして、
var storyPref = app.selection[0].parentStory.storyPreferences;
if (storyPref.storyOrientation == StoryHorizontalOrVertical.HORIZONTAL){
storyPref.storyOrientation = StoryHorizontalOrVertical.VERTICAL;
} else {
storyPref.storyOrientation = StoryHorizontalOrVertical.HORIZONTAL;
}
などと。
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.