When ticking the checkbox in the shortcuts menu of mumble to suppress other applications from recognizing this keybind, the shortcut appears to cease working entirely.
This is a huge problem for me as I have no keypad, and so the only keys I have to work with for SL-to-SL radio are 1-9 & F1-F9, so I need to use a modifier key (eg. Shift+1 = Sq1 SL) and need to suppress the key so that I don't swap weapons/seats when using radio comms.
Mumble 'Suppress' does not work
-
AncientMan
- Retired PR Developer
- Posts: 5111
- Joined: 2007-05-22 07:42
Re: Mumble 'Suppress' does not work
You should still be able to transmit, but PRLauncher also needs to detect the keybind in order to show the transmit icon and stuff.

-
Celestial1
- Posts: 1124
- Joined: 2007-08-07 19:14
Re: Mumble 'Suppress' does not work
As far as I could tell, the keybind completely stopped working when the "Suppress" option was ticked. No speaker light-up on mumble when attempting to use bind.[R-DEV]AncientMan wrote:You should still be able to transmit, but PRLauncher also needs to detect the keybind in order to show the transmit icon and stuff.
On another note, I found a temporary solution for myself. I used autohotkey to rebind Shift+1-9 to corresponding Numpad keys. Not pretty, but it works seamlessly ingame. The script is below for any others having an issue with this.
Code: Select all
SetTimer, KeepRunning
return
KeepRunning:
WinGet, szProcessName, ProcessName, A
if szProcessName = prbf2.exe
{
Suspend, off
}
else
{
Suspend, on
}
*!1::SendInput {Numpad1 Down}
*!2::SendInput {Numpad2 Down}
*!3::SendInput {Numpad3 Down}
*!4::SendInput {Numpad4 Down}
*!5::SendInput {Numpad5 Down}
*!6::SendInput {Numpad6 Down}
*!7::SendInput {Numpad7 Down}
*!8::SendInput {Numpad8 Down}
*!9::SendInput {Numpad9 Down}
*!1 Up::SendInput {Numpad1 Up}
*!2 Up::SendInput {Numpad2 Up}
*!3 Up::SendInput {Numpad3 Up}
*!4 Up::SendInput {Numpad4 Up}
*!5 Up::SendInput {Numpad5 Up}
*!6 Up::SendInput {Numpad6 Up}
*!7 Up::SendInput {Numpad7 Up}
*!8 Up::SendInput {Numpad8 Up}
*!9 Up::SendInput {Numpad9 Up}-
LITOralis.nMd
- Retired PR Developer
- Posts: 5658
- Joined: 2010-04-10 16:15
Re: Mumble 'Suppress' does not work
Thanks for sharing that, will pass it on, always people with notebooks without numberpads asking for a solution to this prob.
