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 3 for Mac
FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
What is the shortcut to goto last item of the list? Thread Tools Search this Thread Display Modes
Hi,

Currently I am maintaining three long lists and I expand / collapse each of these lists via cmd+0 and cmd+9. Whenever I expand a list, I find that the cursor is at the beginning of the list and I have to go down the list one item at a time using down arrow or use mouse. Does OmniOutliner have a shortcut to go directly to the last item of a list if you are anywhere at the top / middle of the list?

Regards,
Ravi
 
You could use something like FastScripts or Keyboard Maestro to assign a keystroke to an Applescript of this general shape:

Code:
tell application id "OOut"
	try
		tell first selected row of front document
			set expanded to true
			select last child
		end tell
	end try
end tell
 
Or, more generally (to also allow for jumping from the middle of a row to the end, for example):

Code:
tell application id "OOut"
	try
		set oParent to first selected row of front document
		if not (has subtopics of oParent) then set oParent to parent of oParent
		tell oParent
			if its class is row then set expanded to true
			select last child
		end tell
	end try
end tell
 
 


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Shortcut to convert an inbox item into a project? gabrielito OmniFocus 1 for Mac 11 2012-08-09 01:56 AM
Shortcut to go to Top of Note of an item petonic OmniFocus 1 for Mac 2 2011-10-11 11:14 AM
Shortcut to move cursor to end of last item? rogbar OmniOutliner 3 for Mac 1 2009-08-07 10:10 AM
Keyboard shortcut for selecting an item from a list yogarama OmniOutliner 3 for Mac 1 2008-07-17 09:20 AM


All times are GMT -8. The time now is 06:00 AM.


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