Answered
How to apply Keep Option by script?
I want a shortcut to quickly apply keep option (start in next column)
to the paragraph in which the cursor is in
Is this possible using a script?
I want a shortcut to quickly apply keep option (start in next column)
to the paragraph in which the cursor is in
Is this possible using a script?
Try this:
var s = app.activeDocument.selection[0];
if (s.hasOwnProperty("paragraphs")) {
var p = s.paragraphs
for (var i = 0; i < p.length; i++){
p[i].startParagraph = StartParagraph.NEXT_COLUMN
};
} Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.