Skip to main content
Inspiring
November 22, 2014
Question

Advanced Actions and Conditional Actions in Same Slide

  • November 22, 2014
  • 1 reply
  • 237 views

Greetings.

I'd like to use an advanced action to snag the frame number on entry (I know how to do this).

Also on entry, I'd to use an advanced action to hide a button if the user arrived here from a slide other than the previous slide (I know how to do this as well).

But....can I do both these for the same slide?

Thanks so much.

Daniel.

    This topic has been closed for replies.

    1 reply

    Lilybiri
    Legend
    November 22, 2014

    You mean combining a conditional with a standard action (both are advanced actions)? Have multiple examples on my blog. You need two decisions, one of them will be a mimicked standard action, with a condition that is always resulting in True. Something like:

    Decision 1 'Always'

       IF 1 is equal to 1

          Assign v_start with cpInfoCurrentFrame

    Decision 2: 'Checkit'

      IF cpInfoLastVisitedSlide....

          Hide..

    ELSE

         Show..

    idberlinAuthor
    Inspiring
    November 23, 2014

    Thanks for that.