NoteWorthy Composer Forum

Forums => General Discussion => Topic started by: Mazzltov on 2010-06-23 09:02 PM

Title: Changing color: black notes become red
Post by: Mazzltov on 2010-06-23 09:02 PM
Hi All,

Recently I get -after changing some notes- changing of color of a number of note heads: suddenly they have become red.
Normally the red color is only active while playing.
I have not the foggiest idea how to change them into black ones.
Maybe you?
Thanks in advance.

Sincerely,

Mazzltov.


Title: Re: Changing color: black notes become red
Post by: Randy Williams on 2010-06-23 09:13 PM
If just the noteheads are red (i.e. the stems are still black), then select all the red notes (or all the notes for that matter, via select all), and edit properties, and change the notehead color property for notes to default.  If the entire notes are red, select all the red ones, and then hit "\" (backslash) 7 times (until the color seems white, but turns black/blue when unhighlighted).  You probably just hit a "\" once accidently, changing the default color (#0) to red (#1) - "\" cycles the color through 8 colors, 0 to 7 with wraparound.
Title: Re: Changing color: black notes become red
Post by: Warren Porter on 2010-06-23 09:55 PM
Right click in an area to the right of the toolbars in an unused area, then click the box for "Notehead" which handles both the color and shape of the noteheads.

I've also hit the backslash by mistake.  Normally I don't need that toolbar but the first of a number of 16th notes is also a dotted half in a layered staff.  Making the shorter note a 'Blank Space' allows the hollow area of the longer note to be seen.

HTH
Title: Re: Changing color: black notes become red
Post by: Rick G. on 2010-06-25 01:31 PM
Recently I get -after changing some notes- changing of color of a number of note heads: suddenly they have become red.
I have not the foggiest idea how to change them into black ones.
As Randy says (https://forum.noteworthycomposer.com/?topic=7359.msg50896#msg50896), this is usually due to inadvertently pressing the backslash key.
To fix this:

To restore any colored noteheads to default:

If there are still objects that are the wrong color, change them under: Visibility Properties (http://ntworthy.com/nwc2/help/TAB_NTNPROPVISIBILITY.htm)

Given the way NWC operates, keeping 'Item Color Default' on some toolbar is important. If NWC starts adding unexpected color, the 'Item Color Default' button will indicate that NWC's default color state has changed.
Title: Re: Changing color: black notes become red
Post by: Randy Williams on 2010-06-25 07:16 PM
Attached is a simple user tool to restore all note and notehead colors to the default.
Title: Re: Changing color: black notes become red
Post by: Rick G. on 2010-06-25 10:56 PM
Seems like a good use for JScript:
Quote from: rg_ZapColor.js
/*
  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.