% SL Script to control PDF generation, converts Spot colors to other Spot colors % PStillPro 1.72.14 or newer needed % PStill Control Script to control Spot color takeover, renaming and recoloring spot colors % Be sure to turn on option -m Xspot so spots are used in the output and no process conversion % happens (or use the respective option in the GUI) % if defined ps_map_spotcolor(....) is called for every spot color in the input % name is the string value of the spot color (its name) % cyan, magenta, yellow, black, tone are floating point values [0.0 - 1.0] define ps_map_spotcolor (name, cyan, magenta, yellow, black, tone) { % Check the name for "GrapefruitColor" if (strcmp(name,"GrapefruitColor") == 0) { % Name match, we set to something else setMapSpotColor("Red3422",0.0,1.0,1.0,0.0,tone); } }