View Single Post
Quote:
Originally Posted by DerekM View Post
If you want to actually select all rows of a certain level, that's not an option of standard or pro. You could use a script to do this though.
tell application "OmniOutliner"
tell front document
select (every row where level = 1)
end tell
end tell

Or, what I ultimately wanted:

set note expanded of every row where level = 1 to false

Your AppleScript support is bliss. I'm used to dictionaries where writing "every" is just asking for trouble.