Posted June 28, 20204 yr Hi, Why does the first example work and the second don't, what am I missing? Thanks! (setf eins '((q d4 e4 fs4 gs4) (q d4 e4 fs4 gs4) (q d4 e4 fs4 gs4))) (unfold 'om '((pause 2)) eins) => ((q d4 e4 fs4 gs4) (-w) (q d4 e4 fs4 gs4)) (unfold 'om '((pause 2 2)) eins) => ((q d4 e4 fs4 gs4) (q d4 mf e4 fs4 gs4) (q d4 e4 fs4 gs4))
June 28, 20204 yr Author I want instead of the second note in the second bar a pause, accordingly to how it works with transposition..? (unfold 'om '((t1 2 2)) eins) => ((q d4 e4 fs4 gs4) (q d4 mf f4 fs4 gs4) (q d4 e4 fs4 gs4))
June 29, 20204 yr Author Apologies for being so persistent- I'd really like to know how to handle that..
June 29, 20204 yr Dear Ole, The pause (gen-pause) works only on entire bar. But I will have a look what I can do.
June 29, 20204 yr The fix is very simple. Unfold Set OM.lisp pause (nil (gen-pause x)) the NIL here should be :length pause (:length (gen-pause x)) The next update will include the fix.
June 29, 20204 yr Author Sorry, but it does not work here 😞 I changed it in my own Unfold Set.lisp definition (which is a renamed copy of Unfold Set OM.lisp and where I can modify things to my needs) Also I noticed that when I use the transposition function that I posted above, the unfold function puts a mf before the note that get transposed, is that on purpose? And one last thing, when I evaluate (unfold.. ) for the first time it always gives me an error warning that my Unfold Set file does not exist, when I evaluate it again everything works fine..? unfold, set: os methods: ((t1 2 2)) > Error: There is no method set named: os > While executing: %get-unfold-set, in process Listener-1(7). > Type cmd-. to abort, cmd-\ for a list of available restarts. > Type :? for other options.
June 29, 20204 yr Author As I wrote its the Unfold Set OM.lisp file, just copied& renamed& placed in that folder and I've got the error when I first evaluate unfold. And can you say something to the mf that gets added, when using t1?
March 3, 20214 yr On 6/29/2020 at 3:43 PM, o_e said: As I wrote its the Unfold Set OM.lisp file, just copied& renamed& placed in that folder and I've got the error when I first evaluate unfold. And can you say something to the mf that gets added, when using t1? Fixed in 2.1.26252
Create an account or sign in to comment