Page 1 of 1

Multiple push to talk keys on shadowplay

Posted: 2016-05-25 10:10
by Mac.PR
Hey,
i have been wanting to record my rounds in PR however i cannot seem to set multiple push to talk keys using shadowplay. i can only use 1 push to talk key or have it record my mic all the time. is there a way around this ?

Posted: 2016-05-25 10:14
by Mineral
Autohotkey could be an option. Link all Push to Talk keys to one Key and use that one as shadowplay's push to talk.

Re: Multiple push to talk keys on shadowplay

Posted: 2016-05-25 10:16
by Mac.PR
[R-DEV]Mineral wrote:Autohotkey could be an option. Link all Push to Talk keys to one Key and use that one as shadowplay's push to talk.
i was reading about this, looks pretty hard to set up though ?

Re: Multiple push to talk keys on shadowplay

Posted: 2016-05-25 10:21
by Mineral
It's easy. Just watch a couple youtube videos or the first links on google and you'll figure it out ;) If not come back and we can help you out.

Re: Multiple push to talk keys on shadowplay

Posted: 2016-05-25 15:11
by Colonelbruno
Any Autohotkey Guru's Out There?- Please Help! - Questions - Squad Forums

It's a real shame that a lot of recording apps don't come with more hotkey options by default :/
__________________________

The following script is mine for Project Reality. Choose whatever serves you best :)
IMPORTANT: Start the script as an Administrator
__________________________________________________________________
#SingleInstance, Force
SendMode, input
Process, priority, , High
#IfWinActive, ahk_exe PRBF2.exe
~*Space::Send {p DOWN}
~*Space UP::Send {p UP}
~*F::Send {p DOWN}
~*F UP::Send {p UP}
~*e::Send {p DOWN}
~*e UP::Send {p UP}
~*Numpad1::Send {p DOWN}
~*Numpad1 UP::Send {p UP}
~*Numpad2::Send {p DOWN}
~*Numpad2 UP::Send {p UP}
~*Numpad3::Send {p DOWN}
~*Numpad3 UP::Send {p UP}
~*Numpad4::Send {p DOWN}
~*Numpad4 UP::Send {p UP}
~*Numpad5::Send {p DOWN}
~*Numpad5 UP::Send {p UP}
~*Numpad6::Send {p DOWN}
~*Numpad6 UP::Send {p UP}
~*Numpad7::Send {p DOWN}
~*Numpad7 UP::Send {p UP}
~*Numpad8::Send {p DOWN}
~*Numpad8 UP::Send {p UP}
~*Numpad9::Send {p DOWN}
~*Numpad9 UP::Send {p UP}
~*NumpadMult::Send {p DOWN}
~*NumpadMult UP::Send {p UP}
~*NumpadDiv::Send {p DOWN}
~*NumpadDiv UP::Send {p UP}

#k::Suspend, Toggle
_______________________________________________________________________

Explanations:
p= hotkey selected in your recording app
Space,E,F= hotkey buttons to speak local, squad, TS
#k= "Windows Key"+ k suspends the script
rest of the hotkeys are the default SQL/Commander hotkey buttons

You can change all the keys to your liking of course :)

Re: Multiple push to talk keys on shadowplay

Posted: 2016-08-24 07:22
by YAK-R
Thanks colonel, worked a treat.