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

 
Can I temporarily hide a column? Thread Tools Search this Thread Display Modes
I have an outline with several columns, and sometimes I'd like to hide the columns. Is there a way to do this? If not, please consider adding this to 4.0.
 
It is possible to toggle the visibility of columns with an Applescript, which you could place in the toolbar.

Something along the lines of:

Code:
tell application "OmniOutliner Professional"
	set intWidth to 80 -- Adjust this value
	
	tell document of front window
		repeat with iWin from 3 to count of columns
			if width of column iWin ≥ intWidth then
				set width of column iWin to 0
			else
				set width of column iWin to intWidth
			end if
			
		end repeat
	end tell
	
end tell
 
 


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I hide the templates? rogbar OmniOutliner for iPad 2 2012-02-28 06:56 PM
hide column summary in specific rows? jlgerber OmniOutliner 3 for Mac 1 2012-02-13 01:53 PM
Paste from Word Column to OO Column jhlindstrom OmniOutliner 3 for Mac 1 2011-02-10 03:05 PM
Hide check-boxes on some rows, in checkbox column dariusdunlap OmniOutliner 3 for Mac 0 2010-01-26 02:22 PM
Hide Until barrettj OmniFocus 1 for Mac 3 2008-09-17 03:48 PM


All times are GMT -8. The time now is 06:11 PM.


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