<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<TITLE>Addition of feedback</TITLE>

<META content="MSHTML 5.50.4912.300" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN class=635194816-15012002>I
don't know if anyone responded yet to this question but here is how I have
counted and total amounts in one on my projects.</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002></SPAN></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN class=635194816-15012002>1)
Early in the project define the variables such
as     </SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>         DIM
total as integer</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>         DIM
current as integer</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002></SPAN></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>    And in the begining put a script
such as;</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>        c.setattrib
"Total", total</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>        c.setattrib
"current", current</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>       
current=0</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002></SPAN></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>        This will
start the project at 0 points or dollars etc. and let you recall the total and
current points/money in a feedback screen.</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002></SPAN></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN class=635194816-15012002>2) In
the list for the project have the following defined (and put in the answers for
each column expected)</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>       
correctanswer</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>       
incorrectanswer</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>       
correctmoney</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>       
incorrectmoney</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002> ( I used money amounts but you could just use
correctanswer and incorrectanswer)</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002></SPAN></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002></SPAN></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN class=635194816-15012002>3) In
an inline put something like the following script </SPAN></FONT></DIV><SPAN
class=635194816-15012002>
<DIV><BR><FONT face=Arial color=#0000ff size=2> if slide1.RESP =c.GetAttrib
("correctanswer") then<SPAN class=635194816-15012002>   
####slide1 is where the person was asked to press the appropriate key such as 1
or 2</SPAN><BR> total=total + (c.GetAttrib ("correctmoney"))<BR>end
if</FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2>if slide1.RESP =c.GetAttrib
("incorrectanswer") then<BR> total=total - (c.GetAttrib
("incorrectmoney"))<BR>end if </FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2>if slide1.RESP =c.GetAttrib
("correctanswer") then<BR> current = (c.GetAttrib ("correctmoney")) <BR>end
if </FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2>if slide1.RESP =c.GetAttrib
("incorrectanswer") then<BR> current = (c.GetAttrib
("incorrectmoney"))<BR>end if<BR> <BR>c.setattrib "Total", total<SPAN
class=635194816-15012002>                
####This is the raw total including negative signs</SPAN><BR>c.setattrib
"Total2", abs(total)<SPAN
class=635194816-15012002>       ####This strips
the negative sign from the total amount</SPAN><BR>c.setattrib "current" ,
current</FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT> </DIV>
<DIV><FONT face=Arial><FONT color=#0000ff><FONT size=2>c.setattrib "sign" ,
left$ (total,1)<SPAN class=635194816-15012002>   </SPAN> <SPAN
class=635194816-15012002>####This reads the first char. from the
total</SPAN></FONT></FONT></FONT></DIV>
<DIV><SPAN class=635194816-15012002></SPAN><FONT face=Arial color=#0000ff
size=2>if left$ (total,1) <> "-"  then<SPAN
class=635194816-15012002>        
 ###This checks the sign if it is negative</SPAN><BR>c.setattrib "sign" ,
CHR$(32)<SPAN class=635194816-15012002>     
 ###This assigns the sign to a - so when I display the dollar amount the
neg sign is in front of the $ sign</SPAN><BR>end if</FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN class=635194816-15012002>4) In
the feedback screen you can display the total and current amounts by the
following;</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>        You have
just won $[current]</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>        You total
winnings are $[sign] [total2] or</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>        Your total
winnings are [total]       #### If you don't care
about the negative sign before the number</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT> </DIV>
<DIV><SPAN class=635194816-15012002><FONT face=Arial color=#0000ff size=2>Hope
this helps,</FONT></SPAN></DIV>
<DIV><SPAN class=635194816-15012002><FONT face=Arial color=#0000ff
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=635194816-15012002><FONT face=Arial color=#0000ff size=2>Barry
Schech</FONT></SPAN></DIV>
<DIV><SPAN class=635194816-15012002><FONT face=Arial color=#0000ff
size=2>National Institute on Drug Abuse</FONT></SPAN></DIV>
<DIV><SPAN class=635194816-15012002><FONT face=Arial color=#0000ff
size=2>Baltimore Md.</FONT></SPAN></DIV>
<DIV></SPAN><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002></SPAN></FONT> </DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN
class=635194816-15012002>       
</SPAN></FONT></DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
  <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma
  size=2>-----Original Message-----<BR><B>From:</B> Ho Kok Inn
  [mailto:art80408@nus.edu.sg]<BR><B>Sent:</B> Tuesday, January 15, 2002 2:46
  AM<BR><B>To:</B> 'eprime@mail.talkbank.org'<BR><B>Subject:</B> Addition of
  feedback<BR><BR></FONT></DIV>
  <P><FONT face=Arial size=2>Hello anyone out there,</FONT> </P>
  <P><FONT face=Arial size=2>Can anyone please enlighten me on how to display
  different feedbacks in an experiment?</FONT> <BR><FONT face=Arial size=2>(say,
  getting a correct answer for type "A" questions earn you 1 point & getting
  a correct answer for type "B" questions earn you 3 points.)</FONT></P>
  <P><FONT face=Arial size=2>Also, if the above is done, how to add up all these
  scores that are displayed in the feedback?</FONT> </P>
  <P><FONT face=Arial size=2>PLEASE HELP- thesis deadline drawing
  near..............</FONT> <BR><FONT face=Arial size=2>: )</FONT> <BR><FONT
  face=Arial size=2> </FONT> </P>
  <P><FONT face=Arial size=2>HKI</FONT> </P></BLOCKQUOTE></BODY></HTML>