<div dir="ltr">I am making a script that makes new measure number regions.  It was going great until I started to change the position with:<div><br></div><div>SetStartAlignment()<br></div><div>SetStartJustification()<br></div><div>SetMultiMeasureAlignment()<br></div><div>SetMultiMeasureJustification()<br></div><div><br></div><div>The documentation seems weird to me ( <a href="http://www.finaletips.nu/frameworkref/group__lua__classes.html#ga934c898f4ebbf7cbca683e424c641462">http://www.finaletips.nu/frameworkref/group__lua__classes.html#ga934c898f4ebbf7cbca683e424c641462</a> ).  I gathered it needed a number argument and based on a table I saw in your PDK, it looks like 0 should be Left, 1 should be Center, 2 should be Right.  However, the actual order is not Left Center Right but Left Right Center. Furthermore, passing these numbers into SetStartAlignment() and SetMuliMeasureAlignment() don't affect it at all. It simply defaults to Left every time.</div><div><br></div><div>Another way of seeing it based on my experiments:</div><div><div>start</div><div>0 0 left left</div><div>1 1 left right</div><div>2 2 left center</div><div><br></div><div>multimeasure</div><div>0 0 left left</div><div>1 1 left right</div><div>2 2 left center</div></div><div><br></div><div>So to summarize, it seems no number passed into SetStartAlignment or SetMultiMeasureAlignment (and presumably SetMultipleAlignment) changes the value to anything other than left.  Am I missing something...?</div></div>