PDA

View Full Version : Quiz - Advanced


ultrasound
10-27-2008, 08:55 AM
I am trying to design a quiz, but my experience with Autoplay is rather limited. I would like to contract the skill set of an advanced user to help me design this.
The basic premise of the quiz is to present a sound file with four options to identify the file (one being correct, and the other three being incorrect).
The first page would be a registration page requesting the user's basic contact information (name, company, email address, phone, and permission to be added to our database). Upon successful registration the quiz taker would go to first page of the quiz.
There will be up to 10 quiz questions, therefore, 10 audio files.
The quiz should be able to calculate the number correct out of 10.
The quiz should offer hint dialogs for each audio file.
The quiz submit the results of the quiz to our database (can be a simple csv file).

TJ_Tigger
10-27-2008, 04:04 PM
Send me a PM I would be willing to help adapt the quiz template that is included in AMS7 to meet your needs.

degger
10-28-2008, 12:45 AM
ok.. i will help u..
basicly my program would be like this
1. form to fill contac information
2. form to write quiz questions
3. folder to put your audio files
4 database file

send ur email to pcsource@mail.com

TJ_Tigger
10-30-2008, 08:04 AM
I have updated the quiz template to contain the capability to play audio files and show hints if available. Once you build the template there are two audio files one for true and one for false that go with the sample quiz. The audio files will play automatically, if you don't want this you can change the setting in the global functions.

The new actions are controlled by a few new functions defined in the global functions area.

Here is what a question looks like with hints added

<item>
<question type="mc">What number comes immediately after 1?</question>
<hints>
<hint>some hint here</hint>
<hint>another hint here</hint>
</hints>
<answer correct="y">2</answer>
<answer>3</answer>
<answer>4</answer>
<answer>5</answer>
</item>

and here is one with an audio file

<item>
<question type="tf">The number 25 is greater than 30?</question>
<audio>/AutoPlay/Audio/false.wav</audio>
<answer>True</answer>
<answer correct="y">False</answer>
</item>

This template does not contain the registration component but would be easy enough to add as would the submitting data.

HTH
Tigg

ultrasound
10-30-2008, 09:14 AM
Huge thank you! I'm testing the template now.