Creating a Survey - Novice Question

Hello,
I am extrememely new to Javascript.  I have been doing some research online and copy/pasting code to create the results I need.  I am trying to create an online survey in which users select buttons to answer questions and then the total results appear at the bottom of the survey.  So far this is what I have:
http://sicolaconsulting.com/SurveyTest4.php
The problem I have with this is that on each line, a user can select more than one box.  I don't want this so I thought radio buttons would be better.  I then came up with this:
http://sicolaconsulting.com/SurveyTest3.php
The problem with this is that with the function I am using, I can only get it to display the value of the first line.  I need it to calculate the sum of all the lines.
Can you help me revise the script I have to get my desired result. 
Here is my code for the first page, followed by the code for the second page.  THANK YOU!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<title>Survey</title>
<style type="text/css">
body,td,th {
          font-family: Tahoma, Geneva, sans-serif;
</style>
<link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
<title>Survey</title>
<script type="text/javascript">
          function TotalPart1A() {
                    document.survey.Total1A.value = '';
                    var sum = 0;
                    for (i=0;i<document.survey.Part1A.length;i++) {
                      if (document.survey.Part1A[i].checked) {
                                sum = sum + parseInt(document.survey.Part1A[i].value);
                    document.survey.Total1A.value = sum;
</script>
<link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper"><br />
  <div id="survey-header"><strong>Purpose:</strong><br />
    The Learning Style Survey assesses your general approach to learning. <br />
    It does not predict your behavior, but it is a clear indication of your overall style preferences.<br />
    <br />
    <strong>Instructions:</strong><br />
    For each item circle the response that represents your approach. Complete all items. <br />
    There are eleven major activities representing twelve different aspects of your learning style. <br />
    When you read the statements, try to think about what you generally do when learning. <br />
    <br />
    <strong>Time:</strong><br />
    It takes about 30 minutes to complete the survey. Do not spend too much time on any item. Indicate your immediate response (or feeling) and move on to the next item. <br />
    <br />
    <strong>For each item, enter your immediate response:<br />
      0 = Never  1 = Rarely  2 = Sometimes  3 = Often  4 = Always</strong><br />
  </div>
          <div id="survey">
<form name="survey">
          <div id="survey-section1">
                <table class="survey-table" cellspacing="0" width="812">
                  <tr>
                    <td height="24" colspan="2" align="left" bgcolor="#CCCCCC"><strong>Part 1: How I Use My Physical Senses</strong></td>
                    <td height="24" align="center" bgcolor="#CCCCCC"><strong>1</strong></td>
                    <td height="24" align="center" bgcolor="#CCCCCC"><strong>2</strong></td>
                    <td height="24" align="center" bgcolor="#CCCCCC"><strong>3</strong></td>
                    <td height="24" align="center" bgcolor="#CCCCCC"><strong>4</strong></td>
                    </tr>
                  <tr>
                    <td width="31" height="27">1</td>
                    <td width="515" align="left">I remember something better if I write it down.</td>
                    <td width="60"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td width="60"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td width="60"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td width="60"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td width="31" bgcolor="#EAEAEA">2</td>
                    <td height="27" align="left" bgcolor="#EAEAEA"> I take detailed notes during lectures.</td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td>3</td>
                    <td height="27" align="left">When I listen, I visualize pictures, numbers, or words in my head.</td>
                    <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td bgcolor="#EAEAEA">4</td>
                    <td height="27" align="left" bgcolor="#EAEAEA"> I prefer to learn with TV or video rather than other media. </td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td>5</td>
                    <td height="27" align="left"> I use color coding to help me as I learn to work.</td>
                    <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td bgcolor="#EAEAEA">6</td>
                    <td height="27" align="left" bgcolor="#EAEAEA"> I need written directions for tasks.</td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td>7</td>
                    <td height="27" align="left"> I have to look at people to understand what they say.</td>
                    <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td bgcolor="#EAEAEA">8</td>
                    <td height="27" align="left" bgcolor="#EAEAEA">I understand lecturers better when they write on the board.</td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td>9</td>
                    <td height="27" align="left">Charts, diagrams, and maps help me understand what someone says. </td>
                    <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td bgcolor="#EAEAEA">10</td>
                    <td height="27" align="left" bgcolor="#EAEAEA">I remember people’s faces, but not their names. </td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                    <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                    </tr>
                  <tr>
                    <td> </td>
                    <td height="27" align="right">A TOTAL: </td>
                    <td colspan="2"><input type="text" size="10" name="Total1A" value="0"/></td>
                    <td align="right"> </td>
                    <td> </td>
                    </tr>
                  <tr>
                    <td> </td>
                    <td height="27" align="right"> </td>
                    <td> </td>
                    <td> </td>
                    <td align="right"> </td>
                    <td> </td>
                    </tr>
                  </table>
</form>
            </div>
          </div>
    </body>
    </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<title>Survey</title>
<style type="text/css">
body,td,th {
          font-family: Tahoma, Geneva, sans-serif;
</style>
<link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
          function TotalPart1A() {
                    document.survey.Total1A.value = '';
                    var sum = 0;
                    for (i=0;i<document.survey.radiogroup1A.length;i++) {
                      if (document.survey.radiogroup1A[i].checked) {
                                sum = sum + parseInt(document.survey.radiogroup1A[i].value);
                    document.survey.Total1A.value = sum;
</script>
<link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper"><br />
  <div id="survey-header"><strong>Purpose:</strong><br />
    The Learning Style Survey assesses your general approach to learning. <br />
    It does not predict your behavior, but it is a clear indication of your overall style preferences.<br />
    <br />
    <strong>Instructions:</strong><br />
    For each item circle the response that represents your approach. Complete all items. <br />
    There are eleven major activities representing twelve different aspects of your learning style. <br />
    When you read the statements, try to think about what you generally do when learning. <br />
    <br />
    <strong>Time:</strong><br />
    It takes about 30 minutes to complete the survey. Do not spend too much time on any item. Indicate your immediate response (or feeling) and move on to the next item. <br />
    <br />
    <strong>For each item, enter your immediate response:<br />
      0 = Never  1 = Rarely  2 = Sometimes  3 = Often  4 = Always</strong><br />
  </div>
  <div id="survey">
    <form name="survey" id="survey">
      <div id="survey-section1">
      <table class="survey-table" cellspacing="0" width="812">
        <tr>
          <td height="24" colspan="2" align="left" bgcolor="#CCCCCC"><strong>Part 1: How I Use My Physical Senses</strong></td>
          <td height="24" align="center" bgcolor="#CCCCCC"><strong>1</strong></td>
          <td height="24" align="center" bgcolor="#CCCCCC"><strong>2</strong></td>
          <td height="24" align="center" bgcolor="#CCCCCC"><strong>3</strong></td>
          <td height="24" align="center" bgcolor="#CCCCCC"><strong>4</strong></td>
        </tr>
        <tr>
          <td width="31" height="27">1</td>
          <td width="515" align="left">I remember something better if I write it down.</td>
          <td width="60"><input type="radio" name="radiogroup1A" value="1" onchange="TotalPart1A()"/></td>
          <td width="60"><input type="radio" name="radiogroup1A" value="2" onchange="TotalPart1A()"/></td>
          <td width="60"><input type="radio" name="radiogroup1A" value="3" onchange="TotalPart1A()"/></td>
          <td width="60"><input type="radio" name="radiogroup1A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td width="31" bgcolor="#EAEAEA">2</td>
          <td height="27" align="left" bgcolor="#EAEAEA"> I take detailed notes during lectures.</td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="1" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="2" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="3" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td>3</td>
          <td height="27" align="left">When I listen, I visualize pictures, numbers, or words in my head.</td>
          <td><input type="radio" name="radiogroup3A" value="1" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup3A" value="2" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup3A" value="3" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup3A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td bgcolor="#EAEAEA">4</td>
          <td height="27" align="left" bgcolor="#EAEAEA"> I prefer to learn with TV or video rather than other media. </td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="1" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="2" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="3" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td>5</td>
          <td height="27" align="left"> I use color coding to help me as I learn to work.</td>
          <td><input type="radio" name="radiogroup5A" value="1" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup5A" value="2" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup5A" value="3" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup5A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td bgcolor="#EAEAEA">6</td>
          <td height="27" align="left" bgcolor="#EAEAEA"> I need written directions for tasks.</td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="1" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="2" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="3" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td>7</td>
          <td height="27" align="left"> I have to look at people to understand what they say.</td>
          <td><input type="radio" name="radiogroup7A" value="1" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup7A" value="2" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup7A" value="3" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup7A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td bgcolor="#EAEAEA">8</td>
          <td height="27" align="left" bgcolor="#EAEAEA">I understand lecturers better when they write on the board.</td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="1" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="2" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="3" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td>9</td>
          <td height="27" align="left">Charts, diagrams, and maps help me understand what someone says. </td>
          <td><input type="radio" name="radiogroup9A" value="1" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup9A" value="2" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup9A" value="3" onchange="TotalPart1A()"/></td>
          <td><input type="radio" name="radiogroup9A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td bgcolor="#EAEAEA">10</td>
          <td height="27" align="left" bgcolor="#EAEAEA">I remember people’s faces, but not their names. </td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="1" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="2" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="3" onchange="TotalPart1A()"/></td>
          <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="4" onchange="TotalPart1A()"/></td>
        </tr>
        <tr>
          <td> </td>
          <td height="27" align="right">A TOTAL: </td>
          <td colspan="2"><input type="text" size="10" name="Total1A" value="0"/></td>
          <td align="right"> </td>
          <td> </td>
        </tr>
        <tr>
          <td> </td>
          <td height="27" align="right"> </td>
          <td> </td>
          <td> </td>
          <td align="right"> </td>
          <td> </td>
        </tr>
      </table>
    </form>
  </div>
</div>
</body>
</html>

This is not the right forum for this question. This form is for JavaScript programming in Acrobat. The Dreamweaver forum here may be more appropriate.

Similar Messages

  • Creating a Survey - Novice Javascript Question

    Hello,
    I am extrememely new to Javascript.  I have been doing some research online and copy/pasting code to create the results I need.  I am trying to create an online survey in Dreamweaver in which users select buttons to answer questions and then the total results appear at the bottom of the survey.  So far this is what I have:
    http://sicolaconsulting.com/SurveyTest4.php
    The problem I have with this is that on each line, a user can select more than one box.  I don't want this so I thought radio buttons would be better.  I then came up with this:
    http://sicolaconsulting.com/SurveyTest3.php
    The problem with this is that with the function I am using, I can only get it to display the value of the first line.  I need it to calculate the sum of all the lines.
    Can you help me revise the script I have to get my desired result.
    Here is my code for the first page, followed by the code for the second page.  THANK YOU!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <title>Survey</title>
    <style type="text/css">
    body,td,th {
              font-family: Tahoma, Geneva, sans-serif;
    </style>
    <link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
    <title>Survey</title>
    <script type="text/javascript">
              function TotalPart1A() {
                        document.survey.Total1A.value = '';
                        var sum = 0;
                        for (i=0;i<document.survey.Part1A.length;i++) {
                          if (document.survey.Part1A[i].checked) {
                                    sum = sum + parseInt(document.survey.Part1A[i].value);
                        document.survey.Total1A.value = sum;
    </script>
    <link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper"><br />
      <div id="survey-header"><strong>Purpose:</strong><br />
        The Learning Style Survey assesses your general approach to learning. <br />
        It does not predict your behavior, but it is a clear indication of your overall style preferences.<br />
        <br />
        <strong>Instructions:</strong><br />
        For each item circle the response that represents your approach. Complete all items. <br />
        There are eleven major activities representing twelve different aspects of your learning style. <br />
        When you read the statements, try to think about what you generally do when learning. <br />
        <br />
        <strong>Time:</strong><br />
        It takes about 30 minutes to complete the survey. Do not spend too much time on any item. Indicate your immediate response (or feeling) and move on to the next item. <br />
        <br />
        <strong>For each item, enter your immediate response:<br />
          0 = Never  1 = Rarely  2 = Sometimes  3 = Often  4 = Always</strong><br />
      </div>
              <div id="survey">
    <form name="survey">
              <div id="survey-section1">
                    <table class="survey-table" cellspacing="0" width="812">
                      <tr>
                        <td height="24" colspan="2" align="left" bgcolor="#CCCCCC"><strong>Part 1: How I Use My Physical Senses</strong></td>
                        <td height="24" align="center" bgcolor="#CCCCCC"><strong>1</strong></td>
                        <td height="24" align="center" bgcolor="#CCCCCC"><strong>2</strong></td>
                        <td height="24" align="center" bgcolor="#CCCCCC"><strong>3</strong></td>
                        <td height="24" align="center" bgcolor="#CCCCCC"><strong>4</strong></td>
                        </tr>
                      <tr>
                        <td width="31" height="27">1</td>
                        <td width="515" align="left">I remember something better if I write it down.</td>
                        <td width="60"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td width="60"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td width="60"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td width="60"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td width="31" bgcolor="#EAEAEA">2</td>
                        <td height="27" align="left" bgcolor="#EAEAEA"> I take detailed notes during lectures.</td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td>3</td>
                        <td height="27" align="left">When I listen, I visualize pictures, numbers, or words in my head.</td>
                        <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td bgcolor="#EAEAEA">4</td>
                        <td height="27" align="left" bgcolor="#EAEAEA"> I prefer to learn with TV or video rather than other media. </td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td>5</td>
                        <td height="27" align="left"> I use color coding to help me as I learn to work.</td>
                        <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td bgcolor="#EAEAEA">6</td>
                        <td height="27" align="left" bgcolor="#EAEAEA"> I need written directions for tasks.</td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td>7</td>
                        <td height="27" align="left"> I have to look at people to understand what they say.</td>
                        <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td bgcolor="#EAEAEA">8</td>
                        <td height="27" align="left" bgcolor="#EAEAEA">I understand lecturers better when they write on the board.</td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td>9</td>
                        <td height="27" align="left">Charts, diagrams, and maps help me understand what someone says. </td>
                        <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td bgcolor="#EAEAEA">10</td>
                        <td height="27" align="left" bgcolor="#EAEAEA">I remember people’s faces, but not their names. </td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td> </td>
                        <td height="27" align="right">A TOTAL: </td>
                        <td colspan="2"><input type="text" size="10" name="Total1A" value="0"/></td>
                        <td align="right"> </td>
                        <td> </td>
                        </tr>
                      <tr>
                        <td> </td>
                        <td height="27" align="right"> </td>
                        <td> </td>
                        <td> </td>
                        <td align="right"> </td>
                        <td> </td>
                        </tr>
                      </table>
    </form>
                </div>
              </div>
        </body>
        </html>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <title>Survey</title>
    <style type="text/css">
    body,td,th {
              font-family: Tahoma, Geneva, sans-serif;
    </style>
    <link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
              function TotalPart1A() {
                        document.survey.Total1A.value = '';
                        var sum = 0;
                        for (i=0;i<document.survey.radiogroup1A.length;i++) {
                          if (document.survey.radiogroup1A[i].checked) {
                                    sum = sum + parseInt(document.survey.radiogroup1A[i].value);
                        document.survey.Total1A.value = sum;
    </script>
    <link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper"><br />
      <div id="survey-header"><strong>Purpose:</strong><br />
        The Learning Style Survey assesses your general approach to learning. <br />
        It does not predict your behavior, but it is a clear indication of your overall style preferences.<br />
        <br />
        <strong>Instructions:</strong><br />
        For each item circle the response that represents your approach. Complete all items. <br />
        There are eleven major activities representing twelve different aspects of your learning style. <br />
        When you read the statements, try to think about what you generally do when learning. <br />
        <br />
        <strong>Time:</strong><br />
        It takes about 30 minutes to complete the survey. Do not spend too much time on any item. Indicate your immediate response (or feeling) and move on to the next item. <br />
        <br />
        <strong>For each item, enter your immediate response:<br />
          0 = Never  1 = Rarely  2 = Sometimes  3 = Often  4 = Always</strong><br />
      </div>
      <div id="survey">
        <form name="survey" id="survey">
          <div id="survey-section1">
          <table class="survey-table" cellspacing="0" width="812">
            <tr>
              <td height="24" colspan="2" align="left" bgcolor="#CCCCCC"><strong>Part 1: How I Use My Physical Senses</strong></td>
              <td height="24" align="center" bgcolor="#CCCCCC"><strong>1</strong></td>
              <td height="24" align="center" bgcolor="#CCCCCC"><strong>2</strong></td>
              <td height="24" align="center" bgcolor="#CCCCCC"><strong>3</strong></td>
              <td height="24" align="center" bgcolor="#CCCCCC"><strong>4</strong></td>
            </tr>
            <tr>
              <td width="31" height="27">1</td>
              <td width="515" align="left">I remember something better if I write it down.</td>
              <td width="60"><input type="radio" name="radiogroup1A" value="1" onchange="TotalPart1A()"/></td>
              <td width="60"><input type="radio" name="radiogroup1A" value="2" onchange="TotalPart1A()"/></td>
              <td width="60"><input type="radio" name="radiogroup1A" value="3" onchange="TotalPart1A()"/></td>
              <td width="60"><input type="radio" name="radiogroup1A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td width="31" bgcolor="#EAEAEA">2</td>
              <td height="27" align="left" bgcolor="#EAEAEA"> I take detailed notes during lectures.</td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td>3</td>
              <td height="27" align="left">When I listen, I visualize pictures, numbers, or words in my head.</td>
              <td><input type="radio" name="radiogroup3A" value="1" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup3A" value="2" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup3A" value="3" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup3A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td bgcolor="#EAEAEA">4</td>
              <td height="27" align="left" bgcolor="#EAEAEA"> I prefer to learn with TV or video rather than other media. </td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td>5</td>
              <td height="27" align="left"> I use color coding to help me as I learn to work.</td>
              <td><input type="radio" name="radiogroup5A" value="1" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup5A" value="2" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup5A" value="3" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup5A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td bgcolor="#EAEAEA">6</td>
              <td height="27" align="left" bgcolor="#EAEAEA"> I need written directions for tasks.</td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td>7</td>
              <td height="27" align="left"> I have to look at people to understand what they say.</td>
              <td><input type="radio" name="radiogroup7A" value="1" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup7A" value="2" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup7A" value="3" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup7A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td bgcolor="#EAEAEA">8</td>
              <td height="27" align="left" bgcolor="#EAEAEA">I understand lecturers better when they write on the board.</td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td>9</td>
              <td height="27" align="left">Charts, diagrams, and maps help me understand what someone says. </td>
              <td><input type="radio" name="radiogroup9A" value="1" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup9A" value="2" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup9A" value="3" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup9A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td bgcolor="#EAEAEA">10</td>
              <td height="27" align="left" bgcolor="#EAEAEA">I remember people’s faces, but not their names. </td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td> </td>
              <td height="27" align="right">A TOTAL: </td>
              <td colspan="2"><input type="text" size="10" name="Total1A" value="0"/></td>
              <td align="right"> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td height="27" align="right"> </td>
              <td> </td>
              <td> </td>
              <td align="right"> </td>
              <td> </td>
            </tr>
          </table>
        </form>
      </div>
    </div>
    </body>
    </html>

    Hi Nancy,
    I've been away from this for a while and have picked it back up.  I tried your suggested code and I'm having problems getting it to work.  I created a file using the code you supplied for the survey here:
    view-source:http://www.littlechisel.com/clients/GreenSurvey/GreenSurvey.html
    It doesn't work so I know I'm missing something.  If you could advise me on this, it would be great.  Thanks! Here is the code as I have it:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <script type="text/javascript">
    function calcscore() {
        var score = 0;
        $(".calc:checked").each(function() {
            score += parseInt($(this).val(), 10);
        $("input[name=sum]").val(score)
    $().ready(function() {
        $(".calc").change(function() {
            calcscore()
    </script>
    <link href="stylesheets/Survey.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <h1>jQuery Sum of Radio Fields</h1>
    <form action="">
    <h2>HOW GREEN ARE YOU?</h2>
    <p><strong>I walk/bicycle  to work/school. </strong><br>
    Yes
    <input class="calc" type="radio" name="radio1" value="10">
    No
    <input class="calc" type="radio" name="radio1" value="0">
    Sometimes
    <input class="calc" type="radio" name="radio1" value="5"></p>
    <p><strong>I buy  locally grown food. </strong><br>
    Yes
    <input class="calc" type="radio" name="radio2" value="10">
    No
    <input class="calc" type="radio" name="radio2" value="0">
    Sometimes
    <input class="calc" type="radio" name="radio2" value="5"></p>
    <p><strong>I recycle. </strong><br>
    Yes
    <input class="calc" type="radio" name="radio3" value="10">
    No
    <input class="calc" type="radio" name="radio3" value="0">
    Sometimes
    <input class="calc" type="radio" name="radio3" value="5"></p>
    <p><strong>I compost. </strong><br>
    Yes
    <input class="calc" type="radio" name="radio4" value="10">
    No
    <input class="calc" type="radio" name="radio4" value="0">
    Sometimes
    <input class="calc" type="radio" name="radio4" value="5"></p>
    <p>Total Green Score:
    <input type="text" name="sum">
    </p>
    </form>
    </body>
    </html>

  • Creating a survey in acrobat, processing on hard copy, and data compiling via Acrobat scanning

    Hi there,
    I am new to creating PDF forms using Acrobat Pro 9. I have been asked by my manager to sort out a way we can create a survey (for staff)and have the data input to the survey, processed and compiled ready for an analyst to create a report of the data.
    Basically, this is a survey of staff by staff, anonymous and to be completed on hard copy (Printed PDF with survey template).
    So, I have started to think about the best way to go about this, can I create a survey in Acrobat, print it, fill out the multiple choice questions, scan it in Adobe, and allow acrobat to gather the data?
    Personally I would like to use Acrobat (as I am enjoying learning it), but is this the right tool for that job? Is there a feature that enables multiple choice surveys to be created, printed, filled out, scanned again (with answers filled in), and compiles the data?
    I hope I have explained that clear enough...;-)
    Kind regards
    Kevin

    By itself Acrobat does not "compile data".
    By the way nothing compiles data from a picture. All scanners output a picture of the scanned paper (that is, an image file such as TIFF).
    Acrobat can perform Optical Character Recognition (OCR) of the picture of text.
    The OCR output is the characters - no format, tables, rows, columns, no text styling, etc.
    So harvesting useful information can pose something of a challenge.
    You may want to consider manually compiling the results.
    Be well...

  • Creating a survey in Pages

    I need to create a survey for a research project. I'd like to have checkboxes for participants to select. Having a difficult time trying to figure out how to do this in pages. Is there an easy way to create a survey?

    First understand what a placeholder is.
    A placeholder is a snippet of text or an image that is completely selected and replaced by clicking on it or dragging text onto it.
    So you can make the entire Question & Answer one place holder or you can make each part of it a placeholder so you can drag those components onto it.
    To make a place holder, select the text or image:
    +Menu > Format > Advanced > Define as Placeholder Text+
    +Inspector > Layout > Columns+
    Download the Pages09_UserGuide.pdf from under the Help menu and familiarise yourself with how Pages works.
    You may also find this useful:
    http://www.freeforum101.com/iworktipsntrick/
    Peter

  • Need help creating a survey

    So I'm trying to create a survey in flex and I'm having some problems.
    It's supposed to be a 50 question survey that will total the values of your answer and display them when you're done. I'm trying to access the values of the radiobuttongroups in the different states, but I can't figure out a way to make it work. Can anyone help me?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" currentState="state1">
        <mx:Script>
            <![CDATA[
                import flash.events.Event;
                private function handleValues(event:Event):void{
                    //Handle Multiple Values
                    var i:int;
                    var charlie:String = new String();
                    var oscar:String = new String();
                    var mike:int;
                    var total:int;
                    for(i = 1; i <= 2; i++){
                        oscar = "answer" + i;
                        charlie = "state" + i;
                        mike = this[charlie].this[oscar].selectedValue.toString();
                        total = total + mike;
                        trace(oscar);
                        trace(mike);
                    answerlabel.text = total.toString();
            ]]>
        </mx:Script>
        <mx:states>
            <mx:State name="state1">
                <mx:AddChild position="lastChild">
                    <mx:RadioButtonGroup id="answer1"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:RadioButton x="191" y="270" label="Button 1" groupName="answer1" value="1"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:RadioButton x="191" y="296" label="Button 2" groupName="answer1" value="2"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:Button x="489" y="447" label="next" id="nextbutton" click="currentState='state2'"/>
                </mx:AddChild>
            </mx:State>
            <mx:State name="state2">
                <mx:AddChild position="lastChild">
                    <mx:RadioButtonGroup id="answer2"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:RadioButton x="451" y="303" label="Button 1" groupName="answer2" value="1"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:RadioButton x="451" y="329" label="Button 2" groupName="answer2" value="2"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:Button x="128" y="427" label="prev" id="prevbutton" click="currentState='state1'"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:Button x="472" y="427" label="submit" id="submitbutton" click="handleValues(event); currentState='state3'"/>
                </mx:AddChild>
            </mx:State>
            <mx:State name="state3">
                <mx:AddChild position="lastChild">
                    <mx:Label x="313" y="291" text="Label" id="answerlabel"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:Button x="300" y="386" label="again?" id="startover" click="currentState='state1'"/>
                </mx:AddChild>
            </mx:State>
        </mx:states>
    </mx:Application>

    So I'm trying to create a survey in flex and I'm having some problems.
    It's supposed to be a 50 question survey that will total the values of your answer and display them when you're done. I'm trying to access the values of the radiobuttongroups in the different states, but I can't figure out a way to make it work. Can anyone help me?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" currentState="state1">
        <mx:Script>
            <![CDATA[
                import flash.events.Event;
                private function handleValues(event:Event):void{
                    //Handle Multiple Values
                    var i:int;
                    var charlie:String = new String();
                    var oscar:String = new String();
                    var mike:int;
                    var total:int;
                    for(i = 1; i <= 2; i++){
                        oscar = "answer" + i;
                        charlie = "state" + i;
                        mike = this[charlie].this[oscar].selectedValue.toString();
                        total = total + mike;
                        trace(oscar);
                        trace(mike);
                    answerlabel.text = total.toString();
            ]]>
        </mx:Script>
        <mx:states>
            <mx:State name="state1">
                <mx:AddChild position="lastChild">
                    <mx:RadioButtonGroup id="answer1"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:RadioButton x="191" y="270" label="Button 1" groupName="answer1" value="1"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:RadioButton x="191" y="296" label="Button 2" groupName="answer1" value="2"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:Button x="489" y="447" label="next" id="nextbutton" click="currentState='state2'"/>
                </mx:AddChild>
            </mx:State>
            <mx:State name="state2">
                <mx:AddChild position="lastChild">
                    <mx:RadioButtonGroup id="answer2"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:RadioButton x="451" y="303" label="Button 1" groupName="answer2" value="1"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:RadioButton x="451" y="329" label="Button 2" groupName="answer2" value="2"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:Button x="128" y="427" label="prev" id="prevbutton" click="currentState='state1'"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:Button x="472" y="427" label="submit" id="submitbutton" click="handleValues(event); currentState='state3'"/>
                </mx:AddChild>
            </mx:State>
            <mx:State name="state3">
                <mx:AddChild position="lastChild">
                    <mx:Label x="313" y="291" text="Label" id="answerlabel"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:Button x="300" y="386" label="again?" id="startover" click="currentState='state1'"/>
                </mx:AddChild>
            </mx:State>
        </mx:states>
    </mx:Application>

  • Reporting on Custom Surveys to Question and Answer level.

    Hello,
    We are looking to report against a survey which shows the detail of the Question and Answer in detail. For example in a visit you create a survey saying
    Q1) Primary Drink preferred
    A) Coke
    Q2) Secondary Drink Preferred
    A) Pepsi
    Q3) Primary Objecction?
    A) Too Sweet.
    Q4) Secondary Objection?
    A) Too Light color
    Now can we report against per visit to the detail Question and Answer level of this survey like?
    Visit --> Primary Drink  --> Secondary Drink --> Primary Objection  --> Secondary Objection
    001 -->  Coke              --> Pepsi                 --> Too Sweet            --> Too light Color.
    002 --> Sprite              --> Sierra Mist         --> Not strong             --> Too Sweet.
    I saw only like we can report against some scores for a Question or Answer. Is there any way where we can do it at the detail level in reports .
    We are currently in SoD 1405. Any direction of help appreciated.
    Thank You,
    Pavan

    Hello Pavan,
    The questions and answers descriptions are not possible to display in the reports today.
    However, you should use the questions and answers category in order to achieve the report you described.
    Basically, you will need to create one question category and one answer category per possible answer / question:
    Q1) Primary Drink preferred --> Question Category A
    A) Coke   -->    Answer Category 1
    B) Sprite  -->    Answer Category 2
    C) Fanta  -->    Answer Category 3
    Now if you need an answer with a price, you will use the "Actual Price" standard category, you can directly
    use the key figure “ Average Actual Product Price”.
    Hope it helps.
    Regards,
    Gaylord

  • Captivate 5 Survey Result Question

    We are trying to create a Survey in Captivate 5 which will not report out to LMS.  I am trying to find a way to get the Survey results (2 Question per slide 18 questions total) to display to the learners.  For instance, Slide 1 is A) B) question, slide 2 is 1) 2) question and then starts back with A) B) on Slide 3.  I need a total of A) B) 1) 2) for the learners.  We are using this in place of a handout if possible.  I would assign 1 point for each question and then have them tally at the end for the learners.
    Let me know if anyone has any thoughts.  I have searched the forum and did not find anything similar.  I appoligize in advance if this is answered somewhere else.

    Hi Lilybiri,
    I can see the confusion.  We are not scoring in the sense that this is pass/fail.  What we want to do is have the answers tally for the learner.  The goal is that if you received 5 - A)'s, 3 - B)'s, 2 - 1)'s and 1- 2)'s those results would display.  So if I have a questions such as below:
    1. Please pick which best describes you:
    A) Easy to work with
    B) Difficult to work with
    2. Please pick which best describes you:
    1) Task oriented
    2) Free thinker
    The answers selected would then tally up at the end for the learner.  The questions repeat with different choice selections between A) B) and 1) 2).
    Does that help explain what I am look at doing?
    Thanks,
    Nicole MacVey-Bogard
    Instructional Designer | Enabling Areas Talent Development
    Deloitte Services LP
    Main: +1 800 335 6488 | Direct: +1 615 882 6642 | Fax: +1 615 750 6642
    [email protected] | http://www.deloitte.com
    This message (including any attachments) contains confidential information intended for a specific individual and purpose, and is
    protected by law. If you are not the intended recipient, you should delete this message.
    Any disclosure, copying, or distribution of this message, or the taking of any action based on it, is strictly prohibited.
    v.E.1

  • Java Novice Question (don't shoot me)

    Hello,
    I wanted to ask a very novice question, that I can't seem to find an answer to.
    I have Eclipse IDE for Java, and I also have Visual Studio (C#). In Visual Studio, you can create a application project, drag and drop a button, then double click the button tod be taken to the code behind the button, that's where you insert your code on what you want the button to do once you click it.
    Is there something similiar to that in Java (I know there must be), where you can drag and drop textboxes, buttons, etc., and then double click those items to code?
    Any light that ANYONE can shed on this would be highly appreciated!
    Thanks!
    Waleed

    waldo33 wrote:
    Okay, thank you for the patience! I will download the "kitchen sink" version, and by that I assume you mean the biggest Netbeans file :)Yeap.
    Regarding "building a website"...by that I mean...I want to build a simple website, which incorporates (MySQL which I already installed, installed the ConnectorJ, etc.), a front end (JSP would be nice, which i'm learning), and ofcourse the backend Java coding.Right. Thats not what I got from your first message. I thought your were simply after create a rich client (I.e. Java Swing). Creating a web site is a more advanced topic. I don't know of any GUI editors for it, but then I don't do it (I half expect someone to post IntelliJ IDEA now). But we are just talking HTML and lots of HTML editors exist.
    I don't care how easy the website, as long as I can learn (on a basic level). You are going to have to look up tutorials on Java EE.Personally I don't think this is a "new to java" topic.
    (Scary, covers all of JEE) [The Java EE 5 Tutorial|http://java.sun.com/javaee/5/docs/tutorial/doc/]
    Re: "Right tool for right job"...are you suggesting that I have Eclipse for coding Java, and NetBeans for more GUI apps and developement?The UI for rich clients I do in NetBeans. Everything else I do in Eclipse. But this is just me, and I'm luck enough to be able to dictate tool chains.

  • Can I create a survey questionnaire using labview

    I would like to create a survey questionnaire to be run in a PDA. can I do the same using labview?
    I am using a windows 2000 OS.
    I want to use labview for creating such a questioannaire and then run it in a PDA

    Yes, you could easily create a questionaire application for a PDA with the LabVIEW PDA Module. The programming techniques used are the same as LabVIEW for Windows.
    One thing to note is that a license is required to deploy the applications built with the LabVIEW PDA module on to each PDA. The modules come with one license to deploy applications on to one PDA and additional licenses can be purchased.
    Regards,
    JR A.
    Application Engineer
    National Instruments

  • I would like to know what is the best product to create a survey

    I would to create a survey on a Web Site of multiple choice answers and each answer has a value and the score is displayed on screen.
    I have managed to create a form in Google Forms and I can give each answer a value and create a total however I can't get it to display the answer on the web Form.
    I am creating the Web Site in Muse and I have the Creative Cloud membership and considering purchasing another product to create this form in however I want to know the product can handle my request.

    You might want to post in the Muse forum. It's certainly possible to create such an HTML form with the addition of a bit of JavaScript, but I'm not sure if Muse has the tools to set this up. If not, the Dreamweaver forum should be your next stop.

  • Created Quiz in Captivate 4. How can I create a report on Question Level

    I have created a quiz in Captivate 4. I would like to create a report on question level. for e.g., I'd like to determine the no. of users that answered wrong on specific question consistently. This helps us to go back and tweak the quiz to make it more learning friendly.

    Hi there
    This is normally handled by virtue of installing a Learning Management System (LMS). You then upload the Captivate into the LMS and the LMS handles aggregating and keeping track of performance.
    Captivate does offer an E-Mail reporting function, but it's far from reliable and not remotely secure. Additionally you would be forced to hand tally and track responses if you are fortunate enough for it to actually SEND responses.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Another novice question...I opened a file used "Concatenate String" to write to file creating headers and so forth...a "While Loop" routine is m

    onitoring a voltage and storing it to the same file under the associated header...What I'm having problems doing is after the loop is completed I need to write the MIN\MAX values of the voltage that was monitored in the "While Loop" once it completes. I juBefore the loop the "Concatenate String" peforms the following... line1 col.1 in an excel file is (Tester then Line1 col.2 (the testers name appears) next is a end of line. Then Line2 col.1 is (DATE)header then col.2(TIME)header then col.3(throttle voltage output)header then col.4(MAX VOUT)header then col.5(MIN VOUT) as i said this is perform before the loop with no pr
    oblem. Next during the "While Loop" the actual information for the DATE,TIME,Throttle voltage output,are inserted into Line 3 under the associated header with no problem. What I need to do is wait until the "While Loop" has completed to then store the MAX/MIN, but I can't seem to get the information to end up under the associated header. What do I need to set/use to accomplish this task? Thanks I've attached an excel spread sheet to give an example of where I need the values to be stored.
    Attachments:
    test1.txt ‏1 KB

    onitoring a voltage and storing it to the same file under the associated header...What I'm having problems doing is after the loop is completed I need to write the MIN\MAX values of the voltage that was monitored in the "While Loop" once it completes. I juThis can become hard depending on how much data you will be writing. If you could wait and write the data all at one at the end of the while loop it becomes easier. The problem is that when you write a file it writes it in rows of data not columns. I will attach an example (LabVIEW 6.0) that demonstrates how to do this. It is a hard to describe in text. Basically I create the new columns of data and write empty strings to them on each iteration of the while loop except for the first iteration. The first iteration I write a Max? and Min? into the column information. After the while loop is completed I search the array for Max? and Min? and replace it with the appropriate min and max values.
    Attachments:
    append_column.vi ‏47 KB

  • Survey Quiz Questions in Captivate 7

    I have a quiz in Captivate 7. 15 questions are graded. 5 questions are short answer (survey questions) not graded. I want to show the results of the 15 graded questions, then e-mail the survey question results to another user. How do I do this?

    Hello and welcome to the forum,
    Is this a default question slide or a custom question slide created using standard objects and advanced actions? If it is a default MCQ be careful not to delete objects that are normally available on the master slide for that question, you can make them invisible but deleting (with the exception of some buttons) could lead to weird results. You are using an effect I suppose for the group? Look at the timeline (or better post a screenshot of the timeline): for a default question slide there will be a pausing point (used by the two-step process of that question slide: http://blog.lilybiri.com/question-question-slides-in-captivate) and I suspect that this pause is interrupting your fly-in effect.
    Read the blog post about the behavior of question slides please. And it is a good practice not to have the playbar available for question slides. Another intuition tells me that by hitting Play you forced the playhead to pass over the pausing point, in the inactive part of the slide and that is why the playhead continues after submitting.
    Lilybiri

  • Data transfer with some errors on registers. (Novice question)

    Hi experts.
    First of all i wat to say that i'm realtively novice in BW.
    I have an ods object.  I have a transformation>Data Transfer Processes>Infopackage to load data to it.
    I execute this with a process chain.
    well the roblem is that some registers I get are erroeous. That's ok, i just want lo load the OK regs, but when this happens the sistem does't load any.
    I want to load only the good registers and be reported about the errors too.
    Can someone please give me some advice about this?? I think thje secret is in the error handling customizing on the DTP, and maybe create a error DTP and something in the infopackage.
    Any tip to me please?
    Thank you!!!

    Hi,
    you need to maintain some parameters in the update tab of  the dtp.
    a) set the error handling to update valid records, reporting possible (request green)
    b) enhance the no. of error records to the size of the data packet.
    c) create a error dtp
    Now all records without error will be updated, the request will be green and so available for reporting. The records with errors will go to the error stack and can be edited there. The records of the error stack will be updated thru a error dtp.
    regards
    Siggi

  • 2 novice question

    Hi
    i have 2 question about premiere pro cs3
    1) import video , install Qlite http://www.free-codecs.com/download/QT_Lite.htm  can increase the video import or export feature ?
    2) i'm reallya  novice , i'm a photoshop cs3 user , can i with premiere pro cs3 edit the colors ? make some some part more dark like curve or selective colors ?
    thanks

    1 - For SD (Standard Definition) work, Premiere works best with DV AVI Type 2 files
    This cannot be stressed enough. This is the designed workflow for most NLE's, and holds for everything in the Premiere lineup. While some CODEC's can be worked with internally, most cannot. Conversion to DV-AVI Type II w/ 48KHz 16-bit PCM/WAV will always work best. Even if you have the proper CODEC and it's installed properly on the system, there is no guarantee that Pr can use it. In most cases, it's a certainty that they will not. Also remember that because a player on your system can play a file, there is a great difference between playing a file, and editing a file.
    2 - Look in the user guide you just downloaded to see what effects are available
    There are many Effects in Pr, that have a correlation to the adjustments in Photoshop, Brightness & Contrast, Highlight & Shadow, Levels and Luma Curves are but a few. The PremierePro-wiki is a great place to explore, after you read the guide from the link that John furnished. I'd suggest that one read all of the FAQ's and then start working through the tutorials. Do not limit your reading to just your version of Pr. Much from earlier and later versions will still apply, though you may have to look for a menu, or be aware of a name change someplace. With a little study, you'll find a lot of similarities between PS and Pr.
    Good luck,
    Hunt

Maybe you are looking for

  • How do I scan multiple pages into one pdf?

    I have been using the "System Preferences" -> "Print and Scan" -> then I select the "open scanner" button for my printer.  When I first used this feature, it would scan multi-page documents into a single PDF, but it has stopped for some reason.  It i

  • Data Storage of Analog Output

    Hi all,  I am attaching my labview code with this post. My problem is that the code runs correctly with "write to lvm file" applette. Without this aplette the waveform shows a continuous graph. But when I add this applette to store the data, the wave

  • Surveys synchronisation

    Hello experts, I created campaigns that generate activities with "Questionnaires". I want to replicate them to MSA, I have performance problems with DNL_SURVEY_XML (object for surveys) : in fact each time that I want to replicate the system try to re

  • Different ways to make an App?

    Hey there. I know how to make an app, but I am just wondering the multiple ways to make them, knowing that there is not just one way. If you happen to know multiple ways that work well, or have a link to a site that lists them, that would be very app

  • Your transaction date is earlier than its parent transaction

    Hi, WE just upgraded from 11 to 12 and when our end-user goes in to receiving transactions he get's a message: Your transaction date is earlier than it's parent transaction. Cause: You tried to enter a transaction date that is earlier then the parent