How to talk while there's a menu open?

Hi there,

I just wanted to know how I could make to be able to speak with N while I’ve a menu (like F2 or F3) opened. I know that sounds stupid and unnecessary, but I just want to improve it.

Thanks.

PD: If you don’t know what the answer is, don’t post please.

Depend of how the menu is done, i suppose you use ESX like 80% of all other server, i work on vrp so im not sure of how its done but i suppose you have to modify your NUI : just go in your html or js and add a key catcher and a callback to simulate the push to talk. I have this in my *.js :

$(document).keypress(function(e) {
console.log('Key : '+e.which)
$.post(‘http://wonderfullmenu/key handler’, JSON.stringify({
value: e.which
}));
}

Thanks, you gave me an idea.

Hello, I’m trying to figure this out myself. I got a popup but can’t talk while it’s open. If you have found a solution, could you possibly share?