Created
March 4, 2017 03:34
-
-
Save stormxuwz/49b8e9b6ec2398bfc94d2f1c770608ef to your computer and use it in GitHub Desktop.
oo.scpt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- LaunchBar Action Script | |
-- apple script to append launchbar input to the last line of omnioutliner | |
on handle_string(_string) | |
tell application "OmniOutliner 4.6.1" | |
set theDocument to the front document | |
set newRow to make new row at last row of front document | |
set topic of newRow to _string | |
outdent newRow | |
save theDocument | |
end tell | |
end handle_string | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment