Hi, I'm trying to use an open panel to open a particular type of file 
(.nmcset). I create an open panel and run it like this:

NSOpenPanel *openPanel = [NSOpenPanel openPanel];
[openPanel setCanChooseFiles:YES];
[openPanel setCanChooseDirectories:NO];
[openPanel setAllowsMultipleSelection:NO];
[openPanel setTitle:NSLocalizedString(@"Load Color Set", nil)];
[openPanel setAllowedFileTypes:[NSArray arrayWithObjects:@"nmcset", nil]];
    
if ([openPanel runModal] == NSFileHandlingPanelOKButton) {
    …do stuff…
}

All this works fine, and all the files without that extension are disabled, but 
in the search field at the top of the open panel, I can't seem to find my 
files. 

I have a file called "fred.nmcset" in my folder. It appears not grayed out in 
the list, and I can select it and open it just fine.

But, if I type "fred" or "fred.nmcset" or ".nmcset" into the search field, 
nothing appears in the results. It does show the options after a few seconds of 
what to search for and I say to search for a file name, but it still doesn't 
help. Other applications work just fine.

I'm running on 10.7.

Is there something special I need to do to get this to work?


Thanks

Gideon







_______________________________________________

Cocoa-dev mailing list ([email protected])

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to