Answered
Copy/paste scripting
"Can I copy an object and paste it into all pages in the same position as if I pressed Ctrl+Shift+Alt+V using a script? Could someone please provide the code?"
"Can I copy an object and paste it into all pages in the same position as if I pressed Ctrl+Shift+Alt+V using a script? Could someone please provide the code?"
Hi @aghanjar16430960 , Also, a script can duplicate a selected page item and skip the copy and paste. Something like this:
//a selected object
var s = app.activeDocument.selection[0]
var pg = app.activeDocument.pages.everyItem().getElements()
for (var i = 0; i < pg.length; i++){
s.duplicate(pg[i])
}


Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.