Skip to main content
otakk74885973
Participant
August 26, 2018
Answered

disable jump before complete more slide

  • August 26, 2018
  • 1 reply
  • 337 views

Hi All,

im newbie on captivate..and i was searching and not found s about my problems..

okay this is my problem:

in slide 1 (i call is menu) :

i've 2 menu button, 1st menu is jump to slide 2,

and 2nd menu is jump to slide 5 but it cant be clicked if they didnt pass slide 2,3,4 and got alert "please complete 1st menu"..and if they was pass slide 2,3,4 this menu can be clicked (its maybe happen if they click back button from slide 4 to slide 1 again) .

thank please help,

Kaleng

    This topic has been closed for replies.
    Correct answer Lilybiri

    No answer means normally that the question is not well understood.  Maybe some screenshots could help?

    You have 5 slides:

    1. is a dashboard slide, with two menu buttons Bt_1 and Bt_2.  When starting Bt_2 is disabled. Bt_1 has 'Jump to Slide 2"
    2. What happens here? How does it move to
    3. What happens here? How does it move to
    4. This slide has aother button Bt_Back that 'Jump to Slide 1'
    5. Will be visted using Bt_2 on Slide 1

    Create a user variable v_visit with a default value of 0.

    For the On Enter event of slide 1, create an action:

      IF v_visit is equal to 0

          Disable Bt_2

          Assign v_visit with 1
           Continue

      ELSE

          Enable Bt_2
           Continue

    1 reply

    Lilybiri
    LilybiriCorrect answer
    Legend
    August 30, 2018

    No answer means normally that the question is not well understood.  Maybe some screenshots could help?

    You have 5 slides:

    1. is a dashboard slide, with two menu buttons Bt_1 and Bt_2.  When starting Bt_2 is disabled. Bt_1 has 'Jump to Slide 2"
    2. What happens here? How does it move to
    3. What happens here? How does it move to
    4. This slide has aother button Bt_Back that 'Jump to Slide 1'
    5. Will be visted using Bt_2 on Slide 1

    Create a user variable v_visit with a default value of 0.

    For the On Enter event of slide 1, create an action:

      IF v_visit is equal to 0

          Disable Bt_2

          Assign v_visit with 1
           Continue

      ELSE

          Enable Bt_2
           Continue

    otakk74885973
    Participant
    August 31, 2018

    thank you for ur inspiration !!! thank you so much ..

    here is what I want :

    and solved by this action

    if v_visit2 == 0 &&

    v_visit3 == 0 &&

    v_visit4 == 0 &&

    disable bt_2

    continue

    if v_visit2 == 1 &&

    v_visit3 == 1 &&

    v_visit4 == 1 &&

    enable bt_2

    continue

    thank you ^^

    Lilybiri
    Legend
    August 31, 2018

    How is the learner navigating to slide 3 and 4? You don't need that many variables if the 2-3-4 slides ae in sequence, have a next button on 2 and 3 and a Back button on 4.  Just curious.