Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Anyone help me please..

Explorer ,
Jun 16, 2020 Jun 16, 2020
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.

213
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , Jun 17, 2020 Jun 17, 2020

I came to know the way.

"KeyP" or "KeyS" works well.

Translate
Explorer ,
Jun 17, 2020 Jun 17, 2020
LATEST

I came to know the way.

"KeyP" or "KeyS" works well.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines