• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
1

Paste on Selected Artboards only

Contributor ,
Aug 25, 2022 Aug 25, 2022

Copy link to clipboard

Copied

Hello,

Is there any way to paste on Selected Artbaords only at exact position

jkhakase_2-1661495421651.png

 

 

TOPICS
Scripting

Views

450

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Enthusiast , Aug 26, 2022 Aug 26, 2022

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-paste-artboards.gif

/*
  Copy selected artboard objects and paste to the same position on the listed artboards
  Author: Sergey Osokin, email: hi@sergosokin.ru
  Check othe
...

Votes

Translate

Translate
Adobe
Enthusiast ,
Aug 26, 2022 Aug 26, 2022

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-paste-artboards.gif

/*
  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) {}

 




Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Aug 26, 2022 Aug 26, 2022

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Sep 02, 2022 Sep 02, 2022

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Sep 02, 2022 Sep 02, 2022

Copy link to clipboard

Copied

LATEST

Super, works perfectly, thank you so much

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines