Dropbox has the option of adding a button to the Finder toolbar. It even appears in the 'Customize Toolbar...' window.   I can't find any documentation on how this sort of thing is done.... Does anyone know how to do this, or can anyone point me towards some documentation or sample code?

EDIT ONE:

I guess a start would be finding the location of the existing icons, and any related code.

I noticed that Dropbox has files in Library/DropboxHelperTools/Dropbox_u501 called mach_inject_bundle_stub.bundle and FinderLoadBundle which might be doing the magic. Dropbox is also putting the 'tick' badge on Finder icons. This code might be involved: github.com/rentzsch/mach_star

EDIT TWO: A Dropbox talk by Rian Hunter about the process is here, at around 15:30 http://blip.tv/pycon-us-videos-2009-2010-2011/pycon-2011-how-dropbox-did-it-and-how-python-helped-4896698

Looking in the DropboxBundle file in the Dropbox_u501 shows the icons and some compiled code. The code suggests that Rian Hunter is the author: http://twitter.com/timeserena

Rian has his own version of the Mach Star code on his github - https://github.com/rianhunter/mach_star - tho it seems much older

EDIT THREE

There was a 'Code Injection Workshop' at Stanford a few weeks ago - http://stanfordacm.com/past/ - hosted by Rian. If anyone has notes from this please let me know!

link|improve this question

74% accept rate
possible duplicate of How to Write OS X Finder plugin – Brad Larson Dec 21 '11 at 21:38
feedback

1 Answer

up vote 3 down vote accepted

Dropbox is using undocumented magic. There's no officially supported way to do this; the closest you can get without reverse engineering is Services.

link|improve this answer
3  
And the closest you can get to being a Finder toolbar item is to be an application that can open files and/or folders. Any such application can be added to a toolbar manually by the user (though it won't show up in Customize Toolbar). Time Machine is a good application to demonstrate this with. – Peter Hosey Dec 5 '11 at 5:51
Looking at the Dropbox files in Library, I think it might be some sort of mach_inject thing, which is beyond my understanding. But google points me to github.com/rentzsch/mach_star – cannyboy Dec 5 '11 at 11:56
@PeterHosey While drag and drop is possible, you can't achieve an pure styling that matches the native buttons without some sort of reverse engineering. The icons are generated from a series of transparent pngs, so even with well photoshopped icons, something will always feel amis. – faraz Mar 7 at 20:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.