Skip to main content
buksori
Inspiring
June 17, 2020
Answered

Anyone help me please..

  • June 17, 2020
  • 1 reply
  • 237 views
var _this = this;

_this.gotoPlayBtn.on('click', function()
{
	_this.gotoAndPlay(216);
});

window.addEventListener("keydown", function(e)
{
	if (e.code === "Space")
		_this.gotoAndPlay(216);
});

 

I tried to use "Space" and "Enter" key. They worked well.

But I wonder why other keys(ex: p key, s key , alt key, ctrl key and etc) except Space and Enter key don't work.

How can I use other keys(ex: p key, s key , alt key, ctrl key and etc) except Space?

 

Thank you.

    This topic has been closed for replies.
    Correct answer buksori

    I came to know the way.

    "KeyP" or "KeyS" works well.

    1 reply

    buksori
    buksoriAuthorCorrect answer
    Inspiring
    June 17, 2020

    I came to know the way.

    "KeyP" or "KeyS" works well.