Skip to main content
Topic: Cool but I don't get user tools (Read 15755 times) previous topic - next topic

Cool but I don't get user tools

User tools looks like the macro system we've been looking for, but I have no idea how to get started.  Can you give some examples?

Re: Cool but I don't get user tools

Reply #1
Yeah it's my post.  I don't know why I put Preview 1b in the "name." (doh!)

Re: Cool but I don't get user tools

Reply #2
I'm missing something, Francis.  What user tools?

Re: Cool but I don't get user tools

Reply #3
Some examples will be forthcoming. For example, I am working on an example Retrograde script that uses PHP.

The concept is really pretty simple. The complexity is in the execution of the concept. Custom commands can be written to process NWC2 clipboard text. Custom commands should accept NWC2 clipboard text as its input, and the command output should be the clipboard text that NWC2 will use to replace the selection. The process is similar to a clipboard operation:

  • Edit, Copy some notation in NWC2
  • Paste it into a text processor
  • Change the text in some way
  • Select and copy it from the text editor
  • Paste it back into NWC2
NWC2 custom user tools can do basically the same thing, but in an automated fashion (no manual copy and paste operations).

There are no preconfigured user tools. Tools will have to be added/configured by the user. Instructions will be coming shortly with the examples.

Re: Cool but I don't get user tools

Reply #4
Sounds very useful, Eric.

I don't recall if I've put this suggestion forward before, but another nice enhancement would be the ability to block out one or more measures in two or more adjacent systems, then perform one operation affecting all the highlighted areas.

Re: Cool but I don't get user tools

Reply #5
Well I get the concept at least . . . I'll wait for the examples, then.
Sincerely,
Francis Beaumier
Green Bay, WI

Re: Cool but I don't get user tools

Reply #6
I downloaded the new version last night, but haven't had a chance to look at the new features. Is there any sort of API for the clip, or do we just get the text? If the latter, then the API I've been developing to handle NWC clips might be of some use after all.

RObin

Re: Cool but I don't get user tools

Reply #7
There is not any strict API published. The actual notation constructs can be ciphered fairly quickly through copy and paste.

There is a fairly easy way to parse the NWC2 clip text generically with most script languages, but it isn't always worth the additional overhead. For example, my retrograde script does it mostly through brute force analysis of the text as it scans through it.

Perhaps you could send me some additional details by e-mail on what you are doing...you could also wait and see what develops in our examples.

Re: Cool but I don't get user tools

Reply #8
I missed the announcement of version 1b and didn't twig to it until seeing the last message above. I don't normally check news or check for web updates, because most of the time there's nothing new.  Suggestion - a message in the forum to alert us, as has been done in the past.

When installing this update, my system hung.  That's because I access the forum by opening the program and going in through the help menu (Go to Noteworthy Forum), rather than using my extremely long list of browser favourites.

If the install menu said to close existing NWC sessions before installing, I missed it.  Suggestion - IF it's not already there, make sure the user is advised to close open sessions.  Some of us will easily figure out the problem, others will have trouble.

Re: Cool but I don't get user tools

Reply #9
The first user tool can be found in the User Tools section.

Re: Cool but I don't get user tools

Reply #10
Hi Eric,

Thanks for the link.

What does "to retrograde selected notation" mean?

I couldn't install it to see if it explained it, because I haven't yet installed the PHP script. Does that have to be installed in the root of C: or can it be placed in my NWC2 folder which is two or three layers down from the root?

Re: Cool but I don't get user tools

Reply #11
For that matter, does the computer need an internal server with PHP?

Re: Cool but I don't get user tools

Reply #12
In musical terms, retrograde generally means reversal of a performance (turning it around backwards).

If you are not a web developer, you can safely ignore everything to do with web servers during the PHP install. In fact, you could just unzip the PHP zip package into a dedicated folder, then manually locate that folder when installing the retrograde script.

PHP prides itself as a web scripting tool, and contains a fair amount of technical language that can be confusing to the average user (not interested in web or other programming). For this reason, we should have some tool variations based on other languages available soon.

I wouldn't recommend installing PHP underneath NWC. Give it a place of its own.

Re: Cool but I don't get user tools

Reply #13
You can also try an online version of this tool right from our web site. It uses the manual clipboard copy and paste approach to retrograde selected notation.

Re: Cool but I don't get user tools

Reply #14
Not sure if I need it, but what a cool tool!  Thanks, Eric, it's magic.

Re: Cool but I don't get user tools

Reply #15
Wow, that IS cool!
Will there be a link to it from somewhere other than this thread?

Re: Cool but I don't get user tools

Reply #16
A Retrograde script tool would be extremely useful for composers of serial music and similar types.
In twelve-tone music, a "row" is constructed using all twelve pitches of the chromatic scale in a seemingly random order.  The row may also be used backward (Retrograde) or "upside-down" (Inversion) or backward and upside-down (Retrograde Inversion).  So now I'm waiting for the Inversion script tool...

Re: Cool but I don't get user tools

Reply #17
I'm jealous! Actually, I DO have PHP (and Perl, etc.) installed under the Abyss web server on my own laptop. Not that I know how to use them... But alas, not having my own stuff handy, I can only read about it.

Re: Cool but I don't get user tools

Reply #18
The retrograde installer now includes a prebuilt version of PHP that you can use. It installs within the NWC2 program folder, so it will be uninstalled automatically if you ever remove NWC2 from your system.

See nwc2/usertools for details.

 

Re: Cool but I don't get user tools

Reply #19
I was able to get the latest NWC2 yesterday, so I could have a look. The PHP user tools (so far) reminds me of the time I called up the "Java Console" in some application, and was similarly presented with a text-entry area. Not knowing Java...

Presumably, the intent is to allow sharing of user-created scripts, or something like that? PHP does not look very hard to learn.