Skip to content

Instantly share code, notes, and snippets.

@bomberstudios
Created June 23, 2015 10:26
Show Gist options
  • Save bomberstudios/2283c3c62a47218138d4 to your computer and use it in GitHub Desktop.
Save bomberstudios/2283c3c62a47218138d4 to your computer and use it in GitHub Desktop.
var s = context.selection
var v = context.document.currentView()
var r = v.totalRectForLayers(s)
var artboard = [[MSArtboardGroup alloc] initWithFrame:r];
var page = context.document.currentPage();
[page addLayers:[artboard]];
[artboard setGrid:[page grid]];
[artboard absoluteRect].rect = r;
[page moveLayersToArtboards];
[artboard select:YES byExpandingSelection:NO];
@phaistonian
Copy link

Thank you :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment