<div><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">Hello everyone,</span></div><span style="background-color: rgb(240, 248, 255); "><font color="#000000" face="Trebuchet MS, Arial, Helvetica" size="2">I have an experiment where the subject has 3 seconds to make a response each trial, after which the trial times out.  On the Feedback slide, I want to display the number of trials completed, not counting trials that timed out. </font></span><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "> </span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">To do this, I added an inline to my experiemnt. I noticed in my data output that when Stimulus.RESP = 1, the trial has been completed. So, this is the inline text I used:</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">If Stimulus.RESP = 1 Then</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">nPoints = nPoints + 1 </span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">Else</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">nPoints = nPoints + 0</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">End If</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">c.SetAttrib "CurrentPoints", nPoints</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">I also went to view -> script, and added "Dim nPoints as integer" in the user script. </span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">When I run my experiment, it successfully displays a trial count on the feedback slide as long as I make either correct or incorrect responses. However, as soon as I let a trial time out, I get the following error, and the program terminates:</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">The following Runtime error occurred:</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">Type Mismatch</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">line: 640</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">error number: 13</span><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><br style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); "><span style="color: rgb(0, 0, 0); font-family: 'Trebuchet MS', Arial, Helvetica; font-size: small; background-color: rgb(240, 248, 255); ">I have tried adjusting a few things, but with no success.</span>  Does anyone have experience getting around this error? thanks so much<br><div><br></div><div>Erin</div>

<p></p>

-- <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 />
To view this discussion on the web visit <a href="https://groups.google.com/d/msg/e-prime/-/mESCX9-QwG4J">https://groups.google.com/d/msg/e-prime/-/mESCX9-QwG4J</a>.<br />
For more options, visit <a href="https://groups.google.com/groups/opt_out">https://groups.google.com/groups/opt_out</a>.<br />
 <br />
 <br />