<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Rob,<br>
<br>
This is what it wants:<br>
<br>
init :output (:lilypond :view t);<br>
part 1 :name "Piano" :instr :piano;<br>
(note 1 :off 3 :dur 1 :note 67 :marks ((:textnote "sul G")));<br>
<br>
When you specify something like<br>
<br>
:marks :accent<br>
<br>
with no parenthesis at all--the parenthesis get added automatically,
but with<br>
<br>
:marks (:textnote "sul G")<br>
<br>
the program is confused because it isn't sure whether to parse it as
two separate marks or one mark together.  (Sure it's something the
program should be able to figure out--another feature addition for the
future...)<br>
<br>
The safe way to go would be:<br>
<br>
:marks ((:accent) (:textnote "sul G"))<br>
<br>
...using doubly nested parenthesis all the time, then there's no
ambiguity.<br>
<br>
-David<br>
<br>
<br>
Rob Canning wrote:
<blockquote cite="mid20060913153347.158EA4507E@common-lisp.net"
 type="cite">
  <pre wrap="">yes that works alright - thanks

so :text has to be associated with another mark - it cant just exist in its own right?
if that is the case i suppose once :ignore is implemented that will be a workaround - a bit messy though.

cheers,

rob

Kilian Sprotte <a class="moz-txt-link-rfc2396E" href="mailto:ml13@onlinehome.de"><ml13@onlinehome.de></a> wrote:

  </pre>
  <blockquote type="cite">
    <pre wrap="">Am 13.09.2006 um 14:44 schrieb Rob Canning:

    </pre>
    <blockquote type="cite">
      <pre wrap="">hi,

can't seem to get :textnote to work...

what am i doing wrong here?

init :output (:lilypond :view t);
part 1 :name "Piano" :instr :piano;
(note 1 :off 3 :dur 1 :note 67 :marks (:textnote "sul G"));

;; Formatting music...
;;; *****ERROR*****
;; Error in function FOMUS::CHECK-TYPE*:
;;    Found :TEXTNOTE, expected valid/unique mark in MARKS slot of  
note at offset 3.0
      </pre>
    </blockquote>
    <pre wrap="">Hi,

imagine you would also want to write an accent:

init :output (:lilypond :view t);
part 1 :name "Piano" :instr :piano;
(note 1 :off 3 :dur 1 :note 67 :marks (:accent (:textnote "sul G")));

Makes sense?

Cheers,

   Kilian


_______________________________________________
fomus-devel mailing list
<a class="moz-txt-link-abbreviated" href="mailto:fomus-devel@common-lisp.net">fomus-devel@common-lisp.net</a>
<a class="moz-txt-link-freetext" href="http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel">http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel</a>

    </pre>
  </blockquote>
  <pre wrap=""><!---->
--------------------------------
<a class="moz-txt-link-abbreviated" href="http://www.robcanning.utvinternet.com">www.robcanning.utvinternet.com</a>
+ 44 (0)20 77390206
--------------------------------

-----------------------------------------------------------------
Find the home of your dreams with eircom net property
Sign up for email alerts now <a class="moz-txt-link-freetext" href="http://www.eircom.net/propertyalerts">http://www.eircom.net/propertyalerts</a>


_______________________________________________
fomus-devel mailing list
<a class="moz-txt-link-abbreviated" href="mailto:fomus-devel@common-lisp.net">fomus-devel@common-lisp.net</a>
<a class="moz-txt-link-freetext" href="http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel">http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel</a>

  </pre>
</blockquote>
</body>
</html>