Skip to content

Instantly share code, notes, and snippets.

@janily
Last active July 17, 2020 08:40
Show Gist options
  • Save janily/3488e315d8c852e258a91e7b288c92ad to your computer and use it in GitHub Desktop.
Save janily/3488e315d8c852e258a91e7b288c92ad to your computer and use it in GitHub Desktop.
auto layout
let selection = doc.selectedLayers
selection.forEach(layer => {
var sel = layer.sketchObject
if (sel.resizeToFitChildrenWithOption) {
sel.resizeToFitChildrenWithOption(0);
} else {
sel.fixGeometryWithOptions(0);
}
//console.log(sel.layers())
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment