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

Coursebuilder - tracking data across multiple pages

New Here ,
Jun 22, 2008 Jun 22, 2008
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.
TOPICS
Extensions
513
Translate
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 ,
Jun 22, 2008 Jun 22, 2008
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.
Translate
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 ,
Jun 24, 2008 Jun 24, 2008
LATEST
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....
Translate
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