<div dir="ltr"><DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt">Hello fellow eprimers,</SPAN></DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt">I have a task where participants are presented with cues and they must rate them on a 1-9 scale. They then get feedback. <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></DIV>
<P style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt">I want participants to enter a digit and then move onto the next slide by pressing another button. Also, I only want them to be able to move on if they have entered a digit from 1 to 9. <o:p></o:p></SPAN></P>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt">I am using the echoclient (on the Stage1word slide) so that participants can see the digit they are entering. I have read around and the mouse seems to be a good method to move onto the next slide. I have set up a text box at the bottom of the stage1word slide to act as a button and called the text box "result" </SPAN></DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p>Participants are able to enter a digit and proceed to the next trials unsing the mouse.  However, they can also proceed to the next trial by NOT entering a reponse or by entering a response outside the specified range (i.e. 1-9).</o:p></SPAN></DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p> Here is the inline code I am using.  I think I need to specifiy an if..then rule for numebrs thta have been logged but I have no idea how.</o:p></SPAN></DIV>
<DIV><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"></SPAN><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p>Any suggestions would be appreciated</o:p></SPAN></DIV>
<DIV><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p></o:p></SPAN> </DIV>
<DIV><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p>Deiniol</DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><BR> 'Designate "theState" as the Default Slide State, which is the <BR> 'current, ActiveState on the Slide object "Stimulus"<BR> Dim theState as SlideState<BR> Set theState = Stage1Word.States("Default")</o:p></SPAN></DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p> Dim strHit As String<BR> Dim theMouseResponseData As MouseResponseData</o:p></SPAN></DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p> Dim nResponseCount As Long</o:p></SPAN></DIV><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><BR>Do While Stage1Word.InputMasks.IsPending()</DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"> 'If the counts do not match, there are responses to process.<BR> If nResponseCount <> Stage1Word.InputMasks(2).Responses.Count Then</DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm">  nResponseCount = nResponseCount + 1</DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm">  'Get the mouse response<BR>  Set theMouseResponseData = CMouseResponseData(Stage1Word.InputMasks(2).Responses(nResponseCount))</DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm">  'Determine string name of SlideImage or SlideText object at <BR>  'mouse click coordinates. Assign that value to strHit<BR>  strHit = theState.HitTest(theMouseResponseData.CursorX, theMouseResponseData.CursorY)</DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm">  'Compare string name where mouse click occurred to CorrectAnswer<BR>  'attribute on each trial, and score response<BR>  'NOTE: This comparison is case sensitive<BR>  If strHit = "Result" Then<BR>       'Goto label2 <BR>    Stage1Word.InputMasks(1).Timeout<BR>    Stage1Word.InputMasks(2).Timeout<BR>  End If</DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"> End If<BR> <BR> <BR> <BR> 'Give some time back (required)<BR>Sleep 10<BR>DoEvents</DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm">Loop<BR> </o:p></SPAN></DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p></o:p></SPAN> </DIV>
<DIV style="LINE-HEIGHT: 16.5pt; MARGIN: 11.25pt 0cm"><SPAN style="FONT-FAMILY: 'Lucida Sans Unicode', 'sans-serif'; COLOR: #2b2e2f; FONT-SIZE: 10.5pt"><o:p> </o:p></SPAN></DIV></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups "E-Prime" group.<br />
To unsubscribe from this group and stop receiving emails from it, send an email to e-prime+unsubscribe@googlegroups.com.<br />
To post to this group, send email to e-prime@googlegroups.com.<br />
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/e-prime/04212348-6dac-4e50-b890-6f60a0301a53%40googlegroups.com">https://groups.google.com/d/msgid/e-prime/04212348-6dac-4e50-b890-6f60a0301a53%40googlegroups.com</a>.<br />
For more options, visit <a href="https://groups.google.com/groups/opt_out">https://groups.google.com/groups/opt_out</a>.<br />