<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
Jari,<br>
<br>
FCNoteEntryCell:SetFindHidden doesn't seem to affect the search of
hidden notes.<br>
It doesn't matter if I set it to true or false, it both times also
returns hidden notes in the search.<br>
<br>
Test document attached and script below.<br>
<img src="cid:part1.F71B1AE8.6CAD17AC@angermueller.com" alt=""><br>
It should return measure pos 0 (i.e. where the visible note is), but
it returns 2048.<br>
<br>
Best,<br>
Jan<br>
<br>
local
noteentrycell=finale.FCNoteEntryCell(1,1)
<br>
noteentrycell:Load()<br>
noteentrycell:SetFindHidden(false)<br>
noteentrycell:SetFindVisible(true)<br>
local closestnoteentry=noteentrycell:FindClosestPos(2048)<br>
print(closestnoteentry.Measure,closestnoteentry.MeasurePos,closestnoteentry.Visible)<br>
<br>
Running [Unnamed Script] ======><br>
1 2048 false<br>
<======= [Unnamed Script] succeeded (Processing time: 0.000 s).<br>
<br>
<br>
</body>
</html>