[JW Lua] Change articulation defs sample script
Jari Williamsson
jari.williamsson at mailbox.swipnet.se
Thu Aug 8 17:25:44 CEST 2013
Hello All!
Here's a sample script that will work in the next beta build (it changes
all staccato dot articulation definitions in Maestro to use Jazz instead).
---
articdefs = finale.FCArticulationDefs()
articdefs:LoadAll()
for a in each(articdefs) do
if a.MainSymbolFont == "Maestro" and a.MainSymbolChar == 46 then
a.MainSymbolFont = "Jazz"
a:Save()
end
if a.FlippedSymbolFont == "Maestro" and a.FlippedSymbolChar == 46 then
a.FlippedSymbolFont = "Jazz"
a:Save()
end
end
---
Best regards,
Jari Williamsson
More information about the JWLua
mailing list