Skip to content

Instantly share code, notes, and snippets.

@ChewingPencils
ChewingPencils / of2nv.scpt
Created October 21, 2012 22:39
Creates an NVAlT note from an OmniFocus Task
--
-- Created by: Sean Korzdorfer
-- Created on: 06/08/12 17:05:27
-- This script incudes code from an example posted by Rob Trew
-- String Library can be obtained at:
-- http://applescript.bratis-lover.net/library/string/
-- Any line which contains a path needs to be edited for the users environment
-- NB: this could easily be edited to append.
@gfontenot
gfontenot / Create OF Tasks.applescript
Created October 12, 2011 16:38
Send selected lines in BBEdit to OmniFocus
tell application "BBEdit"
set _sel to the selection
set _lines to lines in selection
set tasks_added to {}
repeat with _line in _lines
if length of _line is not 0 then
my makeOFTask(_line as text)
set end of tasks_added to _line as text
end if
end repeat