Hi, I'm creating an event called "Name that song" which has one very obvious flaw..."F3"
I was hoping that stopping the song whenever a person presses F3 would work, but the song that was playing still shows. I also tried changing the song name, but still no luck. Is there a way to basically tell the client to press a button again? So I could just close the options menu as soon as it opens, or does anyone have any other solutions?
Thanks.
PHP Code:
//#CLIENTSIDE
function onKeyPressed( c ) {
if ( c == 114 ) {
stopmidi();
}
}