cfpb / design-manual

⚠️ THIS REPO IS DEPRECATED ⚠️ A set of design principles and standards for the Consumer Financial Protection Bureau.
https://cfpb.github.io/design-manual/
Creative Commons Zero v1.0 Universal
98 stars 71 forks source link

FEWD - Update the canvas resizing script #577

Closed jimmynotjim closed 6 years ago

jimmynotjim commented 6 years ago

Update the script to only remove the left and right whitespace, leaving the top and bottom white space and the path sizes intact.

jimmynotjim commented 6 years ago

@Scotchester Don't forget to drop a comment in here with the Ai script when you get a chance.

Scotchester commented 6 years ago

Here's the final script we arrived at:

#target illustrator
#targetengine main

var doc = app.activeDocument;
var artboard = doc.artboards[0];
var art = doc.pageItems[0];
var coordinates = art.position;
var desiredW = art.width;

art.position = [ 0, coordinates[1] ];
artboard.artboardRect = [
  artboard.artboardRect[0],
  artboard.artboardRect[1],
  desiredW,
  artboard.artboardRect[3]
];

Note: This script requires that all of the art in the Illustrator document be collected together in a single group.