<div dir="ltr">I thought I found a solution, and had this thread deleted. However, the problem occurred again, and I made a new thread, just before you replied. <div>Even before I posted these messages I did both. The script is based upon the PST Support example. For further discussion please go to https://groups.google.com/forum/#!topic/e-prime/yq4WYryicRc.</div><div>If possible this thread can be deleted permanently...<br><br>Op dinsdag 19 augustus 2014 17:57:54 UTC+2 schreef McFarlane, David:<blockquote class="gmail_quote" style="margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;">Please work through the extended input example (NestingXRT) in 
<br>Appendix C of the User's Guide that came with E-Prime.  And if you do 
<br>not already have the multiple responses working, then also look at 
<br>the Multiple Response Collection example that you may download from 
<br>the PST website.
<br>
<br>-----
<br>David McFarlane
<br>E-Prime training 
<br>online:  <a href="http://psychology.msu.edu/Workshops_Courses/eprime.aspx" target="_blank" onmousedown="this.href='http://www.google.com/url?q\75http%3A%2F%2Fpsychology.msu.edu%2FWorkshops_Courses%2Feprime.aspx\46sa\75D\46sntz\0751\46usg\75AFQjCNHhJVD3mCfXKdywfB5AgKLPu1OSJg';return true;" onclick="this.href='http://www.google.com/url?q\75http%3A%2F%2Fpsychology.msu.edu%2FWorkshops_Courses%2Feprime.aspx\46sa\75D\46sntz\0751\46usg\75AFQjCNHhJVD3mCfXKdywfB5AgKLPu1OSJg';return true;">http://psychology.msu.edu/<wbr>Workshops_Courses/eprime.aspx</a>
<br>Twitter:  @EPrimeMaster (<a href="https://twitter.com/EPrimeMaster" target="_blank" onmousedown="this.href='https://www.google.com/url?q\75https%3A%2F%2Ftwitter.com%2FEPrimeMaster\46sa\75D\46sntz\0751\46usg\75AFQjCNHlT7nwYBmELwRxV4Xn5GW-sG9EKw';return true;" onclick="this.href='https://www.google.com/url?q\75https%3A%2F%2Ftwitter.com%2FEPrimeMaster\46sa\75D\46sntz\0751\46usg\75AFQjCNHlT7nwYBmELwRxV4Xn5GW-sG9EKw';return true;">https://twitter.com/<wbr>EPrimeMaster</a>)
<br>
<br>/----
<br>Stock reminder:  1) I do not work for PST.  2) You may reach PST's 
<br>trained staff (and other support facilities) at 
<br><a href="https://support.pstnet.com" target="_blank" onmousedown="this.href='https://www.google.com/url?q\75https%3A%2F%2Fsupport.pstnet.com\46sa\75D\46sntz\0751\46usg\75AFQjCNF5BfukPzW6lq7UCweMsMu7_9wJEQ';return true;" onclick="this.href='https://www.google.com/url?q\75https%3A%2F%2Fsupport.pstnet.com\46sa\75D\46sntz\0751\46usg\75AFQjCNF5BfukPzW6lq7UCweMsMu7_9wJEQ';return true;">https://support.pstnet.com</a> .  3) If you do get an answer from PST 
<br>staff, please extend the courtesy of posting their reply back here 
<br>for the sake of others.
<br>\----
<br>
<br>
<br>At 8/18/2014 07:24 AM Monday, Aad Pors wrote:
<br>>UPDATE
<br>>
<br>>it seems that in previous versions I have not been able to collect 
<br>>responses during the blank properly as well. So now it seems to have 
<br>>become a matter of response time extension from the StimExp into the 
<br>>blank. Google provides hits with nested lists and other stuff which 
<br>>I believe to be more difficult than it has to be in my case.
<br>>
<br>>A helping word please?
<br>>
<br>>Op maandag 18 augustus 2014 09:43:41 UTC+2 schreef Aad Pors:
<br>>Dear all,
<br>>
<br>>I'll try to be short.
<br>>
<br>>Stimulus setup: text screen with stimulus (StimExp) is presented for 
<br>>250 ms, followed by an empty text screen (BlankExp) for 900 ms. This 
<br>>cycle is repeated multiple times with different contents of the 
<br>>stimulus screen.
<br>>I want to collect multiple keyboard 'b' presses and releases (b{-b}, 
<br>>max count 10). This works to the extent that I can indeed collect 
<br>>all these responses, as long as StimExp is being presented. I want 
<br>>to collect responses over the complete period of 1150 ms, as defined 
<br>>in the StimExp Duration properties Time Limit (1150 ms). Responses 
<br>>that are provided whilst the blank is being presented are not 
<br>>recorded. What can I do about that? The InLIne reads as follows:
<br>>
<br>>
<br>>Dim theResponseObject As RteRunnableInputObject
<br>>Set theResponseObject = CRteRunnableInputObject(Rte.<wbr>GetObject("StimExp"))
<br>>
<br>>'If the assert below fires, then the object named in the line above 
<br>>does not exist
<br>>Debug.Assert Not theResponseObject Is Nothing
<br>>
<br>>'Counter variable for the number of responses made
<br>>Dim nPressCount As Long
<br>>
<br>>'Counter variable
<br>>Dim nIndex As Integer
<br>>
<br>>'Used to set attributes for statistics
<br>>Dim strStatistic As String
<br>>'Enumerate through the response collection
<br>>'If any of the responses were made by the keyboard, display
<br>>'the statistics to the user.
<br>>For nIndex = 1 To theResponseObject.InputMasks.<wbr>Responses.Count
<br>>
<br>>'Set theKeyboardResponseData equal to the current keyboard response
<br>>Dim theKeyboardResponseData As KeyboardResponseData
<br>>Set theKeyboardResponseData = 
<br>>CKeyboardResponseData(<wbr>theResponseObject.InputMasks.<wbr>Responses(nIndex))
<br>>If Not theKeyboardResponseData Is Nothing Then
<br>>
<br>>'Increment the press count
<br>>nPressCount = nPressCount + 1
<br>>
<br>>'Log reaction time and response for each key press.
<br>>c.SetAttrib "KeyPress" & nIndex & "RT", theKeyboardResponseData.RT
<br>>c.SetAttrib "KeyPress" & nIndex & "RESP", theKeyboardResponseData.RESP
<br>>End If
<br>>
<br>>
<br>>Next 'nIndex
<br>
<br></blockquote></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 <a href="mailto:e-prime+unsubscribe@googlegroups.com">e-prime+unsubscribe@googlegroups.com</a>.<br />
To post to this group, send email to <a href="mailto:e-prime@googlegroups.com">e-prime@googlegroups.com</a>.<br />
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/e-prime/21146d55-a2c1-4251-8beb-2bf50d04edf3%40googlegroups.com?utm_medium=email&utm_source=footer">https://groups.google.com/d/msgid/e-prime/21146d55-a2c1-4251-8beb-2bf50d04edf3%40googlegroups.com</a>.<br />
For more options, visit <a href="https://groups.google.com/d/optout">https://groups.google.com/d/optout</a>.<br />