Skip navigation.
 
mlRe: Problem with setKeyEquivalentModifierMask
FROM : Rosyna
DATE : Sat Jun 24 20:07:00 2006

Where are you getting the modifiers from? Do you have a numerical example?

Also note that cocoa, the carbon menu manager, and the general
modifier key state APIs have different values for the various
modifiers so it depends on what API is generating the keycode and the
modifier you are using.

Ack, at 6/23/06, Scott Mitchell said:

>I am trying to set my menu items with a user specified Key
>combination. So they set the key combo they,
>the Key String and the modifiers are correct, but when I go to set
>the Key Code and Modifiers for the
>menu item the Key Code is fine, but the modifiers do not show
>correctly in the menu. No matter what I
>do it shows up as the Shift Key modifier in the menu. Below is the
>code. I have verified and the Key Code
>and the Modifiers are correct. Does anyone know why this might not
>be working? I have searched through the
>archives and every thing I have seen looks like what I am doing.
>
>NSString* keyCodeChar = [keyCombo stringForKeyCode];
>NSMenuItem* setItem = [[NSMenuItem alloc] initWithTitle:setLabel
>
>                action:@selector(setSelected:)
>
>        keyEquivalent:@""];
>[setItem setKeyEquivalentModifierMask:[keyCombo modifiers]];
>[setItem setKeyEquivalent:keyCodeChar];


--


Sincerely,
Rosyna Keller
Technical Support/Holy Knight/Always needs a hug

Unsanity: Unsane Tools for Insanely Great People

It's either this, or imagining Phil Schiller in a thong.

Related mailsAuthorDate
mlProblem with setKeyEquivalentModifierMask Scott Mitchell Jun 23, 22:27
mlRe: Problem with setKeyEquivalentModifierMask Eric Schlegel Jun 23, 23:37
mlRe: Problem with setKeyEquivalentModifierMask Scott Mitchell Jun 24, 00:24
mlRe: Problem with setKeyEquivalentModifierMask Rosyna Jun 24, 20:07
mlRe: Problem with setKeyEquivalentModifierMask Scott Mitchell Jun 26, 17:15