<div dir="ltr"><div><br></div>Hi Jari et al,<br><br><div>I try to change the left and top margins of a system after the measure that has a double barline.<br></div><div>How should I load the right system after the measure with the double barline?<br>
</div><div><br><br>allmeasures = finale.FCMeasures()<br>allmeasures:LoadAll()<br>for measure in each(allmeasures) do<br>    if measure.Barline == finale.BARLINE_DOUBLE then<br>       print ("Double barline found in measure ", measure.ItemNo)<br>
       local ss = finale.FCStaffSystem()<br>        ss:Load(measure + 1)<br>        ss.TopMargin = (80)<br>        ss.LeftMargin = (40)<br>        ss:Save()<br>end<br><br>finale.FCStaffSystems.UpdateFullLayout()<br>end<br>
<br></div><div>Thanks very much!<br><br></div><div>Herbert<br></div></div>