The nsopenpanel tag has no wiki summary.
0
votes
2answers
474 views
Make NSOpenPanel open a custom directory
is there any way that I can pass a URL to a folder on my system which should be the default window which an NSOpenPanel opens?
Thanks!
Update:
NSOpenPanel *ads_open = [[NSOpenPanel openPanel] ...
0
votes
2answers
970 views
When calling to NSOpenPanel's runModal, my application will not properly terminate
I'm writing a simple Cocoa Application, no core data or multiple document support. Running on a Mac Pro, OS X 10.6.6, Xcode 3.2.3.
I have reduced my application to the following code in my ...
2
votes
1answer
157 views
Is this a bug with NSOpenPanel, it causes the interface to hang for ~1 second?
Background
Calling -beginWithCompletionHandler: on NSOpenPanel causes the user interface to hand of about a second after the use hits the open button.
Two messages error messages are printed,
* ...
1
vote
1answer
95 views
Change the default name that an NSOpenPanel uses when creating a folder?
I'm using an NSOpenPanel, and the panel has a "New Folder" button. When I click the button, it says "untitled folder". How I can set a folder name of my choice?
This is the code I'm using right now: ...
1
vote
1answer
86 views
Method panelSelectionDidChange from NSOpenSavePanelDelegate protocol called twice
I have a class that implements NSOpenSavePanelDelegate protocol and is associated with a NSOpenPanel.
I included a NSLog() in the - (void)panelSelectionDidChange:(id)sender method and noticed the ...
0
votes
1answer
41 views
How to allow files with exec permission in NSOpenPanel?
The Cocoa NSOpenPanel, in a third party open source library VSTGUI, disables files that have exec permission set. The exec bit is not needed, but it often seems to be set on files created on Windows ...
0
votes
1answer
86 views
Changing the default directory of a NSOpenPanel to the “Media” directory
I'm developing a simple app for some students. In the app, a student has to select a video which they made in iMovie. I've already set up a NSOpenPanel for this, but I would like it to default to the ...
0
votes
1answer
142 views
How to use NSOpenPanel in Cocos2D Mac?
I tried to load an CCSprite from file on Mac, so I search for NSOpenPanel, with following code:
-(void)doLoad:(id)sender{
NSWindow* window = [self window]; // Create and configure the panel.
...
0
votes
1answer
90 views
Allowing any type in the Open panel in a document-based application
I'm writing a document-based Mac application that can open any type. My application receives dropped files of any type on its Dock tile successfully, but when I choose Open from the File menu, all ...
0
votes
1answer
113 views
NSOpenPanel appears as sheet only once
I have an app where I use NSOpenPanel:
openDlg = [NSOpenPanel openPanel];
[openDlg setCanChooseDirectories:YES];
[openDlg beginSheetModalForWindow:MainWindow completionHandler:nil];
if ([openDlg ...
0
votes
1answer
183 views
Can NSOpenPanel be configured to not close after OK/Cancel buttons are clicked?
I would like to animate the close operation instead. However, I have not had any luck figuring out how to keep the NSOpenPanel from disappearing offscreen as soon as the OK or Cancel buttons are ...
1
vote
0answers
208 views
Customizing NSOpenPanel with iCloud UI
I'm using iCloud to store documents. So when user selects "Open fileā¦" NSOpenPanel with iCloud UI is displayed. It contains "New document" button, but my app is registered as viewer for that ...
1
vote
0answers
188 views
NSOpenPanel display issues
I'm using NSOpenPanel to allow the user to select a file. However, the UI of NSOpenPanel sometimes plays up. The sidebar sometimes is shown, sometimes it isn't. The selected folder (in this case, ...
1
vote
0answers
138 views
NSOpenPanel doesn't show when i call runModal
Hello Because I spent hours looking for a solution and found none, and discovered the error I though I'd go out and post it.
I created an NSOpenPanel in the same way everyone is creating it set the ...
0
votes
0answers
17 views
NSOpenPanel related memory questions
Below is my code:
NSOpenPanel *openDlg = [NSOpenPanel openPanel];
[openDlg setCanChooseFiles:YES];
[openDlg setAllowedFileTypes:[NSArray arrayWithObjects:@"pdf", nil]];
if([openDlg runModal] == ...
0
votes
0answers
27 views
Creating security-scoped bookmark for hosts file
I am trying to create a security-scoped bookmark for the user's hosts file so that my app can access and modify it across launches. I'm getting the following error:
Error Domain=NSCocoaErrorDomain ...
0
votes
0answers
81 views
NSOpenPanel contentsOfDirectoryAtURL
Thanks for the help -
This get's me the contents of a directory designated by an NSOpenPanel. I want to create a running list of current and subsequent selected path components in a tableView in a ...
0
votes
0answers
60 views
NSOpenPanel not opening all the time?
OK, this is my issue :
I have an application with one window (an NSPanel actually)
I'm trying to open and NSOpenPanel and get some input
I may have to push the trigger button like 2-3 times, before ...
0
votes
0answers
97 views
Can an NSOpenPanel open with a package pre-selected rather than showing the contents of the package?
I'm trying to show an NSOpenPanel with a file preselected.
I'm using
openPanel.directoryURL = fileURL;
[openPanel runModal];
to set the file (assume fileURL is a valid NSURL) and show ...


