The Omni Group Forums

The Omni Group Forums (http://forums.omnigroup.com/index.php)
-   OmniOutliner 3 for Mac (http://forums.omnigroup.com/forumdisplay.php?f=9)
-   -   Column Width (http://forums.omnigroup.com/showthread.php?t=15474)

Abadaxis 2010-03-02 06:09 PM

Column Width
 
Does anyone know how to set the column width?
I am a teacher and use OO for rosters, among other things. It would be nice to be able to set the grade columns to a specific width. What I'm doing now is just dragging them until they are about the right width.
Is there an easier way to do this?

whpalmer4 2010-03-02 09:37 PM

It sounds like you probably want to make similar documents over and over with the template facility. You make a "blank" document, get the settings the way you want them, then save as and choose "OmniOutliner 3 Template" as the file time (or just use Save As Template... if you have OmniOutliner Professional). Then whenever you need a grading sheet, or a class roster, or whatever you've made into templates, you open the template file and it makes you a new document based on the template.

As for setting the column width exactly, there is support in the Applescript dictionary for OmniOutliner to do that. The following script will prompt you for a value (in pixels) and set the width of all selected columns to that value. Is this better/easier than just dragging them all to be the right size? Depends on the severity of one's OCD, I think :-)

[code]
property defaultWidth : 100 -- default width, in pixels

tell application "OmniOutliner Professional"
tell front document
display dialog "Desired column width (in pixels)?" default answer defaultWidth buttons {"Cancel", "OK"} default button 2
set width of selected columns to (the text returned of the result) as integer
end tell
end tell
[/code]


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

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