The Omni Group
These forums are now read-only. Please visit our new forums to participate in discussion. A new account will be required to post in the new forums. For more info on the switch, see this post. Thank you!

Go Back   The Omni Group Forums > OmniOutliner > OmniOutliner for iPad
FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
OmniOutliner to OmniFocus inbox? Thread Tools Search this Thread Display Modes
Not a power user here....

Is there a way to send a line of information from OOiP (or OOiM) to OF inbox? I understand there's no elegant simple way to sync OO yet and that's not what I'm asking about. I use OO to brainstorm and organize ideas and projects and eventually end up with actionable items that I want to appear in OF.

How do I do that?
 
Not only is that a no, but you cannot even copy and paste text out of OO. Send a request to the support ninjas please.
 
I've emailed the Ninjas about this issue and also told them you can send tasks from other Notebook type apps, eg Notebooks by Alfons Schmid allows you to send a note to OmniFocus to create as a task.

I really hope there will be better integration between the Omni apps.

Can you really not even copy and paste to the clipboard out of OO ??
 
Quote:
Originally Posted by mobelby View Post
I really hope there will be better integration between the Omni apps.
+1. In general I wish more apps integrated well with each other but surely Omni would want to make it easy to use all their apps in conjunction with each other, right?
 
Quote:
Originally Posted by mobelby View Post
I've emailed the Ninjas about this issue and also told them you can send tasks from other Notebook type apps, eg Notebooks by Alfons Schmid allows you to send a note to OmniFocus to create as a task.

I really hope there will be better integration between the Omni apps.

Can you really not even copy and paste to the clipboard out of OO ??
I have Notebook. The ability to copy data to OF is crippled as well. What happens is that it puts the file information in the action field and the text in the note field - not very helpful and my gripe about the Clip-o-tron in general.

Here is an applescript that I wrote that takes each item highlighted in OmniOutliner and then puts it into a new action in the quick entry window. You then add the contexts and projects and you are good or you can just hit save and it keeps it in your Inbox for later processing.

Put this in your scripts folder for OmniOutliner Pro and it will show up in the scripts menu when you are running OO. If you have FastScripts installed, you can even assign a hot key to it.

Works well and better than the Clip-o-tron anyhow because you can, for instance, highlight all the action items you care about at one time and they are copied to the Quick Entry box.

This is what the Clip-o-tron ought to be, IMO. I've already put in a feature requests to the Ninjas to change the thing so that the text you highlight is in the action and file information is in the note.

J.

Code:
tell front document of application "OmniOutliner Professional"
	-- set theDoc to front document
	--set columnCount to count of columns of theDoc
	
	set theList to the selected rows
	set theCount to (count of selected rows)
	if theCount < 1 then
		display dialog "You need to select at least one row to use this script." buttons "Cancel" default button "Cancel"
	end if
	
	-- go through each selected row in OmniOutliner and then create a corresponding
	-- action in the quick entry box of OF
	
	set actionText to ""
	repeat with i from 1 to theCount
		
		
		set actionText to (get topic of item i of selected rows)
		
		-- create a new action in Omnifocus QuickEntry window
		
		tell application "OmniFocus"
			-- create new action
			tell quick entry
				open
				set NewTask to make new inbox task with properties {name:actionText}
			end tell
		end tell
	end repeat
end tell
 
The Clip-o-tron *only* does email. You're talking about the clipping feature, and neither clipping nor Clip-o-tron are relevant for someone trying to go from OmniOutliner for iPad to OmniFocus for iPad...
 
Quote:
Originally Posted by whpalmer4 View Post
The Clip-o-tron *only* does email. You're talking about the clipping feature, and neither clipping nor Clip-o-tron are relevant for someone trying to go from OmniOutliner for iPad to OmniFocus for iPad...
Indeed. Omni apps should work together as seamlessly as possible on the iPad. I'll go ahead and assume that this is their intent for the future. I'm not even going to email a request to the support ninjas because better integration should be part of the inherent roadmap for omni products on the iPad.
 
Quote:
Originally Posted by whpalmer4 View Post
The Clip-o-tron *only* does email. You're talking about the clipping feature, and neither clipping nor Clip-o-tron are relevant for someone trying to go from OmniOutliner for iPad to OmniFocus for iPad...
no, it will do other things (try it). it's just that it puts the filename in the action and the selected text in the note field - backwards from how I would think most people would want to use it.

Either way, the applescript above works quite well to get items from OO into corresponding actions in OF.

j.
 
The clip-o-tron is only for email. The clipping function does the rest, as was explained in this thread.
 
Quote:
Originally Posted by JohnJ80 View Post
I have Notebook. The ability to copy data to OF is crippled as well. What happens is that it puts the file information in the action field and the text in the note field - not very helpful and my gripe about the Clip-o-tron in general.

Here is an applescript that I wrote that takes each item highlighted in OmniOutliner and then puts it into a new action in the quick entry window. You then add the contexts and projects and you are good or you can just hit save and it keeps it in your Inbox for later processing.

Put this in your scripts folder for OmniOutliner Pro and it will show up in the scripts menu when you are running OO. If you have FastScripts installed, you can even assign a hot key to it.

Works well and better than the Clip-o-tron anyhow because you can, for instance, highlight all the action items you care about at one time and they are copied to the Quick Entry box.

This is what the Clip-o-tron ought to be, IMO. I've already put in a feature requests to the Ninjas to change the thing so that the text you highlight is in the action and file information is in the note.

J.

Code:
tell front document of application "OmniOutliner Professional"
	-- set theDoc to front document
	--set columnCount to count of columns of theDoc
	
	set theList to the selected rows
	set theCount to (count of selected rows)
	if theCount < 1 then
		display dialog "You need to select at least one row to use this script." buttons "Cancel" default button "Cancel"
	end if
	
	-- go through each selected row in OmniOutliner and then create a corresponding
	-- action in the quick entry box of OF
	
	set actionText to ""
	repeat with i from 1 to theCount
		
		
		set actionText to (get topic of item i of selected rows)
		
		-- create a new action in Omnifocus QuickEntry window
		
		tell application "OmniFocus"
			-- create new action
			tell quick entry
				open
				set NewTask to make new inbox task with properties {name:actionText}
			end tell
		end tell
	end repeat
end tell
I love omni products, though I am not a huge nerd when it comes to this more complicated stuff. How/Where do I input the script information to transfer the info from OOutline to OFocus?

Please break it down step by step.

Most appreciative!

Thank you!
 
 


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
omnifocus:/// url for Inbox? smarsh OmniFocus Extras 6 2011-04-11 03:30 PM
Omnioutliner and omnifocus Orisons OmniOutliner 3 for Mac 0 2010-07-30 03:36 PM
Service menu's Send to Inbox gives an Error with OmniOutliner adam.sindelar OmniOutliner 3 for Mac 0 2009-05-12 12:55 AM
OmniFocus and OmniOutliner steve OmniFocus 1 for Mac 6 2008-10-31 11:14 AM
OmniFocus vs OmniOutliner egentz OmniFocus 1 for Mac 7 2008-08-27 11:36 PM


All times are GMT -8. The time now is 02:12 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.