Re: which template has been used?
Reply #4 –
Guido,
If you were meticulous in the past and all your scores have the target information in the "SongInfo" field (which is shown by CTRL-I), then you can create a list for all NWC-files (in the current folder) with the following command line in a cmd-box.
FOR %I in (*.nwc) DO ( echo %I : & "C:\Program Files (x86)\Noteworthy Software\NoteWorthy Composer 2\nwc-conv.exe" "%I" NWCTXT | findstr SongInfo ) >> c:\temp\SongInfo.txt
You can, of course, replace "SongInfo" with your own description. Be aware that the text is case sensitive, and blanks can be nasty.
Bart