problem with pause functionality and going back to slide - captivate 6
In Captivate 6 I have created a pause button with action script
hide pause_button
Show play_button and play-image
Assign cpCmndPause with 1
And a play button with action script
Hide play_button and play_image
Show pause_button and pause_image
Assign cpCmndResume with 1
The pIay button only appears when the project is in a state of pause.
I have created a variable ‘v_setframe’ that activates on entering the Captivate slide, this is set to the first animated frame in on the slide.
I have also created a restart button using a conditional action scripts
If
cpCmndPause is equal to 1
Then
Hide play_button and play_image
Show pause_button and pause_image
Assign cpCmndPause with 0
Assign cpCmndPause with 0
cpCmndGotoFrameAndResume with v_setframe
ELSE
cpCmndGotoFrameAndResume with v_setframe
If
cpCmndResume is equal to 0
then
Hide play_button and play_image
Show pause_button and pause_image
Assign cpCmndResume with 1
cpCmndGotoFrameAndResume with v_setframe
ELSE
cpCmndGotoFrameAndResume with v_setframe
The problem is when I pause and move on to a new slide then go back then the play button is visible
