Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. tell application "OmniOutliner"
  2.     tell front document
  3.         --set _link to rich text of second cell of first row
  4.         repeat with _link in rich text of second cell of every row
  5.             tell application "OmniFocus"
  6.                 tell default document
  7.                     set _task to make new inbox task
  8.                     set name of _task to (_link as string)
  9.                     set note of _task to (_link as string)
  10.                 end tell
  11.             end tell
  12.         end repeat
  13.     end tell
  14. end tell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement