Skip to content

Instantly share code, notes, and snippets.

@greatestview
Last active November 28, 2019 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greatestview/380593dd0e31c0f7dbed7ae6c2a6fef2 to your computer and use it in GitHub Desktop.
Save greatestview/380593dd0e31c0f7dbed7ae6c2a6fef2 to your computer and use it in GitHub Desktop.
Allow 100% pixel view in Adobe Indesign. More information in this blog post: https://greatestview.de/pixelgenaues-arbeiten-mit-indesign-oder-photoshop-vs-indesign-vs-fireworks/
/**
* @author Kim-Christian Meyer <kim.meyer@palasthotel.de>
* @modified 2015-06-15
* @see https://forums.adobe.com/message/4385273#4385273
*/
try {
app.generalPreferences.customMonitorPpi = 72;
app.generalPreferences.useCustomMonitorResolution = true;
// undo via
// app.generalPreferences.useCustomMonitorResolution = false;
}
catch (e) {
alert(e);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment