Photoshop Script - Merging spot channels !!! help please***

:wink:

Hello again does anybody know the script that tells photoshop to merge spot channels…

I am currently trying to find this action …

its for images that have 6 channels (CMYK + 2 Spot Channels)…
I have managed to find a lovely script from a guy on here which worked a treat but i now need a script that will tell photoshop to merge all spot channels - thus giving me a file just in CMYK…

any ideas would be appreciated… or suggestions

thanks marc:cool:

Here’s a quickie (not sure what version of Photoshop you’re running but this should work):


tell document 1 of application "Adobe Photoshop CS2" to merge (every channel whose kind is spot color channel)

or something even sexier :smiley: . (oooo. user choices!)


tell document 1 of application "Adobe Photoshop CS2"
	if button returned of (display dialog "Photoshop Spot Channel Remover" & return & "Copyright 2007 BLUEFROG" with icon 1 buttons {"All", "Select", "Cancel"}) = "Select" then
		try
			merge (channel ((choose from list ((name of every channel whose kind is spot color channel) as list) with prompt "Choose your Spot Channel:") as Unicode text))
		end try
	else
		merge (every channel whose kind is spot color channel)
	end if
end tell

(Note the extra little bit of coolness… it uses the Photoshop icon!) :cool:

This could easily be rerigged to process multiple documents.

Have fun.

Jim Neumann
BLUEFROG

:lol:

cheers
Blue Frog - Thats the DOG’s Ballis…

Big Thanks…

Once Again…:rolleyes: