Iterating over notes in selection Segev Schaap • Feb 3, 2022 - 11:07 Hello, How can I iterate over notes in a selection? Reply Comments jeetee • Feb 3, 2022 - 11:40 for (var element in curScore.selection.elements) { // check element.type for notes } Reply Segev Schaap • Feb 3, 2022 - 12:55 In reply to for (var element in curScore… by jeetee Thank you Reply
jeetee • Feb 3, 2022 - 11:40 for (var element in curScore.selection.elements) { // check element.type for notes } Reply
Segev Schaap • Feb 3, 2022 - 12:55 In reply to for (var element in curScore… by jeetee Thank you Reply
Comments
for (var element in curScore.selection.elements) {
// check element.type for notes
}
In reply to for (var element in curScore… by jeetee
Thank you