<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=utf-8"><meta name=Generator content="Microsoft Word 15 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
span.EmailStyle22
        {mso-style-type:personal-reply;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=EN-US link=blue vlink=purple style='word-wrap:break-word'><div class=WordSection1><p class=MsoNormal>OK I have figured it out. The key clue came from Jan, who pointed out that this is set using FCSmartShapeSegment. Until now, I had ignored that class altogether because I assumed it was only relevant for SmartShapes that span multiples measures or systems. <o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>This code, on its own, may be enough. All it does is drag back the right-end of each hairpin by 60 units. Luckily, the source material I am working with is voluminous (600 conductor scores and probably more to come) but simple. I don’t think any hairpins span more than one bar, anywhere. I will try to make it more sophisticated so that it only adjusts hairpins that end at the end of a bar, but even that may be over-doing it.<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>For some reason I did not have to use the “SetCustom” stuff at all.<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>musicregion = finale.FCMusicRegion()<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>musicregion:SetFullDocument()<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>local marks = finale.FCSmartShapeMeasureMarks()<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>marks:LoadAllForRegion(musicregion, true)<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>for mark in each(marks) do<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>    local smartshape = mark:CreateSmartShape()<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>    if smartshape:IsHairpin() then<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>        local segment = smartshape:GetTerminateSegmentRight()<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>        segment:SetEndpointOffsetX(-60)<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>        smartshape:Save()<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'>    end<o:p></o:p></span></p><p class=MsoNormal><span style='color:#C55A11;mso-style-textfill-fill-color:#C55A11;mso-style-textfill-fill-alpha:100.0%'> end<o:p></o:p></span></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>Something like this would help end the pain for the large number of Finale users (judging from a Google search) who seem to be frustrated by these collisions between hairpins and group barlines.<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>Martin<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p></div></body></html>