Remove "Show open Apps" from menu..
Hi All,
want to remove "Show Open Applications" from menu..
i have referred below link ...
[U][url]http://www.developer.nokia.com/Community/Discussion/showthread.php?150661-Option-menu-Show-open-apps[/url].[/U]
but i didnt get the idea.. i found some [B].rmp patch[/B] to hide Show open apps.. is it useful ??
how can i add this patch to my application?
plz help me..
Re: Remove "Show open Apps" from menu..
If you want to do that for your own application, you can experiment with that identifier from the other thread. Check what pane-ids you get in DynInitMenuPaneL, and one of them may work.
ROM patching is obviously not discussed on official Nokia sites.
Re: Remove "Show open Apps" from menu..
[QUOTE=wizard_hu_;856148]If you want to do that for your own application, you can experiment with that identifier from the other thread. Check what pane-ids you get in DynInitMenuPaneL, and one of them may work.[/QUOTE]
wizard thanks for reply.. how do i get pane-ids ??
help me..
Re: Remove "Show open Apps" from menu..
That is aResourceId in DynInitPaneL.
Re: Remove "Show open Apps" from menu..
[QUOTE=wizard_hu_;856171]That is aResourceId in DynInitPaneL.[/QUOTE]
Yes i got different pane- ids.. but now how can i restrict it thru my application ?
[B]SetItemDimmed[/B] is not working, den how can i restrict for that pane-id ??
Re: Remove "Show open Apps" from menu..
The suggestion was a trial-and-error approach.
Like putting aMenuPane->SetItemDimmed(EAknCmdTaskSwapper,ETrue), and checking if it panics. If it does, checking what aResourceId-s cause it to panic using a debugger, and excluding them "if((aResourceId!=FirstPanickingId)&&(aResourceId!=SecondPanickingId)...)". After a while the result will not panic, and the given menu item may or may not be visible. If it is not visible, EAknCmdTaskSwapper is the command and you will know the resource ID too by that time. If it is visible, EAknCmdTaskSwapper is not the command you need.