The Omni Group Forums

The Omni Group Forums (http://forums.omnigroup.com/index.php)
-   OmniPlan General (http://forums.omnigroup.com/forumdisplay.php?f=37)
-   -   Omniplan & attachments (http://forums.omnigroup.com/showthread.php?t=16635)

Francois 2010-06-30 02:54 AM

Omniplan & attachments
 
Hi all,

I'm using omniplan for a conference I'll attend and for which I need to plan many tasks, and above all, the ressources (equipments and m aterials) I'll bring with me. So I'm using outliner to do a checklist, that I have attached to my omniplan file.

I'm wondering if there is an option to automatically open the attachments in a omniplan file, so that I can't forget to uptade the checklist when I update my omniplan file.

Hope it's clear to you...
Bests

Francois

skwirl 2010-07-13 08:10 AM

I think that's clear... so you want OmniPlan to automatically open linked attachments when you first open the plan so that you don't forget to look the attachments, is that correct?

whpalmer4 2010-07-13 02:01 PM

One workaround would be to use an Applescript to open your OmniPlan file and attachments. If you copy and paste the code below into the Applescript Editor (found in the Utilities folder of your Applications folder), edit the path in the first open statement to point to your file, and save it as an application, you can just launch the application you made, and it will open that document in OmniPlan and open all of the attachments in the document.

[code]
tell application id "com.omnigroup.omniplan"

open "Users:YourNameHere:Desktop:Sample OmniPlan document.omniplan"

repeat with thisOne in every attachment of front document
open thisOne
end repeat

repeat with thisOne in every task of front document
try
tell thisOne
open every attachment
end tell
end try
end repeat

repeat with thisOne in every resource of front document
try
tell thisOne
open every attachment
end tell
end try
end repeat

end tell
[/code]


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

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