hi
in my app i added the event on any key pressed audio play "sfx".
but the problem is the sound "ogg" is not played, it's only played if i push the key "ENTER"
how to make the sound play for any key?
Develop games in your browser. Powerful, performant & highly capable.
You're trying to play the sound everytime the user types a letter in a textbox, right? Construct 2 seems to have a problem detecting key events when a TextBox object is on focus. You could try to play the sound everytime the TextBox.Text changes using a On Change event.
Cheers.
Thanks so much brunopalermo