-- Load the tuplet preferences local tupletprefs = finale.FCTupletPrefs() tupletprefs:Load(1) for e in eachentry(finenv.Region()) do -- Speed/memory optimization - only load tuplets if -- the "tuplet start flag" is set for the entry. if e.TupletStartFlag then -- Load all tuplets that starts on the note entry local tuplets = e:CreateTuplets() for tuplet in each(tuplets) do -- Change number/shape styles to what's in the preferences: tuplet.ShapeStyle = tupletprefs.ShapeStyle tuplet.NumberStyle = tupletprefs.NumberStyle -- Save tuplet tuplet:Save() end end end