Answered
thanks I still get an error
var d = app.activeDocument;
var ps = d.pages;
var i = ps.length;
while(i--) {
var p = d.pages.add(LocationOptions.AFTER, ps[i];
p.appliedMaster = null;
}
Ack, a missing paren too. More coffee before posting and not on mobile : ). This should do it.
var d = app.activeDocument;
var ps = d.pages;
var i = ps.length;
while(i--) {
var p = d.pages.add(LocationOptions.AFTER, ps[i]);
p.appliedMaster = null;
}
Sign up
Already have an account? Login
To post, reply, or follow discussions, please sign in with your Adobe ID.
Sign inSign in to Adobe Community
To post, reply, or follow discussions, please sign in with your Adobe ID.
Sign inEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.
