Skip to content

Instantly share code, notes, and snippets.

@monokano
Created March 25, 2021 01:58
Show Gist options
  • Save monokano/273ca346eed9f7b7018035019fd52cc5 to your computer and use it in GitHub Desktop.
Save monokano/273ca346eed9f7b7018035019fd52cc5 to your computer and use it in GitHub Desktop.
InDesignの「表示>校正設定>カスタム...」を「Dot Gain 15%」にする。
//#################################################################
// 校正設定 Dot Gain 15%.jsx
//
// InDesignの「表示>校正設定>カスタム...」を「Dot Gain 15%」にする。
//#################################################################
app.layoutWindows[0].properties =
{
proofingType : ProofingType.CUSTOM,
proofingProfile : "Dot Gain 15%",
overprintPreview : true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment