Opening images at 50%
I wonder if it is possible to set the default for images opening to 50%. Photoshop 2022, Windows 10.
Many thanks in anticipation.
I wonder if it is possible to set the default for images opening to 50%. Photoshop 2022, Windows 10.
Many thanks in anticipation.
50% what?
I'm guessing view zoom size of 50% – 1:2...
An action set to view 100%, then zoom out twice (insert menu item command, not record):

The action would be automatically run from the Script Events Manager whenever an image the open event is triggered:
https://prepression.blogspot.com/2021/10/photoshop-script-events-manager.html
Here it is in a scripted form:
/* https://community.adobe.com/t5/photoshop-ecosystem-discussions/image-view/m-p/10650951 */
setZoom(50); // as percent
function setZoom(zoom) {
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.