CourseBuilder Questions

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default CourseBuilder Questions

    Hello, i have just added the coursebuilder extension and am really excited
    about using it. I wondered whether anyone could answer a couple of questions i
    have about its functionality.

    1.) Is it possible to insert a reveal the answer button per question
    2) Is is possible to only check the answers once the whole quiz has been
    completed.
    3) Is it possible to add alt text descriptions to images.

    As a secondary question how hard will it be to implement this. I have
    intermediate HTML skills and am a quick learner but at the moment am a little
    daunted!

    Any help would be very much

    HeleneH Guest

  2. Similar Questions and Discussions

    1. Accessibility questions regarding CourseBuilder
      This has been asked on these forums before but there aren't any replies. Does anyone know if CourseBuilder meets accessibility standards? I'm...
    2. Matching questions in CourseBuilder
      I have a matching question set up in CourseBuilder. I want the answers to snap back if not dropped on target, but NOT snap back just because the...
    3. LMS - Coursebuilder
      hi, do you know how to make the questions in coursebuilder random. Coz i dont want students to just memorize the answer each time they take the...
    4. randomizing questions in coursebuilder
      hi, do you know how to make the questions in coursebuilder random. Coz i dont want students to just memorize the answer each time they take the...
    5. How to randomize questions in Coursebuilder
      This extension is really powerful, but the only thing missing is the randomize function. Can anyone tell me how to do it? In the elearning world,...
  3. #2

    Default Re: CourseBuilder Questions

    > 1.) Is it possible to insert a reveal the answer button per question

    You can have feedback for every choice if you want to. When I used it, I
    had "Good Job!" by the correct answer and "Sorry, the answer is blah" by the
    incorrect ones. But I had limited their attempts so it wasn't possible to
    go back and select the correct one and have it count.
    > 2) Is is possible to only check the answers once the whole quiz has been
    > completed.
    Surely. Use something like this:

    <FORM ACTION="<%=MM_editAction%>" METHOD="POST" NAME="submitscores"
    id="submitscores"
    onsubmit="MM_callJS('document.submitscores.score.v alue=G01.score+G02.score+G03.score+G04.score+G05.s core+G06.score+G07.score+G08.score+G09.score+G10.s core')">
    <input name="score" type="hidden" />
    <input name="StudentID" type="hidden" id="StudentID" value="<%=
    Session("StudentID") %>" />
    <input name="QuizNumber" type="hidden" id="QuizNumber" value="6" />
    <input name="QuizName" type="hidden" id="QuizName" value="Quiz 1" />
    <input type="submit" name="Submit" value="Send Score"
    onclick="recordScore(this)" />
    <input type="hidden" name="MM_insert" value="submitscores">
    </form>

    the JS functio n adds the answer of each question together where they
    received a point for a correct response and zero for incorrect. Then the
    score was associated with the Student ID and their score for that test was
    recorded in a database.
    > 3) Is it possible to add alt text descriptions to images.
    Just like any image, I would think.
    >
    > As a secondary question how hard will it be to implement this. I have
    > intermediate HTML skills and am a quick learner but at the moment am a
    > little
    > daunted!
    You have to play with it a little bit .. then you'll see what the Action
    Manager does and it's pretty easy once you try a couple of dry runs.


    --
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August, 2003)
    Technical Editor: Dreamweaver CS3: The Missing Manual,
    DMX 2004: The Complete Reference, DMX 2004: A Beginner's Guide
    Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP Web Development


    Nancy - Adobe Comm. Expert Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139