Last year I timed myself editing a batch of 60 product photos for a client. Same adjustments on every single image: levels correction, a curves layer, some sharpening, export at 1200px wide for web. I finished in about 40 minutes. My colleague doing the same job manually took most of a day. The difference wasn’t skill. It was that I had an action built for exactly that job, and he was clicking through the same 12 steps sixty times by hand.

If you’re still doing that, this article is for you.

What an Action Actually Does (and Why That Matters)

A Photoshop action is a recorded sequence of commands stored in a panel. When you play it back, Photoshop executes every step in the same order, with the same settings, as fast as it can process them. But here’s the part most tutorials skip: actions record state, not intent. That means if you record an action while your canvas is 3000px wide, and then you run it on a 500px image, any pixel-specific moves, like a Gaussian blur set to 8 pixels, will not scale automatically. The blur will still run at 8 pixels, which on a small image will look completely different.

This is why understanding what you’re recording matters more than just hitting the record button and hoping for the best.

Recording Your First Useful Action (Not a Toy One)

Open the Actions panel: Window > Actions. Create a new set first, then a new action inside it. Name it something specific. “Sharpening v1” beats “Action 1” every time, and you’ll thank yourself in six months.

Here’s a real-world action worth building right now. It’s what I call a “web export prep” and I use a version of it constantly.

Start recording. Then do this in order:

  1. Flatten the image (Layer > Flatten Image)
  2. Convert to sRGB: Edit > Convert to Profile > sRGB IEC61966-2.1
  3. Add a Smart Sharpen filter: Filter > Sharpen > Smart Sharpen, Amount 85%, Radius 0.8px, Reduce Noise 10%
  4. Image > Image Size, set to 1200px wide, resolution 72, Resample: Bicubic Sharper (reduction)
  5. File > Export > Export As, JPEG, Quality 80

Stop recording. That action just turned a 10-click, 2-minute process into a single button press. Run it on 200 images using File > Automate > Batch, point it at a folder, and walk away.

The Smart Sharpen settings above are deliberately conservative. At 85% Amount and 0.8px Radius, you’re compensating for the slight softening that happens during downsampling without introducing halos on high-contrast edges. If you’re sharpening for print instead, bump the Radius to 1.2px and the Amount to 110%.

Building a Library That Doesn’t Turn Into a Mess

I keep over 400 custom actions organized into sets, and the organization system is, admittedly, a little unusual. I sort them by the mood or color palette of the project rather than by function. My coworkers find it baffling. But the point is: have a system, whatever it is, because a flat list of 400 actions with names like “New Action 47” is completely useless.

A more sensible approach for most people: organize by task type. Sets named Retouching, Color Grading, Export, Compositing, and Cleanup will cover 90% of what you do. Within each set, use version numbers in the action name. “Frequency Separation v3” tells you that you’ve refined this process before and this is the current best version.

Export your sets regularly: select the set, click the panel menu, choose Save Actions. Store those .atn files in a backup folder. I’ve seen people lose months of action-building work because they assumed Photoshop preferences would survive a system migration. They don’t always.

Where Batch Processing Changes the Math

Once you have a reliable action, Batch processing is where the time savings become dramatic. File > Automate > Batch opens a dialog that lets you choose a source folder, a destination folder, and how to handle file naming.

The setting most people miss is “Suppress File Open Options Dialogs” and “Suppress Color Profile Warnings.” Check both. Without them, Batch will stop and wait for your input on every single file that has a profile mismatch or a special format dialog, which defeats the entire point.

For a folder of 200 RAW files, a Batch action doing the web export prep I described above takes roughly 8 to 12 minutes on a modern machine. The same work by hand, even for a fast editor, is 3 to 4 hours. That’s not a workflow improvement. That’s a different job.

The Limits of Actions (and When to Use Droplets Instead)

Actions break down when your workflow requires judgment calls in the middle. If you need to mask a subject, check a specific layer, or make a decision based on how the image actually looks, a fully automated action isn’t the right tool. Don’t try to automate things that require eyes.

For actions you run constantly, consider converting them to Droplets: File > Automate > Create Droplet. A Droplet is a small application that sits on your desktop. Drag a folder of images onto it and the action runs automatically, no panels to open, no menus to navigate. I have a Droplet for client delivery exports that I’ve been using in some form since 2014. It has probably saved me 60 or 70 hours over that time, conservatively.

When I started teaching Photoshop more seriously, one of the first things I noticed was that intermediate students knew a lot about tools but almost nothing about workflow. They could retouch a portrait beautifully and then spend 20 minutes doing the same export steps they’d done a hundred times before. Teaching someone to record a single export action was often the most immediately useful thing I could show them.

The single best habit you can build in Photoshop is this: the second time you do something the same way twice, record it as an action. Not the tenth time. The second.