Re: [fomus-devel] musicxml-finale output?

now i get this: ;;; *****ERROR***** ;; Error in function LOAD-FOMUS-PLUGIN: ;; Plugin MUSICXML-FINAL is not registered or does not exist i notice that the plugin folder inside the fomus folder is empty? is this me doing something wrong or somthing missing in fomus? thanks rob David Psenicka <dpsenick@uiuc.edu> wrote:
Rob Canning wrote:
how do i output a musicxml-finale file?
this is what i'm trying:
init :output (:lilypond :view t); init :output (:musicxml-finale :filename "fomusxxxmmmmlll");
if you're specifying two values for :output, then one will override the other----try this if you want both outputs:
init :filename "/dir/xxxxx" ;; basename init :output (:musicxml-finale (:lilypond :view t))
you should get /dir/xxxxx.xml and /dir/xxxxx.ly
or this:
init :filename "/dir/xxxxx" init :output ((:musicxml-finale :filename "anotherfilename.xml") (:lilypond :view t))
you should ge t /dir/anotherfilename.xml and /dir/xxxxx.ly _______________________________________________ fomus-devel mailing list fomus-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel
-------------------------------- www.robcanning.utvinternet.com + 44 (0)20 77390206 -------------------------------- ----------------------------------------------------------------- Find the home of your dreams with eircom net property Sign up for email alerts now http://www.eircom.net/propertyalerts
participants (1)
-
Rob Canning