Skip navigation.
 
mlRe: Select MenuItem
FROM : Lorenzo
DATE : Sat Jan 05 03:21:52 2008

Thanks Peter, I succeded with this code:

    NSPopUpButtonCell *btnCell = [[NSPopUpButtonCell alloc] init];
    [btnCell setMenu:myContextMenu];
    [btnCell performClickWithFrame:[sender frame]
            inView:[sender superview]];
 
    [btnCell release];
    [myContextMenu release];


Best Regards
--
Lorenzo
email: <email_removed>

> From: Peter Ammon <<email_removed>>
> Date: Fri, 04 Jan 2008 18:07:27 -0800
> To: Lorenzo <<email_removed>>
> Cc: <email_removed>
> Subject: Re: Select MenuItem
>
>
> On Jan 4, 2008, at 6:01 PM, Lorenzo wrote:
>

>> Hi,
>> I click on a button and build my own NSMenu then I popup the menu with
>>
>>    [NSMenu popUpContextMenu:
>>
>> It works well. Now I would pre-select a MenuItem so when I click on
>> the
>> button the menu pops-up putting the MenuItem under the mouse.
>> How can I do that?

>
> You should not use a contextual menu to simulate a popup menu.  If
> you want to programmatically trigger a popup menu, create an
> NSPopUpButtonCell, assign it the menu and initial item index you
> want, and then call -[NSPopUpButtonCell performClickWithFrame:inView:]
>
> The NSPopUpButtonCell can be transient - it's fine to create it right
> when you receive the click and destroy it afterwards.
>
> -Peter
>

Related mailsAuthorDate
mlSelect MenuItem Lorenzo Jan 5, 03:01
mlRe: Select MenuItem Peter Ammon Jan 5, 03:07
mlRe: Select MenuItem Lorenzo Jan 5, 03:21