Skip to content

Instantly share code, notes, and snippets.

@getflourish
Created July 17, 2015 21:51
Show Gist options
  • Save getflourish/cc70a1f4fc8bd3aa9591 to your computer and use it in GitHub Desktop.
Save getflourish/cc70a1f4fc8bd3aa9591 to your computer and use it in GitHub Desktop.
Create artboards from array of strings
var names = [];
var artboard;
for (var i = 0; i < names.length; i++) {
artboard = context.document.currentPage().currentArtboard();
artboard = artboard.duplicate();
artboard.setName(names[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment