<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Jari,<br>
    <br>
    FCStaff(Base).ShowStaffLines always works with an inverted value, so
    it behaves like its name would be "HideStaffLines".<br>
    Sample code below. It sets ShowStaffLines to true on every staff.<br>
    But after running the plugin all stafflines are invisible, instead
    of (still) visible.<br>
    When I set it to false, they become visible again.<br>
    <br>
    Best,<br>
    Jan<br>
    <br>
    <br>
    local staves=finale.FCStaves()<br>
    staves:LoadAll()<br>
    for s in each(staves) do<br>
        s.ShowStaffLines=true<br>
        print(s.ShowStaffLines) <br>
        s:Save() <br>
    end
  </body>
</html>