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

students can skip required questions

New Here ,
Feb 03, 2011 Feb 03, 2011

Copy link to clipboard

Copied

I've created a powerpoint with several quizzes embedded throughout the tutorial. The idea is for students to click through the powerpoint slides, and after every 2-3 slides, they have to answer a question to continue. Each question is contained in its own Presenter quiz. I've created my own customized feedback slide after each question so I have each quiz set to not show scores after each 'quiz'.

I want students to at least attempt to answer these questions before moving on, so each quiz is set to "Required." However, if you view a question, then go to a previous slide, and then return to the question, the 'next slide' button is enabled and the student can go to the next slide without attempting to answer the question.

Any thoughts out there??

Thanks!

Jay Buzhardt

TOPICS
Presenter

Views

452

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
New Here ,
Apr 22, 2011 Apr 22, 2011

Copy link to clipboard

Copied

LATEST

Hi Jay,

I don't if your still struggling with this problem, but I've also came across this and found a solution after a little bit of playing with actionscript. What I did to solve the problem is create an empty flash animation with some actionscript that sets the next button to invisible. Then, import that flash file into the slide you want it on, and resize or hide the animation in some blank white space. Then, I re-enabled the next button on the following slide with the reverse actionscript.

I don't believe I can upload my files to this post but if you have access to Flash, here is the code that should work for you.

this.onEnterFrame = function ()

{

          // use this code to turn off next button

          _root.m_controlBar.m_slideNextBtn.visible=0;

          _root.m_controlBar.m_slideNextBtnBG.visible=0;

     

        

      // use this to turn back on

          //_root.m_controlBar.m_slideNextBtn.visible=1;

          //_root.m_controlBar.m_slideNextBtnBG.visible=1;

     

        

      // turn off play button

          //_root.m_controlBar.m_playBtn.visible=0;

          //_root.m_controlBar.m_playBtnBG.visible=0;

}

To use the code, simply delete the // to remove the comment.

You'll want to publish flash in actionscript 2.0 and set the player to 6.0 for best results. It should work fine with any newer version. Hope this helps.

Craig.

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