• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Page Number for content slide only.

Community Beginner ,
Jan 08, 2021 Jan 08, 2021

Copy link to clipboard

Copied

We have created 20 page slide course (Content 10 slide and Quiz 10 slide), When we run publish build it show total page ount "1 of 20", But we only want view Content slide count, exmple: "1 of 10", no want to see quistion slide count, Please help to resolve this issue

TOPICS
Advanced actions , Editing , Import export , Quizzing and LMS

Views

131

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 09, 2021 Jan 09, 2021

Copy link to clipboard

Copied

Insertion of slide numbers is not set up by default, it needs to be done manually by insertion of two system variables on the main master slide, or on the first slide and timed for the rest of the project:

   $$cpInfoCurrentSlide$$/$$cpInfoSlideCount$$

 

On the contrary, quiz slides do have by default a Progress indicator, it is checked in the Quiz Preferences.

 

I wonder if you are not confusing both? 

To take the first combi (system variables) out of the quiz slides, make sure the Quizzing master slides do not inherit objects from the Main Master slide (if that was the workflow). If you used those system variables in a timed for the Rest of the Project scenario, use the On Enter action of the first quiz slide to hide that text container (having the system variables).

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
People's Champ ,
Jan 11, 2021 Jan 11, 2021

Copy link to clipboard

Copied

Since you only have 10 content slide it shouldn't take too much time to just use a text caption and manually change the text on each slide. But if you want to do it dynamically, you could create a variable pageCount and then execute this JavaScript in an Advanced Action on each slide. It will do what you want and also hide the page numbering if on a question slide.

 

if ( window.cpInfoCurrentSlideType === "Question Slide" )
{
window.pageCount = '';
}
else
{
var quizTotal = cp.model.data.project_main.questions.split( ',' ).length;
var myTotal = window.cpInfoSlideCount - quizTotal;
window.pageCount = window.cpInfoCurrentSlide + " of " + myTotal;
}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 11, 2021 Jan 11, 2021

Copy link to clipboard

Copied

Thank you guys for your Reply. this issue resolved.

We have just placed this simple script "$$cpInfoCurrentSlide$$ of 10" (10 is total content slide) on first slide, and its work. Its showing me 1 of 10 instead of 1 of 20. :).

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 11, 2021 Jan 11, 2021

Copy link to clipboard

Copied

LATEST

Guys can you help us on my last post. here is link my post.

https://community.adobe.com/t5/captivate/marathi-text-not-support-captivate-build/m-p/11731613?page=...

This will be relly help me,  we have english course to locaized in many Indian languages.

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Help resources