Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
1answer
212 views

Can an NSStatusItem be shrunk to fit?

I have a variable length NSStatusItem which I'd like to stay visible whenever possible, even if that means showing only some of the content, but when my item is wide enough to run into an ...
7
votes
2answers
935 views

LSUIElement behaves inconsistently with activateIgnoringOtherApps

Specifically, it behaves inconsistently regarding text field focus. I have an LSUIElement popping up a status menu. Within that menu there is a view containing a text field. The text field needs to ...
4
votes
1answer
111 views

Being apprised of when NSStatusItem is hidden

I have an app which uses an NSStatusItem. On small screens there's not much space in the status bar. When a user switches to an application with a lot of menu items, my status item gets hidden. Is ...
4
votes
1answer
148 views

Highlighting NSStatusItem with attributed string

I have a NSStatusItem, and I use an attributed string for it, setting is as such: [statusItem setAttributedTitle:as]; where as is my attributed string. I use it to highlight certain parts of the ...
4
votes
1answer
357 views

Fake NSWindow with a NSView inside a NSMenuItem

Before I start I should say I know this seems like a long shot, however I figured it was worth a try. One app I am working on right now is a Mac Statusbar App. It has a NSStatusItem in the menubar ...
4
votes
1answer
354 views

Drag and Drop with NSStatusItem

I'm trying to write an application that allows the user to drag files from the Finder and drop them onto an NSStatusItem. So far, I've created a custom view that implements the drag and drop ...
4
votes
4answers
1k views

How to get the on-screen location of an NSStatusItem

I have a question about the NSStatusItem for cocoa in mac osx. If you look at the mac app called snippets (http://snippetapp.com/ look @ the movie there). you will see that once you clicked your ...
4
votes
3answers
1k views

Cocoa Keyboard Shortcuts in Dialog without an Edit Menu

I have an LSUIElement application that displays a menubar status item. The application can display a dialog window that contains a text field. If the user right-clicks/control-clicks the text field, ...
3
votes
1answer
283 views

NSTextField inside NSStatusBar: focus and editable problems

My Cocoa App is made by a NSStatusBar with a NSTextField inside and a Main Window. Please, look the screenshots to get the idea: I have two problems: When I open Menubar I am unable to got the ...
2
votes
1answer
63 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
2answers
134 views

How to detect if NSStatusItem is displayed in status bar?

My Mac OS X application has a NSStatusItem. It works fine, however, I just discovered that apparently if there are too many items in the top menu/status bar (for instance, if an app has long menus, ...
2
votes
1answer
90 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
108 views

How to keep focus on NSStatusItem until toggling it again

I'm building an app the uses a NSStatusItem. I'm wanting my NSStatusItem to open when clicked and stay open until the user clicks the NSStatusItem again. As of right now, it opens the menu but the ...
2
votes
2answers
226 views

How to display my app's icon (programmatically) on the top right corner of the Mac OS X menu bar

I know Skype does it - they have a special icon register to there. And then when user click on the icon, a drop down menu will appear...
2
votes
1answer
287 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 ...
2
votes
1answer
199 views

How do I get my menulet to look like this

How do i get this effect with a menulet application. I just want the window effect nothing else. My current app looks like this. please if someone could shed some light it would be appreciated. ...
2
votes
1answer
169 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
0answers
894 views

Correct way to setup target/action for NSMenuItem in Cocoa?

I'm having some real difficulty with some initial Cocoa programming I am carrying out. Essentially, I have an NSStatusBar item with an NSMenu attached as the menu. The menu has a single NMMenuItem. ...
2
votes
1answer
806 views

Cocoa - Custom appearance of NSStatusItem in menu bar

It is easy to set the title and length of an NSStatusItem. Is is possible to change the appearance of the NSStatusItem entirely, and replace it with a custom view? For example, if I want my ...
2
votes
2answers
188 views

Fuzzy text in NSStatusItem

I'm displaying a statusItem at launch like this: theItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain]; NSString *theString = [textField stringValue]; ...
2
votes
2answers
1k views

Cocoa: Right Click NSStatusItem

I am a .Net developer who need to port a small project into Mac, so I know next to nothing about Objective C. In fact the code below was just a bunch of grasping at straws and shooting in the dark. ...
2
votes
1answer
293 views

How do I use an indeterminate status indicator as the image for an NSStatusItem?

I have an application that is an NSStatusItem. It has a few different modes, each of which require an external process to be launched, during which the icon is simply highlighted, and appears to be ...
2
votes
1answer
634 views

Right-click on a NSStatusItem

I have a NSStatusItem and I want to popup a menu by rightclicking the item. I subclassed a NSView and overwrote the - (void)rightMouseDown:(NSEvent *)event method. I also implemented - ...
2
votes
2answers
844 views

Objective-C: NSStatusBar right and left click

how to detect left or right click on statusbar icon, and than make some action, depending on which mouse button (trackpad) was clicked? I use: _statusItem = [[[NSStatusBar systemStatusBar] ...
2
votes
1answer
2k views

Custom NSStatusItem with custom view - Use NSWindow, NSView, custom NSMenuItem?

I'm trying to create a LSUIElement app that behaves like Spotlight, CoverSutra and other apps of that type. I managed to create a custom NSStatusItem, which popups up an NSWindow but the problem is ...
2
votes
2answers
970 views

NSStatusItem (cocoa) location on screen

I am trying to get the on screen location of an NSStatusItem so that I can perform a click on that area via code like below. I am doing this so that my users can press a hotkey to see the menu. event ...
1
vote
1answer
23 views

NSStatusItem tooltip – change delay

I have a NSStatusItem to which I've added a tooltip using the setToolTip: method. Everything works, except that the delay before showing the tooltip seems to be about 3 seconds, which is not ideal ...
1
vote
0answers
60 views

Minimize all window in mac but every time one window is active

I have added a code to minimize all the running application on NSStatusItem, its a very simple code [[NSWorkspace sharedWorkspace] hideOtherApplications]; But when i run this application then one ...
1
vote
2answers
288 views

NSStatusItem right click menu

I'm working on a status bar app that has a left and right click. I've got the start of this working by following the tips from other posts but I'm not sure how to go about showing a menu on right ...
1
vote
0answers
174 views

How to create a NSWindow inside a menulet [closed]

I'm creating a menulet application in Xcode 4, and I'm trying to figure out how to display a window that will appear when the menulet icon is clicked. I would hope for the window to be displayed as ...
1
vote
3answers
257 views

Remove highlight from NSMenuItem after click?

I have added a custom view to my subclass of NSMenuItem (which sits in a NSStatusMenu), which means that by default it will not get "highlighted" with a blue/gray background. I implemented this by ...
1
vote
1answer
539 views

How to open a window on click on NSStatusItem?

I'm pretty new to cocoa, so please excuse me for any stupid mistakes I make. I have a NSStatusItem, which I want to use to open up a menu. However as far as I know and have heard across different ...
1
vote
1answer
85 views

Removing NSStatusItem view

One I set a view for NSStatusItem by setView:, how can i remove it later on if I want to? Is this even possible? Thanks.
1
vote
2answers
312 views

Editable NSTextField in custom view of NSMenuItem

I have a subclassed NSView that I would like to contain an editable NSTextField, similar to Spotlight. I am having significant difficult getting the text field to select and highlight. If I click ...
1
vote
2answers
292 views

NSMenuItem Title which changes over time

I would like to implement an NSStatusItem where the title changes over time. My ultimate goal is to display a countdown timer in the menu bar beside the image which I have set. Maybe I am going ...
1
vote
1answer
220 views

Monobjc :: Add NSStatusItem

I'm trying to add an NSStatusItem from within the Monobjc bridge for Mono. The function gets called, and doesn't throw an exception, but my icon doesn't appear :(. Here 's my code: #define DEBUG_APP ...
1
vote
1answer
626 views

How to draw a native looking statusitem background on a CALayer

Actually I want to draw the background of a selected NSStatusItem on the CALayer of my custom statusItemView. But since - (void)drawStatusBarBackgroundInRect:(NSRect)rect ...
1
vote
3answers
2k views

Custom NSView in NSMenuItem not receiving mouse events

I have an NSMenu popping out of an NSStatusItem using popUpStatusItemMenu. These NSMenuItems show a bunch of different links, and each one is connected with setAction: to the openLink: method of a ...
1
vote
1answer
741 views

How to efficiently assign NSStatusItem images and alternte images?

Let's say I have a code like this... - (id) init { ... self.myImage1 = [NSImage imageNamed:@"some_image_name"]; // setter retains ... } - (void) setStatusItemImage { [self.statusItem ...
0
votes
0answers
10 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
25 views

Showing a window in response to a menu item in a status item's menu

I'm a newbie at Cocoa so I need step by step directions where to put the code. I've found similar topics but everyone is talking gibberish. I created a status item menu in Cocoa. One of the buttons ...
0
votes
1answer
21 views

MAAttachedWindow for NSStatusItem without a custom view

I have a simple app that has a NSStatusItem, which only displays an icon. I would now like to add functionality that would make a MAAttachedWindow appear under the NSStatusItem. I saw the demo code ...
0
votes
1answer
29 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
0answers
10 views

VoiceOver bug in menu of NSStatusItem

I've run into the following bug using VoiceOver. I'm new to Cocoa programming, so I'm curious if I am doing something wrong, or if there is another way to do this. The following code puts an icon on ...
0
votes
1answer
52 views

Creating status item - icon shows up, menu doesn't

In a document-based project I am trying to create a status menu. I have a singleton class that builds the status bar, and I am initiating it from an application delegate, as you can see. When I run ...
0
votes
0answers
50 views

Change Image of NSStatusItem programmatically

At the moment I have a problem with a method in a new application for Mac OSX. The method should change the image of an NSStatusItem. I check if I correctly enter the right block in the if/else ...
0
votes
1answer
102 views

control NSSlider with arrows on NSMenu for a NSStatusItem- Objective-C/Cocoa

I would like to create a status item with a vertical slider in it, much like the sound control provided by Apple. My question is: how do I make it react to the up/down arrow keys, just like the slider ...
0
votes
1answer
216 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
2answers
72 views

Get length of NSStatusItem

I have a NSStatusItem in my app that can be configured to show some text. This text can change, and the problem is, every time it changes length, the whole status item changes its length, which causes ...
0
votes
1answer
96 views

Getting the screen position of a non-view based NSStatusItem

My application makes use of an NSStatusItem. I need to grab the screen coordinates for the status item, but since I have no need for the functionality offered by setting a custom view for the item I ...

1 2