Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
202 views

How to get frame for NSStatusItem

Is it possible to get the frame of a NSStatusItem after I've added it to the status bar in Cocoa? When my app is launched, I am adding an item to the system status bar, and would like to know where ...
2
votes
1answer
64 views

OSX: How to “unhide” a status bar item?

Ok I have a status menu application with a "Hide" menu item in it. Clicking on "Hide" calls: [[NSStatusBar systemStatusBar] removeStatusItem:statusItem] which of course removes my application from ...
2
votes
1answer
68 views

Detect click on OS X menu bar?

I'm curious if there's a trick to detecting a click on the Menu Bar as a whole. I know I can detect a click on an NSStatusItem or NSMenu, but I am looking for events pertaining to the empty space of ...
2
votes
1answer
100 views

Custom NSMenuBarItem Views

I'm a newbie in Mac Cocoa and I'm trying to develop a menubar application using NSStatusBar. I have the menubar application working with menu items linked properly to functions but I would like to ...
2
votes
1answer
314 views

Save preference to show or hide NSStatusItem

I've got an application which runs as a normal app but also has a NSStausItem. I wanted to implement the ability to set in the preferences a checkbox and when this checkbox is turned on the status ...
1
vote
1answer
79 views

NSPopover transiency when popover is in status bar

I'm making an app which lives in status bar. When status item is clicked, NSPopover pops up. It looks like this: Here's the problem: I want it to be "transient", that is if I click anywhere ...
1
vote
1answer
198 views

NSStatusBar hidden in Mac OS X Lion

I'm currently developing a status bar application. It's quite important to know if the status bar is hidden because an application entered the full screen mode. Is there a way to know that? Thanks in ...
0
votes
1answer
22 views

NSStatusBar title from XML data behaves erratically

I am wanting to "setTitle" of the NSStatusBar with a string from my XMLparser. When the application starts, it shows the title in the status bar correctly. However, when the XML data is refreshed, ...
0
votes
0answers
19 views

Adding system status bar item by Carbon Application

Is it possible to add status item to System status bar by Carbon apps? what is the equivalent of NSStatusBar in carbon? Is it possible to make a dylib by Cocoa and use it in Carbon for this purpose? ...
0
votes
1answer
33 views

How to get all NSStatusItem elements of NSStatusBar in OSX?

I need get all elements in the status bar in OSX. I tried to get the NSStatusBar id of the System: [NSStatusBar systemStatusBar] but I don't know how can I get all NSStatusItems in it. I found a ...
0
votes
0answers
15 views

OSX: List (and modify) NSStatusItems

I am looking for a way to organize NSStatusItems Is-there a way to list them and hide/show selectively? Thanks and regards
0
votes
0answers
37 views

Connect IBAction to NSMenu in system status bar

I am trying to figure out a way to connect an IBAction to a menu in the status bar. The goal is to cause this action to show a popover from NSPopover. I read through the similar questions about this ...
0
votes
1answer
65 views

NSStatusItem appears briefly on launch, but promptly disappears

I'm starting to get back into Cocoa development after not working on anything for a few months. Originally when I started I was using Snow Leopard and Xcode 3. I'm now running Lion with Xcode 4.2 and ...
0
votes
2answers
72 views

How to implement TopBar in a Cocoa Application?

I am new in Cocoa development. I want to implement this type of Bar (below image) in my application. How can i implement this? Which control using for this ?
0
votes
1answer
46 views

NSMenuBar mouse down notification?

i'm trying to find notification/way to check if NSStatusItem from NSStatusBar (System wide bar) was clicked. Does anybody knows how to achive this ? Thanks EDITED 20120111 I meant "any" item from ...
0
votes
1answer
72 views

Cocoa: get position of an NSStatusBar item

How can I get the position or frame of an NSStatusBar item?
0
votes
1answer
266 views

NSPopover Appear From Menubar

I'm developing a simple menu bar app in which an icon in the menu bar should show an NSPopover. How can I get the popover to display based on the icon's position in the menubar? The popular calendar ...
0
votes
1answer
281 views

Popup Window for StatusBar Item

I'm building an Application and it needs to have a status bar item and a custom popup window, that popups when the status bar item is clicked. I know how to set up a status bar item and a nsmenu for ...