Answered
Image View
Is there a way when I have the image/photo open in photoshop to change the view size setting. it's at 16.3% I would like to keep it at 25%, especially when I crop.
Thank you!
Is there a way when I have the image/photo open in photoshop to change the view size setting. it's at 16.3% I would like to keep it at 25%, especially when I crop.
Thank you!
You can use the Script Event-Manager and this script...
setZoom( 25);
function setZoom( zoom ) {// as percent
cTID = function(s) { return app.charIDToTypeID(s); }; // from xbytor
var docRes = activeDocument.resolution;
activeDocument.resizeImage( undefined, undefined, 72/(zoom/100), ResampleMethod.NONE );
var desc = new ActionDescriptor();
var ref = new ActionReference();
ref.putEnumerated( cTID( "Mn " ), cTID( "MnIt" ), cTID( 'PrnS' ) );
desc.putReference( cTID( "null" ), ref );
executeAction( cTID( "slct" ), desc, DialogModes.NO );
activeDocument.resizeImage( undefined, undefined, docRes, ResampleMethod.NONE );
}Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.