<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Jari,<br>
    <br>
    it's not possible anymore to have a music region that starts and
    ends at the same position.<br>
    It worked fine until v0.49. When the end measure pos is set to the
    start measure pos, the start measure now automatically resets to
    zero.<br>
    <br>
    Code snippet:<br>
    local musicregion=finale.FCMusicRegion()<br>
    musicregion.StartSlot=1<br>
    musicregion.EndSlot=1<br>
    musicregion.StartMeasure=2<br>
    musicregion.EndMeasure=2<br>
    musicregion.StartMeasurePos=0<br>
    musicregion.EndMeasurePos=0<br>
    print(musicregion.StartMeasure)<br>
    <br>
    Running [Unnamed Script] ======><br>
    0            --> should print 2 (worked fine until v0.49)<br>
    <======= [Unnamed Script] succeeded (Processing time: 0.000 s).<br>
    <br>
    Best,<br>
    Jan<br>
  </body>
</html>