January 2, 2021
Click anywhere to enter the next step
Comments
(1)
January 2, 2021
Click anywhere to enter the next step
Newbie 1 posts
Followers: 0 people
(1)

Hi,

Does anyone know how to achieve the following actions:

There are 3 pictures, pictures A, B, C, when I enter the slide, the three pictures will not appear;  when I first click the mouse, picture A will appear; when I click the mouse for the second time, picture B will appear; when I click the mouse for the third  time, picture C will appear; when I click the mouse for the fourth time, it will go to the next side.

The time-based animation won’t be useful. And I also try to use Advance Actions, I can only implement the first two steps.

1 Comment
2021-01-04 07:36:08
2021-01-04 07:36:08

Create a multi-state object:

  • Normal state is empty (use a shape with Alpha and stroke = 0)
  • Second, third and fourth state have picture A, B, C

Create a user variable v_counter. Default value = 0

Create an advanced action with two decisions:

  1. First decision (standard) has two statements:
    Go to Next State …    indicate the multistate object
    Increment v_counter by 1
  2. Second decission (conditional)
    IF v_counter is equal to 3
    Go to Next slide

To trigger the action:

  • You can use the multistate object as button, but it will have to cover the whole slide. Take out the InBuilt states Rollover and Down.
  • More complicated and not fluid boxes friendly: use a click box over the whole slide
Like
(1)
Add Comment