http://indesignsecrets.com/how-to-install-scripts-in-indesign.php
http://forums.adobe.com/thread/999905#thread-message-4385273
// Run this script when using InDesign for web/mobile/tablet comps | |
// Calculates zoom based on 72ppi, so 100% shows pixel-perfect sizing | |
app.generalPreferences.customMonitorPpi = 72; | |
app.generalPreferences.useCustomMonitorResolution = true; |
// Run this script to return InDesign to its normal zoom behavior | |
// of calculating 100% for print based on monitor's ppi | |
app.generalPreferences.useCustomMonitorResolution = false; |