Re: Changing color: black notes become red
Seems like a good use for JScript:
/*
NWC2 User Tool, Ver 1.01 - Rick G.
Purpose: remove all color from selection
&Command: WScript Scripts\rg_ZapColor.js
*/
var io = WScript.StdIn.ReadAll().split("\r\n");
for (var j = 1; j < io.length; j++)
if (/^\|[CNR]/.test(io[j]))
io[j] = io[j].replace(/!\d/g, "");
WScript.StdOut.Write(io.join("\r\n").replace(/\|Color:\d(?=\||$)/gm, ""));
This will remove color from all objects, not just those with noteheads.