Posted April 14, 20241 yr How can I display a score compiled like this (compile-score '((<def-score-name> :start 1 :end 90))) with display-musicxml? This gives an error: (display-musicxml (compile-score '((<def-score-name> :start 1 :end 90)))) Any idea? Achim
April 15, 20241 yr (progn (compile-score '((<name> :start 1 :end 90))) (audition-musicxml-last-score) ) or (display-musicxml (compile-score '((<name> :start 1 :end 90)) :output :musicxml)) You don't need to use compile-score, you could add the :start 1 and :end 90 into the def-score: (def-score name (:key-signature 'chromatic :time-signature ’(4 4) :tempo 60 :start 1 :end 90 :layout (piano-layout 'rhand 'lhand)) (rhand :omn rh :port 0 :channel 1 :sound 'gm :program 'acoustic-grand-piano) (lhand :omn lh))
Create an account or sign in to comment