Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

123
votes
16answers
49k views

Open terminal here in Mac OS finder

Is there something similar to the "Open Command Window Here" Windows Powertoy for Mac OS? I've found a couple plugins through a google search but wanted to see what works best for developers out ...
12
votes
5answers
7k views

How to Write OS X Finder plugin

I'm looking for a guide or sample code for writing Mac OS X Finder plugins? It would like to know how to do some simple actions: adding image overlayers to icons adding context menu items listen to ...
7
votes
2answers
395 views

DAO pattern and the Open-Closed Principle

I've seen and worked with a lot of older, JDBC-based DAO code that usually start out with CRUD methods. My question relates specifically to the retrieval methods, or 'finders'. Typically what I find ...
7
votes
2answers
239 views

FLOSS that implements badging and contextual menu in Snow Leopard's Finder

Apparently with Snow Leopard, due to rewrite of Finder in Cocoa and removal of Contextual Menu Plugins, it is no longer trivial to do either badging nor contextual menus, however Dropbox seems to both ...
7
votes
1answer
245 views

Has any program used .DS_Store (or the like) for something useful?

There is a lot of talk about how to exclude, ignore, or delete .DS_Store files on macs. It seems these small files contain data about folders that is used by Finder: ...
6
votes
7answers
9k views

How does the DropBox Mac client work?

I've been looking at the DropBox Mac client and I'm currently researching implementing a similar interface for a different service. How exactly do they interface with finder like this? I highly ...
5
votes
0answers
164 views

Howto add menu item to Mac OS Finder in Delphi XE2

I'm working on Delphi XE2 application targetting Mac OS and Windows. And I want to have integration into context menu. For windows this is simple task. But for Mac OS I dont know how to do this. I've ...
4
votes
4answers
875 views

How do I handle multiple file drag/drop from Finder in Mac OS X 10.5?

I need to get the URLs of all files dragged/dropped into my application from Finder. I have a Cocoa app running on 10.6 which does this by using the new 10.6 NSPasteboard APIs which handle multiple ...
4
votes
2answers
1k views

Adding badges to file icons in Finder

I'm working on a small project at home that would add a badge (aka icon overlay) to a specific file based on its state. Anyway, I've Googled the hell out of it and the only documentation I was able to ...
4
votes
1answer
903 views

how can i add a right click menu to finder

how can i add a custom view to the right click menu of every file in os x finder? e.g. i want to display the image if it is an image type and do some custom action etc. is this possible with c or ...
3
votes
2answers
50 views

How do I reveal a file as “selected” in *nix from the command line?

Is there a semi-universal mechanism by which to reveal files as selected in various *nix window managers via the command line? For example, in Windows I can say the following: explorer.exe ...
3
votes
4answers
577 views

How to write a Finder Plugin in Snow Leopard

Everywhere I look I see that writing a Finder Plugin in Snow Leopard is much easier than it was in Leopard. Can someone point me to some tutorial or simple code example I can download? I am trying to ...
3
votes
3answers
738 views

How does one relaunch Finder programmatically?

If I ALT+RIGHTCLICK on the Finder icon, I get a "Relaunch" option in the context menu. I would like to programmatically relaunch finder, if at all possible. I'm sure there is a better way to do it ...
3
votes
3answers
2k views

How to launch the default (native) application for a given file from Java?

I am displaying a list of files; i.e. xls, doc, pdf, odt etc., in my Java application (Eclipse RCP). When the user clicks on the file, I want to launch the appropriate (according to what the OS ...
2
votes
1answer
68 views

How to refresh finder window?

I want to refresh icon for particular file/folder in Finder application. FNNotifyByPath( (const UInt8 *)folderPath, kFNDirectoryModifiedMessage, kNilOptions ); FNNotifyByPath is not working for ...
2
votes
2answers
62 views

getting and setting mac file and folder finder labels from Python

I have been trying to find out how to get and set the colour of file labels from python. The closest thing I've found to a solution was this, but I can't seem to find the module macfile anywhere. Am ...
2
votes
1answer
199 views

Mac OSx: Injecting item to Finder's Context Menu

In 10.5, we have native support for context menu plugins. This allows us to add items on runtime, and adding different menus for different file types. But since 10.6 and higher, we have context menu ...
2
votes
2answers
107 views

Set Minimum width to 320px on Mac OSX

Is it possible to set a min width for an OSX window to 320px? The default min width in Safari is greater than this which makes it difficult to program with media queries and replicate on OSX. Please ...
2
votes
0answers
93 views

Context menu in OS X in icon view

I am trying to add context menu item to OSX Finder in Snow Leopard and Lion. I was able to find the method Finder calls when it is in File View. The method is addViewSpecificStuffToMenu. I was not ...
2
votes
1answer
217 views

“Open folder in Terminal” for Spotlight or Alfred

Is there any way in Spotlight to have a folder open in a Terminal window, either by providing an "Open in Terminal" option in search results, or (ideally) by holding down a key when selecting a ...
2
votes
2answers
233 views

svn returns “Invalid control character '0x0d' in path 'Icon\015'” when trying to add Mac custom icon file

I have a project that creates a disk image and would like to use a custom icon for the loaded volume. I have a .VolumeIcon.icns file that looks great, but to make Finder use it, I've had to include an ...
2
votes
1answer
199 views

How to make my application mount a sparse bundle without showing it in the Finder?

I am creating an application that has a bunch of files saved that are encrypted by using a sparse bundle, just like Time Machine does (my name is just a coincidence). I need to mount the sparse bundle ...
2
votes
1answer
537 views

How to mimic Finder left tree in cocoa app?

Hi I really like a look of left tree in Finder (Mac OS X >= 10.5). That with a blue background color and "DEVICES" and "PLACES" dropdowns. I'd like category view in my app to look the same. But since ...
2
votes
1answer
369 views

Programmatically add a folder to “Places” in Finder

I'm trying to figure out how to programatically add a folder to Finder's Places sidebar. I've seen ways to modify it through the Finder Preferences, but I've also seen some applications actually add ...
2
votes
3answers
355 views

Grails finding parent by the many side

My problem should be obvious, but I just don't see the light right now :-( I have two domainclasses like this: class Parent { String name static hasMany = [children: Child] } class Child { ...
2
votes
2answers
612 views

How to tell Finder to select/reveal multiple files in AppleScript

Using the following code: tell application "Finder" to reveal every item of theFiles Works when theFiles contains a single file, but when it contains multiple files, I get: error "Finder got an ...
2
votes
4answers
249 views

Trying to understand MVC Models, Advice?

I am writing my own MVC for the purpose of learning it. I have pretty much everything "down-pat" and my main stuff written besides models due to some trouble understanding them and lack of viable ...
2
votes
2answers
342 views

OSX: Why is GetProcessInformation() causing a segfault?

Here's my C method to get the pid of the Finder process. GetProcessInformation() is causing a segfault. Why? Here's the function: static OSStatus GetFinderPID(pid_t *pid) { ProcessSerialNumber ...
2
votes
3answers
2k views

Tagging files with colors in OS X Finder from shell scripts

One can tag files and folders with a color in the Mac OS X Finder. Is there a way to do this from a shell script?
2
votes
3answers
280 views

How does the Mac OS X Finder recognize a PNG file?

I have a file which was originally named 'foo' in the Finder. If I 'get info' for the file, the Finder recognizes it as "Kind: Plain text". If I rename the file as 'foo.png', Finder then recognizes ...
2
votes
2answers
850 views

Finder Plugin in Snow Leopard

Since the Finder in Snow Leopard has been rewritten to use Cocoa instead of Carbon, I'd like to know if there's a new API to write Finder plugins. The old way involved writing a CFPlugin but this ...
2
votes
1answer
387 views

Has anyone successfully used mach_inject for Finder in Snow Leopard?

Just wondering if anyone has done this successfully and what were the steps of making it work. Thanks in advance.
2
votes
2answers
1k views

How do you programmatically put folder icons on the Finder sidebar, given that you have to use a custom icon for the folder?

Am currently working on a project, and though I can add sidebar items by adding to the com.apple.sidebarlists.plist file then restarting Finder, I can't seem to know how to make the folder icons show ...
2
votes
2answers
1k views

How do I open a Finder sidebar folder via AppleScript?

I have a bash script which will be run on a Mac via ssh. The script requires a particular network drive to already be mounted. On the Mac, I mount this drive by opening a folder "JPLemme" on that ...
1
vote
0answers
18 views

Getting the full path of a TFENode in Lion

I'm trying to get the full path of a TFENode in OSX Lion, but am unable to get a result using the old way (by converting to an FINode and getting the fullPath - the method [[FINode ...
1
vote
1answer
35 views

How do I get information about the file/folder that has been right clicked BEFORE my OSX Service is displayed?

I am contemplating the creation of an OSX System Service as outlined here: http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/SysServices/introduction.html My understanding is that ...
1
vote
0answers
44 views

Don't show NSService context menu for multiple files selected in Finder

I use a NSService for my application: the user runs it from the Finder context menu. I need to disable this NSService's context menu button for multiple selections. Is this possible?
1
vote
1answer
135 views

Adding buttons to Finder toolbar?

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 ...
1
vote
1answer
171 views

Finder method name

I am try to find out what methods the Finder calls while drawing folder icons. I am attaching my finder process in instrument and taking CPU sample of finder process but i am unable to find method ...
1
vote
1answer
174 views

Code Injection using mach_star

I was trying to inject code into the Finder process using mach_inject . I am currently using given the source given here The code seems to get the PID of the finder process correctly. There is a ...
1
vote
2answers
144 views

Custom icon for Mac application

I am developing an application in which I have to mark a set of files/folder. The marked files/folder when viewed in Finder must be shown with a custom icon. But when they are selected for preview ( ...
1
vote
1answer
61 views

Search bar like Finder's, with possibilities to add search parameters

I'd like to create something like this: I can make a custom controller (maybe using a `NSCollectionView ) but it's a lot of work. Does anyone know a library or workaround in Cocoa?
1
vote
3answers
205 views

Launch OSX Finder window with specific files selected

I'm trying to programmatically launch an OSX Finder window from an Xcode project. I need the window to open to a specific folder and have specific files within that folder automatically selected. ...
1
vote
0answers
96 views

Finder reverse engineering

I am try to find out what methods the Finder calls in each action. For example, when drawing icons, when showing file list etc. I was able find out some but fail with others. I was looking for program ...
1
vote
1answer
66 views

OSX services and contextual menu

Can I use services to add items to the Finder context menu ?
1
vote
0answers
47 views

Knowing when a dragging session starts in Finder

I'm trying to fade a window in when the user initiates a drag in Finder. I'm guessing I'll have to use the Accessibility API, but don't know how to get started. There seem to be lots of notifications ...
1
vote
1answer
42 views

How can I force to use specific version of Xcode or opening project/workspace file?

I installed Xcode 4.2 beta side-by-side, and now all project/workspace files are linked to newer version of Xcode. So beta Xcode opens when I click the project file by double-clicking in Finder. I ...
1
vote
1answer
118 views

Xcode + Time Machine (or Finder copy) = NSInternalInconsistencyException

After using Finder to make a copy of my project, the iPhone Simulator crashes giving me an NSInternalInconsistencyException error. I subsequently used Time Machine to restore the project before I ...
1
vote
1answer
156 views

Grails using dynamic finders with 3x+ logical arguments

I sucessfully managed to search in the database using this dynamic finder from Hibernate: def temp = User.findByNameAndStreet("name", "street") Although, i need a tripple logical argument like ...
1
vote
0answers
87 views

Using NSWorkspace selectFile:inFileViewerRootedAtPath: with files on the desktop

You can do something like this to have the finder open a window and select a file: [[NSWorkspace sharedWorkspace] selectFile:file inFileViewerRootedAtPath:root] This is fine for most files, but as ...

1 2 3 4