Skip to content

Instantly share code, notes, and snippets.

@monokano
Created May 14, 2024 01:17
Show Gist options
  • Save monokano/3db30b142727a33619218ae3724df257 to your computer and use it in GitHub Desktop.
Save monokano/3db30b142727a33619218ae3724df257 to your computer and use it in GitHub Desktop.
inddの合成フォントを全削除するスクリプト
var doc = app.activeDocument;
var compFonts = doc.compositeFonts;
for (var i=compFonts.length-1; i>0; i--) {
compFonts[i].remove();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment