I find that visual distraction is reduced by hiding bullets during certain modes of writing.
At other stages it's slightly clearer to see them.
FWIW, the following toggles bullet display at the document level (but does not override any locally applied styles).
--
At other stages it's slightly clearer to see them.
FWIW, the following toggles bullet display at the document level (but does not override any locally applied styles).
Code:
tell application "OmniOutliner Professional" set cBulletState to "item-handle-mode(com.omnigroup.OmniOutliner)" set cStateOne to "hover" set cStateTwo to "always" tell style of front document set oAttrib to attribute cBulletState if (value of oAttrib = cStateOne) then set value of oAttrib to cStateTwo else set value of oAttrib to cStateOne end if end tell end tell
--