<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.28.1">
</HEAD>
<BODY>
You can also just give an explicit time signature like this:<BR>
<BR>
send &quot;fms:meas&quot;, timesig: {5 8}<BR>
<BR>
fomus then uses `timesig' and `beat' to figure out the duration of the measure.&nbsp; In this case, though, it's probably be easier to pass a `dur' and `timesig-den' value (`timesig-den' and `beat' could also be set globally when you do `sprout').<BR>
<BR>
On Tue, 2009-12-29 at 12:13 -0600, Heinrich Taube wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
ok i guess you use the timesig-den setting for measures  to force the  
timsig demnom.
this version does what you want:


define process quint(durs)
   run for d in durs
     for n from 60
     send &quot;fms:meas&quot;, dur: d, beat: 1/8, timesig-den: 8

     send &quot;fms:note&quot;, part: &quot;pno&quot;, dur: d, pitch: n
     print &quot;here!&quot;
     wait d
   end



</PRE>
</BLOCKQUOTE>
<BR>
</BODY>
</HTML>