Copy link to clipboard
Copied
Hello,
Is there any way to paste on Selected Artbaords only at exact position
You can vote for this option on Uservoice https://illustrator.uservoice.com/forums/333657-illustrator-desktop-feature-requests/suggestions/32146360--paste-on-selected-artboards
You may also find this code helpful. Of course here you will have to enter the artboard numbers manually. The script itself will copy the selected objects to the clipboard.
/*
Copy selected artboard objects and paste to the same position on the listed artboards
Author: Sergey Osokin, email: hi@sergosokin.ru
Check othe
...
Copy link to clipboard
Copied
You can vote for this option on Uservoice https://illustrator.uservoice.com/forums/333657-illustrator-desktop-feature-requests/suggestions/321...
You may also find this code helpful. Of course here you will have to enter the artboard numbers manually. The script itself will copy the selected objects to the clipboard.
/*
Copy selected artboard objects and paste to the same position on the listed artboards
Author: Sergey Osokin, email: hi@sergosokin.ru
Check other author's scripts: https://github.com/creold
https://community.adobe.com/t5/illustrator-discussions/paste-on-selected-artboards-only/td-p/13160278
*/
//@target illustrator
app.preferences.setBooleanPreference('ShowExternalJSXWarning', false); // Fix drag and drop a .jsx file
// Main function
function main() {
if (!selection.length || selection.typename === 'TextRange') return;
var doc = app.activeDocument;
var abs = prompt('Enter artboards for copy-paste via comma', '1');
if (!abs.length) return;
abs = abs.replace(/\s/g, '');
app.executeMenuCommand('copy');
var absList = abs.split(',');
for (var i = 0; i < absList.length; i++) {
doc.artboards.setActiveArtboardIndex(1 * absList[i] - 1);
app.executeMenuCommand('pasteInPlace');
}
}
// Run script
try {
main();
} catch (e) {}
Copy link to clipboard
Copied
This will be great help, while working on argent tasks, Thank you so much @Sergey Osokin . It works for me. and I voted to include this feature in Illustrator
Copy link to clipboard
Copied
New version with many options available here https://github.com/creold/illustrator-scripts/blob/master/jsx/DuplicateToArtboards.jsx
Copy link to clipboard
Copied
Super, works perfectly, thank you so much