<?xml version="1.0"?>
<Denemo>
  <merge>
    <title>A Denemo Keymap</title>
    <author>AT, JRR, RTS</author>
    <map>
      <row>
        <action>MidiTempo</action>
        <scheme>;;; Tempo Change, Midi only.
(let ((DurationFromInput "1" ) (TempoFromInput "120"))
(set! DurationFromInput (d-GetOption (string-append "Quarter" stop "Dotted Quarter" stop)))
(set! TempoFromInput (d-GetUserInput "MidiTempo" "Please enter a tempo value" "120"))
(d-DirectivePut-standalone-minpixels "MidiTempo" 20)
(d-MoveCursorLeft)
(d-DirectivePut-standalone-override "MidiTempo" (logior DENEMO_OVERRIDE_TEMPO DENEMO_OVERRIDE_STEP))
;(format #t "The tempo is ~A~%ok" TempoFromInput)
;Calculate the dotted tempo but display the userone
(if (string-ci=? DurationFromInput "Dotted Quarter" )
  (d-DirectivePut-standalone-midibytes "MidiTempo" (number-&gt;string (* 1.5 (string-&gt;number TempoFromInput))))
  (d-DirectivePut-standalone-midibytes "MidiTempo" TempoFromInput)
)
(format #t "Displaying  ~A ~%" (string-append DurationFromInput " = "  TempoFromInput) )
(d-DirectivePut-standalone-display "MidiTempo" (string-append DurationFromInput " = "  TempoFromInput))
(d-DirectivePut-standalone-ty "MidiTempo" -20)
)

(d-RefreshDisplay)</scheme>
        <label>Set Tempo</label>
        <tooltip>Send a Midi command to change the tempo to a new bpm. No printout.</tooltip>
      </row>
    </map>
  </merge>
</Denemo>
