Re: Open Multiple Files

2010-09-29 Thread Richard Somers
On Sep 29, 2010, at 4:32 PM, Sean McBride wrote: Are you a document-based app? Have you seen this:? Yes it is document-based app. I have seen this, but not recently. Looks l

Re: Open Multiple Files

2010-09-29 Thread Sean McBride
On Wed, 29 Sep 2010 16:21:41 -0600, Richard Somers said: >I need to know how many files the user is attempting to open. > >The NSApplicationDelegate Protocol has this method. > >- (void)application:(NSApplication *)sender openFiles:(NSArray >*)filenames > >Just count the number of items in the arr

Open Multiple Files

2010-09-29 Thread Richard Somers
I need to know how many files the user is attempting to open. The NSApplicationDelegate Protocol has this method. - (void)application:(NSApplication *)sender openFiles:(NSArray *)filenames Just count the number of items in the array and then re-route the call for continued processing. But