views:

761

answers:

3

I have a program that works with a variety of files on both the Windows and Mac OS.

I would like to give the user the option of adding a new option to their right click/control click context menu to the effect of "Compress with [Name of App]".

I know this is quite possible in Windows with modifications to the registry, but is there a way to achieve this for the Mac? Perhaps using C++ or objective C?

Even simply knowing if it is at all possible would be great so I don't spend a long while barking up a tree that doesn't exist!

Thanks!

A: 

well, can't say how, but I know it is possible as quite a few 3rd party programs do this on my mac.

JoeG
+5  A: 

Here's a guide: Writing Contextual Menu Plugins for OS X, part 1

pix0r
And the best part it is based on COM. LOL!
Byron Whitlock
Thanks a lot for that, I will check it out!
joshcomley
+4  A: 

Yes, you can. You need to make a contextual menu plugin. Apple has contextual menu plugin sample code on its developer site.

Chuck
That's super - again thanks a lot I will investigate this option too
joshcomley