denemo-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Denemo-devel] Lyric Tie


From: Richard Shann
Subject: Re: [Denemo-devel] Lyric Tie
Date: Thu, 02 Feb 2017 09:05:43 +0000

On Wed, 2017-02-01 at 22:38 +0100, Andreas Schneider wrote:
> Am 01.02.2017 um 22:31 schrieb Joe Wilkinson:
> > Thank you Andreas. I had found it; just not sure as to the best way of
> > explaining it and you have covered that.
> > 
> > I am not sure why they are grouped as they are in the menus though.
> > 
> > -- and __ under Melismata and
> > 
> > ~ and - under Lyric tie.
> > 
> > Perhaps you know.
> 
> Actually I have no idea. We have to ask the person who programmed it.

I think that's me, I've just been playing around with them, and I can
see there are different sorts of effects, but how they should be
described I don't know.

They are extremely simple scripts e.g. InsertMelismata is this

(let ((choice (RadioBoxMenu (cons (_ "Split Word") " -- ") (cons (_ "Extend 
Word") " __ "))))
 (if choice
    (begin
        (d-InsertTextInVerse choice)
        (d-SetSaved #f))))


Of which the only interesting bit is 
 (cons (_ "Split Word") " -- ") (cons (_ "Extend Word") " __ ")

which if you choose "Split Word" will insert " -- " and if you choose "Extend 
Word" will insert " __ "

So can anyone correct the wording of this (and the label and tooltip of this 
command if needed)?

And likewise InsertLyricTie offers

 (cons (_ "Printing") "~") (cons (_ "Non Printing") "_")

Are these right?

Richard






reply via email to

[Prev in Thread] Current Thread [Next in Thread]