Re: Illustrator 9 Spot to Process
Re: Illustrator 9 Spot to Process
- Subject: Re: Illustrator 9 Spot to Process
- From: Shane Stanley <email@hidden>
- Date: Thu, 20 Dec 2001 08:53:29 +1100
On 20/12/01 7:27 AM +1000, Barry Long, email@hidden, wrote:
>
I have received a large library of Illustrator files, all of which contain
>
20 to 40 spot colors that need to be converted to process. I can't find an
>
operator that will simply change the color to process without having to
>
enter exact CMYK percentages. Anyone have any idea?
This will convert all spot colors into non-global process colors:
tell application "Adobe Illustrator 10"
tell document 1
repeat with i from 1 to count of swatches
if "[None]" name of swatch i then
set theColor to color of swatch i
if class of theColor is spot color info then
set theSpot to spot of theColor
set proColor to color of theSpot
set color of swatch i to proColor
delete theSpot
end if
end if
end repeat
end tell
end tell
--
Shane Stanley, email@hidden