<div dir="ltr">So one must manually define each MMR it seems (meanwhile defining/re-defining) what an MMR is (which is probably pretty easy to screw up).<div><br></div><div>My outline would be to parse each measure, check if measure is empty, if so, add it to some table and keep doing this until a measure with notes / double bar line / tempo alteration is reached and get the high / low values of the table and use that to define an MMR.  I think I can do most of that easily.</div><div><br></div><div>So to create MMR in all parts, I have to parse each part with a switchto / switch back.  Iterate through each measure of each part, through each note entry of each measure and use maybe IsNote() in FCNoteEntry class to do that logic.  Currently, I'm having trouble getting to FCNoteEntry.  Here's my code:</div><div><br></div><div><div>local parts = finale.FCParts()</div><div>parts:LoadAll()</div><div>for p in each(parts) do  </div><div><span class="" style="white-space:pre">     </span>p:SwitchTo()</div><div><span class="" style="white-space:pre">       </span>local measures = finale.FCMeasures()</div><div><span class="" style="white-space:pre">       </span>measures:LoadAll()</div><div><span class="" style="white-space:pre"> </span>for m in each(measures) do</div><div><span class="" style="white-space:pre">         </span>local noteEntry = finale.FCNoteEntry() -- error</div><div>   end</div><div>   </div><div><span class="" style="white-space:pre"> </span>p:SwitchBack()    </div><div>end</div></div><div><br></div><div>Every example / sample I can find only seems to deal with NoteEntry from finenv.Region() not something like measures:LoadAll(). How do I get to FCNoteEntry from m in each(measures)?  Thanks.</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 5, 2015 at 9:28 AM, Jari Williamsson <span dir="ltr"><<a href="mailto:jari.williamsson@mailbox.swipnet.se" target="_blank">jari.williamsson@mailbox.swipnet.se</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Joseph,<br>
<br>
Look at the detailed info for the FCMultiMeasureRest class. That should provide the info you need. Let me know if this doesn't work for you.<br>
<br>
<br>
Best regards,<br>
<br>
Jari Williamsson<div><div class="h5"><br>
<br>
<br>
On 2015-05-05 16:09, Joseph Weidinger wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
How do you perform the equivalent for "multimeasure rests --- > create"<br>
? The FCMultiMeasureRest(s) seem like they alter the appearence of<br>
multimeasure rests but don't necessarily have methods to "create" them.<br>
FCMeasure contains a BreakMMRest but I can't find anything that creates.<br>
<br>
Unfortunately it isn't in FCUI / MenuCommand either.<br>
<br>
<br></div></div>
_______________________________________________<br>
JWLua mailing list<br>
<a href="mailto:JWLua@jwmusic.nu" target="_blank">JWLua@jwmusic.nu</a><br>
<a href="http://jwmusic.nu/mailman/listinfo/jwlua_jwmusic.nu" target="_blank">http://jwmusic.nu/mailman/listinfo/jwlua_jwmusic.nu</a><br>
<br>
</blockquote>
<br>
<br>
<br>
_______________________________________________<br>
JWLua mailing list<br>
<a href="mailto:JWLua@jwmusic.nu" target="_blank">JWLua@jwmusic.nu</a><br>
<a href="http://jwmusic.nu/mailman/listinfo/jwlua_jwmusic.nu" target="_blank">http://jwmusic.nu/mailman/listinfo/jwlua_jwmusic.nu</a><br>
</blockquote></div><br></div>