Copying phrases in Musescore
I have a phrase that I would like to copy in my composition, but then to repeat it in either half time and / or double time. Is this possible to do within musecore or will I have to rewrite it out manually?
I have a phrase that I would like to copy in my composition, but then to repeat it in either half time and / or double time. Is this possible to do within musecore or will I have to rewrite it out manually?
Do you still have an unanswered question? Please log in first to post your question.
Comments
You could try the plugins https://musescore.org/en/project/doubletimev20 and https://musescore.org/en/project/halftimev20. There have been reports of them crashing though.
I hope they hurry up and make it easier to find plugins on this site.
In reply to I hope they hurry up and make by mike320
Will come with the upcoming site update
In reply to Will come with the upcoming by Jojo-Schmitz
That's what I heard. Just a question about the plugins being reported to crash. I did a little playing around with programming in C years ago, but I never saw === in any code. Does this parse to something like a=a==b like a*=b is the same as a=a*b. If so, why would you want to use it like that in the onRun: subroutine. I don't see how this could ever be true.
In reply to That's what I heard. Just a by mike320
It is a Java script thing I believe, checking on same type. See for http://www.c-point.com/javascript_tutorial/jsgrpComparison.htm
== is equality, === is identity
In reply to That's what I heard. Just a by mike320
=== operator asks with "AND": is value AND data type same?
x=2;
x=="2" (return true) // some automatic data conversion between.
x==="2" (return false) // no data conversion.