Skip to main content
johnsal4
Participant
September 11, 2020
Question

Slide Count: Omit a slide from the overall count

  • September 11, 2020
  • 1 reply
  • 167 views

Currently using the: $$cpInfoCurrentSlide$$ of $$cpInfoSlideCount$$ command to show slide count within my prject, I have a glossary slide within my deck. Is there a way to omit the glossary slide from the overall slide count?

This topic has been closed for replies.

1 reply

Lilybiri
Legend
September 11, 2020

I suppose you have those variables on each slide? Use an advanced action to calculate the wanted number of slides to show up and store it in a user variable. Apply that action to each slide On Enter, which is very easy since you can select all slides in the Filmstrip with CTRL-A:

  1. create a user variable v_count
  2. create this advanced action:
      Expression v_count = cpInfoSlideCount - 1
      Continue

The text on the master slide or timed for the rest of the project: $$cpInfoCurrentSlide$$/$$v_count$$

 

Or you could simply type in the number of slides of course