View Single Post
Hi Rob-

Thanks for the pointer, but I think OmniOutliner handles things a bit differently. AFAIK, there isn't any "link" attribute to a style in OO3.

I have gotten a bit farther on my own, very crude, this snippet will write the text, but the file name isn't recognized:

Code:
set f1 to POSIX file "/Users/cturner/Desktop/212 project list.txt"

tell application "OmniOutliner Professional"
  tell document 1
    tell row 1
      tell cell 2
        tell text 1
          make new text attachment with properties {file name:f1, text:"deadbeef"} at after word 5
        end tell
      end tell
    end tell
  end tell
end tell
So, still looking for knowledge!

Thanks again, Charles