Create your own subclass of NSApplication and do the following:
- (int)requestUserAttention:(NSRequestUserAttentionType)requestType { if (dontDoThatBouncyThing) { return 0; } return [super requestUserAttention:requestType]; }
Remember to change the "NSPrincipalClass" in your Info.plist from NSApplication to your own subclass of NSApplication.
source share