Skip to main content
DavKins
Known Participant
November 24, 2021
Question

Is it possible to program the rewind button on the playbar?

  • November 24, 2021
  • 1 reply
  • 127 views

Hi All,

I would like to have the Rewind button on the Playbar to jump to the second slide not the first when the user clicks it. Is that possible? It's for a full screen software simulation and parking a button on it would look strange.  I'm using Captivate 2019 with the latest updates. 

 

Thanks,

    This topic has been closed for replies.

    1 reply

    Lilybiri
    Legend
    November 24, 2021

    Control over those buttons is not possible. But you could use the On Enter event of the first slide, and a user variable to have that slide skipped when it is not the first visit:

    • create a user variable v_visit with a starting value of 0
    • create an advanced action to be triggered by the On Enter event of the first slide: 
        IF v_visit is greater than 0
           Go to Next Slide
        ELSE
            Increment v_visit by 1
    DavKins
    DavKinsAuthor
    Known Participant
    December 2, 2021

    Thanks so much. I'll give that a try.

    Lilybiri
    Legend
    December 2, 2021

    Let me know if it helped?