This content has been marked as final.
Show 4 replies
-
1. Re: Photoshop Actions and Batch Processing Snafu
csuebele Nov 21, 2013 7:58 AM (in response to Ernstinen)If you're using Photoshop CC, the actions now are conditional, so you can rotate some just based on the orientation. If not, then you need to create a script to do that.
-
2. Re: Photoshop Actions and Batch Processing Snafu
JJMack Nov 22, 2013 4:04 AM (in response to Ernstinen)Use RotatePortrait.jsx script in your action find that in this package will work in all versions of Photoshop.
- Crafting Actions Package UPDATED Aug 14, 2012 Changed AspectRatioSelection Plug-in script added Path support.
ContainsExample
Download- Action Actions Palette Tips.txt
- Action Creation Guidelines.txt
- Action Dealing with Image Size.txt
- Action Enhanced via Scripted Photoshop Functions.txt
- CraftedActions.atn Sample Action set includes an example Watermarking action
- Sample Actions.txt Photoshop CraftedActions set saved as a text file.
- 12 Scripts for actions
Its a simple script more or less a one liner.
/* <javascriptresource> <about>$$$/JavaScripts/RotatePortrait/About=JJMack's Rotate Portrait.^r^rCopyright 2009 Mouseprints.^r^rScript utility for action.^rNOTE:Rotate Portrait to Landscape!</about> <category>JJMack's Action Utility</category> </javascriptresource> */ Rotate(); function Rotate() { // validate that a document is open if (documents.length < 1) { alert("No Open Document!"); return; } var orig_ruler_units = app.preferences.rulerUnits; app.preferences.rulerUnits = Units.PIXELS; // Rotate portrait to landscape orientation if (activeDocument.height > activeDocument.width) activeDocument.rotateCanvas(90); // Reset units to original settings app.preferences.rulerUnits = orig_ruler_units; } - Crafting Actions Package UPDATED Aug 14, 2012 Changed AspectRatioSelection Plug-in script added Path support.
-
3. Re: Photoshop Actions and Batch Processing Snafu
Ernstinen Nov 22, 2013 7:03 AM (in response to JJMack)Thanks csuebele and JJMack--I'll give the scripts a try today and let you know.
-
4. Re: Photoshop Actions and Batch Processing Snafu
Ernstinen Nov 22, 2013 11:50 AM (in response to Ernstinen)The script worked PERFECTLY, JJMack--thanks a ton and have a good weekend!


