Coursebuilder - tracking data across multiple pages

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

  1. #1

    Default Coursebuilder - tracking data across multiple pages

    I have created a 30 page e-learning course in Dreamweaver using the
    CourseBuilder extension.

    The last 6 pages are quiz pages with 3 questions on each page (a mixture of
    true/false and multiple choice) - I would like the final page after these six q
    to report the results of the viewer answering the questions over these six
    pages so therefore I am trying to track the data across multiple pages.

    I have seen tutorials which use a frameset arrangement using an interaction
    frame and a navigation frame.

    My presentation doesn't use framesets - the pages have a standard button
    navigation setup and no frames.

    Could anyone help please with a link or instructions as I am pulling my hair
    out!

    Thanks in advance.

    Decker Guest

  2. Similar Questions and Discussions

    1. combining multiple pages into one page with no loss of data
      I don't no when it happened but we used to be able to combine our letter head with other documents pretty easily. here's how we did it. Open...
    2. CourseBuilder: Multiple Choice tests
      :confused; I am a novice to Coursebuilder. I am building an instructional website in Dreamweaver for my Masters Project. For my testing I want...
    3. Multiple Correct in Coursebuilder?
      Forgive the newbie question, but is the multiple choice wizard in Coursebuilder able to create multiple-correct questions as well as multiple...
    4. Help! - Passing form data between multiple pages
      Hi, I am working on a multiple pages survey, right now if my user fill out page 1, click next, then fill out page2, page3, his answer will be...
    5. Best way to move data across multiple pages?
      I am trying to build a few pages basically emulating a wizard that you might find in a Windows product. A few fields to fill out on one page, move...
  3. #2

    Default Re: Coursebuilder - tracking data across multiple pages

    This is the particular code I am having problems with:

    This JavaScript code needs to be pasted into each quiz page:

    -------------------

    function initPage() {
    var navBar = parent.nav
    var thisQuizPage = navBar.findPage(document.URL)
    if (thisQuizPage.completed) {
    MM_setIntProps('G01.setDisabled(true);')
    } else {
    navBar.setTries(document.URL, 0)
    }
    }
    function updateQuiz() {
    parent.nav.setTries(document.URL, G01.tries);
    parent.nav.setTimes(document.URL, G01.time, G01.timeLimit);
    parent.nav.setScores(document.URL, G01.score);
    }

    -------------------

    However, I do not have a frameset setup - I have 7 seperate quiz pages
    (q1.html > q7.html) and a results. html page. All linked by a simple button
    navigation setup not a frameset.


    Decker Guest

  4. #3

    Default Re: Coursebuilder - tracking data across multiple pages

    Does anyone know of a good source of help for the Dreamweaver 8 Coursebuilder Extension?

    Rapid Intake seem to have lost interest in this extension and make little mention of it on their site....
    Decker 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