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

I want the Tab key to work as a "go to next slide" for Captivate 8

Advocate ,
Oct 04, 2017 Oct 04, 2017

I am using Captivate 8. Can I make the Tab key work as a short cut for a published html 5 file from Captivate in order to allow my student to go to the next slide?

Thanks

794
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

LEGEND , Oct 04, 2017 Oct 04, 2017

You don't need the course to be 508 compliant? Tab is normally meant to tab through elements on the slide.


If you don't need that, put a shape button on the master slide(s) that you make invisible (alpha =0 and stroke = 0) and enter TAB as shortcut key.

Tab.png

Translate
Participant ,
Oct 04, 2017 Oct 04, 2017

Hi AnotherMe,

Please use below javascript code.

$(document).keydown(function (e) { 

var keycode1 = (e.keyCode ? e.keyCode : e.which);

  if (keycode1 == 0 || keycode1 == 9) {

      e.preventDefault();     

     e.stopPropagation(); 

    cp.goToNextSlide();

  } });

Keep the code inside the javascript window on the first slide. I have tested and it is working fine.

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
LEGEND ,
Oct 04, 2017 Oct 04, 2017

You don't need the course to be 508 compliant? Tab is normally meant to tab through elements on the slide.


If you don't need that, put a shape button on the master slide(s) that you make invisible (alpha =0 and stroke = 0) and enter TAB as shortcut key.

Tab.png

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
Advocate ,
Oct 05, 2017 Oct 05, 2017

Lilybiri​ your remedy worked great! But all of a sudden the tab key stopped working.

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
Advocate ,
Oct 05, 2017 Oct 05, 2017
LATEST

Might it have something to do with the fact that I am using the play-bar?

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
Resources
Help resources