The Omni Group Forums

The Omni Group Forums (http://forums.omnigroup.com/index.php)
-   OmniFocus 1 for Mac (http://forums.omnigroup.com/forumdisplay.php?f=38)
-   -   filenames for aliases and/or linked files (http://forums.omnigroup.com/showthread.php?t=11091)

michel1984 2009-01-17 12:26 PM

filenames for aliases and/or linked files
 
i searched the forums and didn't find a satisfying answer to my question. what i want is that omnifocus includes the filename when i create an alias or embed a file in the notes of an action item.
there has to be a way for this. if not consider this as a feature request.

curt.clifton 2009-01-17 12:39 PM

That is not a way to do this currently. Use [URL="http://forums.omnigroup.com/showthread.php?t=3734"]Help --> Send Feedback[/URL] to submit your feature request.

gcrump 2009-01-19 10:01 AM

I agree, I would rather not have the icon show up. I'd rather have the filename appear like a hyperlink. I have submitted Feedback as well but wanted michel1984 to know there more than one who wants this.

Toadling 2009-01-21 12:13 PM

[QUOTE=gcrump;53926]I agree, I would rather not have the icon show up. I'd rather have the filename appear like a hyperlink.[/QUOTE]

How would you trigger Quick Look on attachments displayed only as a hyperlink without an icon? Or do you not use Quick Look?

Don't get me wrong; I'd really like to see filenames on attachments too. I already sent in feedback months ago. But I also don't want Omni Group to [I]replace[/I] the current icons with just a hyperlinked filename. In my opinion, that would be a step backward unless there was also some way to trigger Quick Look on them.

In fact, if I had a choice between (1) icons with no filename that are Quick Look-able and (2) conventional hyperlinked filenames with no Quick Look support, I'd definitely choose option (1).

-Dennis

Greg Jones 2009-01-21 02:17 PM

[QUOTE=Toadling;54025]How would you trigger Quick Look on attachments displayed only as a hyperlink without an icon? Or do you not use Quick Look?[/QUOTE]

One way to handle this would be with a Quick Look button, similar to how Mail allows you to Quick Look attachments from an email's header.

gcrump 2009-01-22 06:12 AM

[QUOTE=Toadling;54025]How would you trigger Quick Look on attachments displayed only as a hyperlink without an icon? Or do you not use Quick Look?

-Dennis[/QUOTE]

Ironically I never thought of using them for quick look. I was think of a preference option, display as Icon or hyperlink.

For those wanting something close to a hyperlink option with the help of iNik I coupled together these two scripts that you can put in automator. That way you can right click on the file and get the URL of it.

The first one just pastes the URL into the clipboard and then you can paste into the note. The second brings up the quick entry window and puts it into the note for you.

[CODE]on run {input, parameters}

tell application "Finder" to set the clipboard to (URL of (selection as alias) as string)
get (the clipboard)

return input
end run
[/CODE]

[CODE]
on run {input, parameters}

tell application "OmniFocus" to tell quick entry of default document
set xTask to ""
activate
tell application "Finder"
set xFileURL to (URL of (selection as alias) as string)
set xFileName to (name of (selection as alias) as string)
end tell
make new inbox task with properties {name:xFileName}
set xTask to result
tell note of xTask
make new paragraph at end of paragraphs with data " " & (xFileName) & ": " & (xFileURL)
end tell
end tell
return input
end run
[/CODE]

While these won't open the file they will at least bring you to them, then you can open them or quicklook them.

George

schlossmann 2011-04-16 12:18 PM

[QUOTE=michel1984;53876]i searched the forums and didn't find a satisfying answer to my question. what i want is that omnifocus includes the filename when i create an alias or embed a file in the notes of an action item.
there has to be a way for this. if not consider this as a feature request.[/QUOTE]

I dont understand the answers to this questions. Is it possible by now, to show the filenames of linked/embeddes files? Thank you for feedback!


All times are GMT -8. The time now is 08:42 PM.

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