there are any number of ways to do both these things.<br><br>1. make a list with two rows.  the first row should contain the procedure for your trial.  set the weight to 10.  the second row will contain the procedure for your feedback.  set the weight to 1.  this way it will run your trial 10 times before running the feedback procedure.  within the trial proc keep track of correct responses using an inline after the stimulus that says 'If 
stimulus.ACC = 1 Then countcorrect = countcorrect + 1'.  you'll need to have declared countcorrect as an Integer in your script window.<br><br>2. make one list with lots and lots of trials in it (set weight to... 200).  put an inline after your stimulus:
<br>last10trials(9) = last10trials(8)<br>last10trials(8) = last10trials(7)<br>last10trials(7) = last10trials(6)<br>last10trials(6) = last10trials(5)<br>last10trials(5) = last10trials(4)<br>last10trials(4) = last10trials(3)
<br>last10trials(3) = last10trials(2)<br>last10trials(2) = last10trials(1)<br>last10trials(1) = last10trials(0)<br>last10trials(0) = stimuls.ACC<br><br>Dim i as Integer<br>Dim sumoflast10 as Integer<br>For i = 0 to 9<br>  sumoflast10 = sumoflast10 + last10trials(i)
<br>Next i<br><br>If sumoflast10 = 10 Then<br>  End 'this will terminate the currently running list<br>End If<br><br>for this to work, of course, you'll need to have 'Dim last10trials(9) as Integer' in your user panel in your script window.
<br><br>good luck.<br><br>ben<br><br><div class="gmail_quote">On Nov 29, 2007 5:12 PM, depechecircle <<a href="mailto:depechemoder@gmail.com" target="_blank">depechemoder@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<br>Hello!<br><br>I have 2 questions.<br><br>1. Is it possible for a subject to receive feedback only after 10<br>trials rather than after every trial? If so, how do I do this?<br><br>2. Is there a procedure in E-Prime that would make it so that the
<br>subject would only be able to proceed to the next list after he/she<br>correctly did the experimental task 10 times in a row?<br><br>Any help would be appreciated!<br<br>
--~--~---------~--~----~------------~-------~--~----~<br>
You received this message because you are subscribed to the Google Groups "E-Prime" group. <br> To post to this group, send email to e-prime@googlegroups.com <br> To unsubscribe from this group, send email to e-prime-unsubscribe@googlegroups.com <br> For more options, visit this group at http://groups.google.com/group/e-prime?hl=en <br> -~----------~----~----~----~------~----~------~--~---<br>
<br>