![]() |
| |||||||
| Photoshop Scripting Learning and sharing for all platforms |
| | Thread Tools |
|
#1
| |||
| |||
| Droplet to clear channels/paths Hi guys, I'm looking to create a droplet that clears excess channels and paths left in a PSD or Tiff file. Doesn't need to remove masks, just duplicate colour channels used to make masks originally, or paths. Where on earth do I start trying to achieve this? Cheers. |
|
#2
| ||||
| ||||
| Re: Droplet to clear channels/paths First of all you'll need a script to remove both channels and paths. Something like this: Code: #target photoshop app.bringToFront(); var theImage = app.activeDocument; theImage.pathItems.removeAll(); theImage.channels.removeAll(); Now create a new action, run the script while recording and stop the action. Chose "File"-"Automate"-"Create Droplet" and chose your settings. That should work :-). |
|
#3
| |||
| |||
| Re: Droplet to clear channels/paths Works perfectly, thank you sir! |
| Thread Tools | |
| |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Removing clear tape | htown | Photo Restoration | 2 | 11-21-2009 01:31 PM |
| clear photo of lens moisture | suji | Photo Retouching | 4 | 12-23-2007 04:17 AM |
| help with making a droplet | domromer | Photoshop Help | 11 | 04-29-2007 04:29 PM |
| Photographing clear glass jars | Dakota | Input/Output/Workflow | 5 | 12-01-2004 12:26 PM |
| How to create clear thumbnails? | Mona | RP Tutorials | 3 | 09-06-2004 02:29 AM |