Page 1 of 1
Mumble 'Suppress' does not work
Posted: 2013-08-13 00:16
by Celestial1
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.
Re: Mumble 'Suppress' does not work
Posted: 2013-08-13 03:54
by AncientMan
You should still be able to transmit, but PRLauncher also needs to detect the keybind in order to show the transmit icon and stuff.
Re: Mumble 'Suppress' does not work
Posted: 2013-08-13 22:00
by Celestial1
[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.
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.
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}
Re: Mumble 'Suppress' does not work
Posted: 2013-08-14 00:17
by LITOralis.nMd
Thanks for sharing that, will pass it on, always people with notebooks without numberpads asking for a solution to this prob.