An NSWorkspace object responds to application requests to perform a variety of services: Opening, manipulating, and obtaining information about files and devices, Tracking changes to the file system, devices, and the user database, Getting and setting Finder information for files, Launching ...

learn more… | top users | synonyms

0
votes
0answers
19 views

NSWorkspace launchApplication:showIcon:autolaunch: [duplicate]

Imagine I have two apps. One app uses: [NSWorkspace launchApplication:showIcon:autolaunch:] to launch the other. How can I on the second app read the autolaunch value passed to the method called ...
0
votes
0answers
87 views

Cannot launch another application in Mac OS X 10.8 using NSWorkspace launchApplicationAtURL:options:configuration:error

I am launching another app using NSWorkspace launchApplicationAtURL:options:configuration:error. The app is owned by root, has permission: rwx r-x r-x, and owned by root:wheel. The app is also ...
0
votes
0answers
21 views

Correct size for desktop image using NSScreen size

I'm trying to make a simple app that covers the desktop icons with a subclassed NSWindow. The background of the window is set to the same image as the desktop image. This creates the allusion that the ...
3
votes
1answer
72 views

How to position a Cocoa window to minimize overlap with other windows?

I'm working on a Cocoa app that has a main window and a preview window. I'd like the preview window to automatically position itself to minimize overlap with other windows — it definitely shouldn't ...
0
votes
2answers
28 views

One Cocoa app notified when another cocoa app terminated

Suppose there are two cocoa apps APP1 and APP2. I want APP2 to be notified when APP1 terminates. I want some callback function registered with APP2 which will be called as soon as APP1 terminates. How ...
0
votes
2answers
96 views

COCOA : Bring an application to front launched from NPAPI Plugin

I have a NPAPI plugin for MAC that downloads and runs an Application from server. When i use NSTask to open up the application. The application does not come to front. NSBundle *bundle = [NSBundle ...
0
votes
1answer
47 views

How to show window with “Select file” in objective-C cocoa

I've got some action in my application on OS X where I have to select file from finder. I want to display window like: "Open file". I know that this let me open url with path: [[NSWorkspace ...
3
votes
1answer
170 views

Show in Finder not working in 10.8

This works in 10.7 but not in 10.8. How do I get this to work in Mountain Lion? Thanks. -(IBAction)showTargetInFinder:(id)sender { NSString *linkPath = [targetField stringValue]; NSWorkspace ...
0
votes
1answer
221 views

how to get windows of NSRunningApplication

I want to get the window list for a running application. I can get the running application list from [[NSWorkspace sharedWorkspace] runningApplications], but the window list is only available on ...
1
vote
1answer
102 views

Notification of active document change on OS X?

I'm using NSWorkspace's NSWorkspaceDidActivateApplicationNotification to detect when the active application changes. I get NSRunningApplication from the userInfo key of the notification. I need to ...
0
votes
2answers
68 views

How to refresh a browser url from OS x app

I am opening a url from my OS x app. I am doing it as below [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:urlString]]; I am doing it on a button action. But whenever I press the ...
0
votes
2answers
76 views

Notification when user empties trash?

How would my cocoa app receive a notification when the user empties their trash. This is what I have so far: NSNotificationCenter *notCenter = [[NSWorkspace sharedWorkspace] ...
0
votes
0answers
85 views

using NSWorkspace activateFileViewerSelectingURLs:atFilesDest without activating finder

I´m using this to select a bunch of files in the frontmost finder window which works fine: [[NSWorkspace sharedWorkspace] activateFileViewerSelectingURLs:atFilesDest]; However, the finder comes to ...
1
vote
1answer
130 views

NSWorkspace selectFile:inFileViewerRootedAtPath: does not work the first time it is called

I have a sandboxed Cocoa app. I noticed that when I call [[NSWorkspace sharedWorkspace] selectFile:path inFileViewerRootedAtPath:path] no Finder window opens the first time is called. Finder.app is ...
2
votes
1answer
139 views

NSWorkspace launchApplication:showIcon:autolaunch: - how to check autolaunch flag?

I have implemented a login item as I was recommended in this post. In the helper app I launch the main app using NSWorkspace method launchApplication:showIcon:autolaunch:, sending YES to autolaunch ...
0
votes
1answer
178 views

How to force kill another application in cocoa Mac OS X 10.5

I've this task, from my application i need to kill another my application, the problem is that the other application has a Termination Confirm Dialog (there is no critical data to save, only ...
0
votes
0answers
27 views

How to get localized names of Finder labels from [NSWorkspace fileLabels]?

When I use [NSWorkspace fileLabels] I get an array of names for Finder labels. These names are always English. How to convert (or get) them localized?
0
votes
1answer
61 views

Reveal bundle contents in Mountain Lion using ObjC

How can I reveal a bundle contents in Mountain Lion using [NSWorkspace selectFile:nil inFileViewerRootedAtPath:pathEndingWithDotBundle]? I mean: pathEndingWithDotBundle is a path whose basename is ...
2
votes
1answer
145 views

How to catch NSWorkspaceDidPerformFileOperationNotification?

I've trying to get callback after file operation performing, but I can't catch NSWorkspaceDidPerformFileOperationNotification posting. [NSNotificationCenter defaultCenter] addObserver:self ...
1
vote
2answers
104 views

What is the application name of Microsoft Excel? [closed]

What is the application name of Microsoft Excel that I would use with -[NSWorkspace fullPathForApplication:] ?
3
votes
1answer
79 views

NSWorkspacedidmountNotify/probably generic NSWorkspace

I'm an experience C/C++ programmer but new to ObjC++. I'm trying to catch the NSWorkspacedidmountnofification in a Mac OSX project. I added my callback to my app delegate interface. - ...
1
vote
0answers
20 views

NSWorkspace notification - application close [duplicate]

Possible Duplicate: Close file using NSWorkspace I use NSWorkspace to open a file. For example, I opened a text file using TextEdit. Now I'd like to get the event when the TextEdit closes ...
1
vote
0answers
203 views

NSWorkspace vs NSTask to start iTunes from a sandboxed app

I'm trying to run iTunes from my ObjectiveC app that runs in a sandbox. Apple documentation mentions that 'child processes created with the NSTask class inherit the sandbox of the parent app'. The ...
1
vote
2answers
84 views

Search for application in /Application folder first

i'm searching for a way to open my other application with parameters and found a very good post here, but on my developer machine I have like 10 test/brach/release versions of my application and only ...
3
votes
0answers
450 views

Mac App Sandbox: can't open folder in sandbox container with NSWorkspace

I want to open a folder in sandbox container with Finder, but can't get it working. This is my code. - (IBAction)buttonClicked:(id)sender { NSString *folder = [NSHomeDirectory() ...
1
vote
3answers
152 views

Cocoa Unmounting drive but not ejecting it

Do you know you to unmount a drive without ejecting it. NSWorkspace has some methods to unmount drives but it also eject them. Any idea ?
0
votes
1answer
130 views

Opening url with Cocoa button causes memory leak

I have a button in my Cocoa app that opens a url in the web browser. If the browser is not open when the button is pressed then I get a memory leak. If the browser is already open then I do not get ...
1
vote
1answer
61 views

How to check that current space is Dashboard?

Sample code is [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(activeSpaceDidChange:) name:NSWorkspaceActiveSpaceDidChangeNotification object:nil]; Then ...
1
vote
1answer
485 views

How can I get NSWorkspace to work in my Command Line program?

I have not been able to find an answer for this on Google. I am building a command line utility in Cocoa and when I try to create an instance of NSWorkspace I get a compiler error. This is the code ...
0
votes
1answer
141 views

How to test for a valid application with NSWorkspace launchapplication in Cocoa/X-Code/OBJ-C

I have a setting for external editor that end-user can change in settings. As I want to make my software smart, I want to set button that starts this external software to disabled state, if software ...
2
votes
1answer
357 views

Open an application from another (iOS)

I read that there is nothing like NSWorkspace for iOS Equivalent of NSWorkspace for iOS Unfortunately, I wanted a button in my app that can run some others applications (in background). Is it ...
0
votes
1answer
499 views

Use NSWorkspaceDidWakeNotification to activate method?

I created a simple app to learn how to use NSWorkspaceWillSleepNotification and NSWorkspaceDidWakeNotification. My goal is to call a method when the computer sleeps and wakes. The app I created will ...
2
votes
1answer
383 views

NSWorkspace launchApplicationAtURL not working with NSWorkspaceLaunchConfigurationArguments

The following works from Terminal: open -a cyberduck ftp://anonymous@mirror.switch.ch/mirror and opens the FTP site, indicating that it is processing its argument. But the following code does not. ...
0
votes
2answers
152 views

How to use NSWorkspace to be able to open a filetype? - Cocoa

My app is able to extract .deb files but only if you specify where with buttons in the app. But I want to be able to just click on a .deb file and have my app open up, run the actions I already have, ...
2
votes
1answer
134 views

Notification for when laptop lid is closed

Are there any notifications posted when the machine goes to sleep due to the lid being closed? I know of NSWorkspace's sleep notifications, but those are posted regardless of how the machine goes to ...
1
vote
0answers
34 views

How to know if the user has configured a mail app?

I'd like to disable an icon in my app if the user has not configured an application for email use -- as in, they could be using webmail with a browser. How can I know this? Does NSWorkspace openURL: ...
1
vote
1answer
456 views

NSWorkspace Notifications in CFNotificationCenter

We are working on a Qt project, and there is some Mac specific code that we need to add. We need to register for an event, in a sample program we did that by using: [[NSNotificationCenter ...
1
vote
1answer
602 views

Sandboxed Helper App can not launch the correct parent application

I'm using this tutorial to add a Login Item to my application. Most of it works as expected, I've managed to create a sandboxed helper app and register it with the launch services, so it is launched ...
2
votes
1answer
526 views

-[NSWorkspace openFile:withApplication:] wait for opening Application

Heyho, In my Obj-C App I'm using the following code to open a file in Pages (or any other Application): [[NSWorkspace sharedWorkspace] openFile:theUrl withApplication:@"Pages"]; Mainly when ...
0
votes
1answer
209 views

Redisplay changed custom icon in Icon view(IKImageBrowserView) in Finder

I am using setIcon:forFile:options: method of NSWorkspace class for setting custom icon for file and directory. My problem is that , the Finder is not reflecting icon change in icon view until ...
4
votes
1answer
141 views

How to use KVO to detect when an application gets active?

I have the following code in a Cocoa application: - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { NSArray* arrayAppList = [[NSWorkspace sharedWorkspace] ...
2
votes
1answer
174 views

Open user's browser, or switch to the appropriate tab if the website is already opened

In my Objective-C app, I use this code to open a website in the user's browser: [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://blah.com/"]]; This works fine. However, ...
5
votes
1answer
340 views

Any way to make file resource forks uncopyable by Finder?

Is there any way to make resource forks uncopyable? In particular I'm setting a custom badge icon to the files contained in a specific directory through NSWorkspace via – setIcon:forFile:options: and ...
-1
votes
1answer
61 views

Observing Process Lifetimes Without Polling is very slow?

I was using a technique described by apple for Observing Process Lifetimes Without Polling to Observe Arbitrary Processes. I used exact source code mentioned there and with all three techniques. But ...
2
votes
1answer
229 views

Using Appkit Framework in Launch Daemon

I want to use NSWorkspace to check if application is launched or closed. But the process is Launch Daemon and Apple documentation says its not thread safe. However, the part of code that makes use ...
2
votes
0answers
195 views

How to tell if NSWorkspaceWillPowerOffNotification is caused by a restart or a shutdown?

I'm developing a Cocoa app and I need to perform different actions before the app get closed. I need to know when the app is closed due to a restart and when due to a shutdown. Through ...
0
votes
1answer
450 views

cocoa how to get the ALREADY mounted unmountable disk

NSWorkspaceDidMountNotification works well to get the information of just mounted disk. But how can I get the information of already mounted disks before my app start? command line: "diskutil list" ...
1
vote
1answer
383 views

Why doesn't NSWorkspace's openURL open for more than one URL?

I have an action for a menu item that is supposed to open a URL base on the value of the 'lyricLink' property. It will work the first time (and all subsequent times where the value of 'lyricLink' is ...
2
votes
1answer
151 views

Get Application badge of running applications

I'm not sure if this is possible, but I want to get the application badges of other running applications. So I'd like to get the text from Mail's badge or other apps like Adium. I've looked in ...
10
votes
1answer
2k views

Cocoa: Sandbox entitlement to launch another application

I'm calling [[NSWorkspace sharedWorkspace] launchApplication:path]; From my sandboxed app, and I'm getting this error in the console: 9/5/11 12:23:12.462 PM lsboxd: refusing to spawn < ...

1 2