vote up 2 vote down star
1

If you put up an NSAlert while your app is in the background your dock icon starts bouncing and keeps on bouncing until you switch back.

I find this annoying.

Does anyone know how disable that for a single app?

flag

71% accept rate

2 Answers

vote up 2 vote down check

Create your own subclass of NSApplication, and implement something like this:

- (int)requestUserAttention:(NSRequestUserAttentionType)requestType
    {
        if (dontDoThatBouncyThing) {
            return 0;
        }
        return [super requestUserAttention:requestType];
    }

Don't forget to change "NSPrincipalClass" in your Info.plist from NSApplication to your own NSApplication subclass.

link|flag
This is incredibly helpful. The constant bouncing Dock icon is the bane of my existence! Thank you :) – jbrennan Aug 18 at 14:03
Glad to be of help :) – Dirk Stoop Aug 18 at 19:40
vote up 0 vote down

Not that I'd recommend it, but there is a Haxie that may help: Dock Detox.

They allow you to intercept the bouncing and do other stuff, I think.

A quick google showed up:

- (void)cancelUserAttentionRequest:(int)request

But I really don't know if this will work for your purposes.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.