The Omni Group Forums

The Omni Group Forums (http://forums.omnigroup.com/index.php)
-   OmniPlan General (http://forums.omnigroup.com/forumdisplay.php?f=37)
-   -   Hyperlinked tasks? (http://forums.omnigroup.com/showthread.php?t=9403)

jackjackjack 2008-08-14 07:10 PM

Hyperlinked tasks?
 
HI- just started checking out OmniPlan, wondering if there's a way to put a hyperlink in a task so that one can click on the task and bring up a webpage/site etc.?
There are various meeting notes online for a project I'm working on, and I'd like to link directly to them via the task bars in the Gantt chart I'm trying to create.

whpalmer4 2008-08-14 07:58 PM

Yes, if you edit the note for a task (<cmd>-' or Edit->Edit Note...) you can add a URL. If you type the URL text, you need to select it and ctrl-click to get the pop-up menu and choose Make Link to let the system know you want it to be a hot link, otherwise it will be treated as plain text.

jackjackjack 2008-08-15 08:13 AM

Hyperlinked tasks?
 
Awesome, thanks much!

Tom Bunch 2008-08-15 10:54 AM

When I saw your thread title I thought you wanted to hyperlink to tasks themselves. I thought I'd just pipe up that we support that, because I'll bet a lot of people missed it.

The task context menu includes a "Copy As Link" item. You can copy that link into the notes of another task and use it as a quick way to hop to an anchor or sorts elsewhere in the file.

-Tom

whpalmer4 2008-08-15 11:38 AM

[QUOTE=Tom Bunch;44872]When I saw your thread title I thought you wanted to hyperlink to tasks themselves. I thought I'd just pipe up that we support that, because I'll bet a lot of people missed it.
[/QUOTE]
I'd certainly missed that -- one of the hazards of a program you can use without reading the manual! Even cooler, I see that the links I get can be clipped into OmniFocus and OmniOutliner documents, even Safari does the right thing with them. As the links appear to work in both directions (I can put links to OmniFocus tasks in OmniPlan as well as vice versa), this feature plus the import/export support allows at least rudimentary integration so that I can plan big projects in OmniPlan and execute from OmniFocus. Thanks!

pslade 2008-08-21 10:34 AM

Hyperlinks
 
Hi,

There were some interesting things that I didn't realize in this thread. So, now I have some questions :)

When I right click on a task and choose 'Copy as link' I want to be able to actually embed this link in a web page (and populate the page by applescript).
I have not been able to see how the link is actually formatted, instead I just see the name and when I click it takes me to the right location. I am trying to figure out the format to use to create my own link. Any help would be appreciated.

Also, Is is possible to insert a link into the value of a custom field? We have a web based issue tracking system and it would be great to be able to have a hyperlink to the issue page directly out of the plan in a custom field.

Thanks!

Lizard 2008-08-21 12:36 PM

The link is something like this:
omniplan://localhost/Volumes/Leopard/Users/lizard/Desktop/foo.omniplan/task/3

More details in the OmniPlan help. (Search for "URL".)

pslade 2008-08-22 04:24 AM

That's great! Is there a way to do my other question and have the display of a custom field be a hyperlink?

Lizard 2008-08-22 08:56 AM

Not automatically. However, we use something like the following internally:

[CODE]
set BugURL to "http://bogusBugServer.com/"
tell front window of application "OmniPlan"
set MyTasks to selected tasks
set FirstTask to item 1 of MyTasks
set MyData to custom data of FirstTask

set MyBugID to missing value
try
set MyBugID to |bug id| of MyData
end try
if MyBugID is not missing value then
set BugURL to BugURL & MyBugID
end if
BugURL
end tell

tell application "OmniWeb"
GetURL BugURL
end tell
[/CODE]

In this example, you put the bug/issue id in a custom column named "bug id", and put the script in OmniPlan's toolbar. Then when you want to view the issue in the web browser, just select the task and click the toolbar button. (Obviously, you'll need to tweak it so it's creating the URLs the way you need them. And you can change the column from |bug id| to something else too.


All times are GMT -8. The time now is 03:45 PM.

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