Skip to content

Instantly share code, notes, and snippets.

@web-crab
Created March 22, 2019 14:04
Show Gist options
  • Save web-crab/12d699d00996887dcd82f2dd8807f815 to your computer and use it in GitHub Desktop.
Save web-crab/12d699d00996887dcd82f2dd8807f815 to your computer and use it in GitHub Desktop.
var names = ['John Doe'];
for (var i = 0; i < names.length; i++) {
app.activeDocument.activeLayer.textItem.contents = names[i];
app.activeDocument.saveAs(
new File('~/Desktop/' + names[i] + '.tif'), 10),
new TiffSaveOptions(),
true
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment