<?xml version="1.0"?>
<Denemo>
  <merge>
    <title>A Denemo Keymap</title>
    <author>AT, JRR, RTS</author>
    <map>
      <row>
        <action>TransposeSelection</action>
        <scheme>;;;;;;;;; Get an interval from user and transpose selection
(if (not (defined? 'Transpose::init))
    (d-InitializeScript CurrentScript))
(if (not (defined? 'Transpose::Interval))
	(define  Transpose::Interval "c d"))
(Transpose::SetTransposeInterval  (d-GetUserInput "Transposition - Instructions" 
				     "Enter a note, a space, and the note you wish this to transpose to" Transpose::Interval))
(ApplyToSelection "(Transpose::TransposeNote)" "(d-GoToMark)")
</scheme>
        <label>Transpose Selection</label>
        <tooltip>Opens a dialog to get an interval, then transposes by that interval.</tooltip>
      </row>
    </map>
  </merge>
</Denemo>
