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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @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