I have way to much sludge in my "Services" menu and so don't even use
them. But I'd like to. First in the process is to thin it down by
80%. How to do this? Is this what Alfred does? Is it worth the
effort for this one feature? I can't really figure out what the heck
Alfred is anyway...
Also, is there a utility/operation that will allow me to select
multiple files and jam a word or words into their "Spotlight Comments"
field. I assume this field is part of the meta-data that Spotlight
uses in it's searches.

Signature
Thank you and have a nice day.
Neill Massello - 10 May 2005 19:37 GMT
> I have way to much sludge in my "Services" menu and so don't even use
> them. But I'd like to. First in the process is to thin it down by
> 80%. How to do this? Is this what Alfred does? Is it worth the
> effort for this one feature? I can't really figure out what the heck
> Alfred is anyway...
IIRC, Alfred functions like the old Extensions Manager control panel or
like the current preference pane Diablotin
(<http://s.sudre.free.fr/Software/Diablotin.html>). Neither edits the
Services menu. For that, you want Services Manager
<http://www.blacktree.com/apps/servicemanager/index.html>. It works in
Panther, but I don't know about Tiger.
matt neuburg - 10 May 2005 19:40 GMT
> I have way to much sludge in my "Services" menu and so don't even use
> them. But I'd like to. First in the process is to thin it down by
> 80%. How to do this?
It's a major problem. The only way to do it is to modify the plists
inside the apps that are supplying these services. Do you really want to
do that? If so, use the Service Manager pref pane from Blacktree (this
is all explained in my Customizing Panther / Tiger ebooks).
> Also, is there a utility/operation that will allow me to select
> multiple files and jam a word or words into their "Spotlight Comments"
> field. I assume this field is part of the meta-data that Spotlight
> uses in it's searches.
Yes, I just saw something like this on versiontracker in the last day or
two. m.

Signature
matt neuburg, phd = matt@tidbits.com, http://www.tidbits.com/matt/
Tiger - http://www.takecontrolbooks.com/tiger-customizing.html
AppleScript - http://www.amazon.com/exec/obidos/ASIN/0596005571
Read TidBITS! It's free and smart. http://www.tidbits.com
Gregory Weston - 10 May 2005 22:34 GMT
> I have way to much sludge in my "Services" menu and so don't even use
> them. But I'd like to. First in the process is to thin it down by
[quoted text clipped - 6 lines]
> field. I assume this field is part of the meta-data that Spotlight
> uses in it's searches.
Here's an AppleScript droplet:
on open inFiles
-- Undo newsreader wrapping in next line.
set theReply to display dialog "Enter the text to store as a
comment." default answer ""
if the button returned of theReply is "Cancel" then return
set theNewText to the text returned of the theReply
repeat with theFile in inFiles
tell application "Finder"
set theOldComment to comment of theFile
if theOldComment = "" then
set theNewComment to theNewText
else
-- Note newline in this string
set theNewComment to theOldComment & "
" & theNewText
end if
set comment of theFile to theNewComment
end tell
end repeat
end open

Signature
There's nothing quite like the joy of first hearing an Alvin & the Chipmunks
cover of Pink Floyd's "The Final Cut." "Not Now John" is especially sublime.