<span><span><span id="ctl03_ctlTopic"><span id="ctl03_ctlTopic_ctlPanelBar"><span id="ctl03_ctlTopic_ctlPanelBar_ctlTopicsRepeater_ctl04_lblFullMessage">Hi all,I'm currently working on a research about involuntary memory and we have been using Eprime to present picture-sound pairs.<br>
The participants are asked to look at the picture and hear the sound, and type a sentence that comes to their mind. <br>
They go through this process twice, and the order of picture-sound pairs
 are different in two lists, so that we can make sure the "memory" is 
not affected by the order. When they see and listen to the sound for the
 second time, they're asked to modify their sentences from the first 
round and we present the response from the first round as well (so that 
they can see what they typed initially and modify if they want)<br>
<br>
However, the problem is that the responses they typed for the first list
 appear in the same order in the next list while the picture-sound pairs
 are in a different order. <br>
So for example, if Participant A typed "dog" for his first answer during
 the first round, "dog" would appear as the previous answer for his 
first picture-sound pairing for the second round even if the 
picture-sound pair that's presented to him would be a different pair 
from the first experiment.<br>
<br>
<br>
<br>
The code for this is,<br>
<b><br>
First list</b><br>
<br>
IntegrationString = Integration.RESP<br>
IntegrationString = ReplaceString(IntegrationString, "{SPACE}", " ")<br>
IntegrationString = ReplaceString(IntegrationString, "{SHIFT}", "")<br>
IntegrationString = ReplaceString(IntegrationString, "{ENTER}", "  ")<br>
IntegrationString = ReplaceString(IntegrationString, "{,}", ",")<br>
IntegrationString = ReplaceString(IntegrationString, "{.}", ".")<br>
IntegrationString = ReplaceString(IntegrationString, "{F1}", "")<br>
IntegrationString = ReplaceString(IntegrationString, "{!}", "")<br>
IntegrationString = ReplaceString(IntegrationString, "{'}", "")<br>
IntegrationString = ReplaceString(IntegrationString, "{(}", "")<br>
IntegrationString = ReplaceString(IntegrationString, "{)}", "")<br>
IntegrationString = ReplaceString(IntegrationString, "{/}", "")<br>
IntegrationString = ReplaceString(IntegrationString, "{?}", "")<br>
IntegrationString = ReplaceString(IntegrationString, "{:}", "")<br>
IntegrationString = ReplaceString(IntegrationString, "{;}", "")<br>
c.SetAttribAtSource "IntegrationResp", IntegrationString<br>
<br>
For i = 1 to Encoding1List.Size<br>
    response = Encoding1List.GetAttrib(i, "IntegrationResp")<br>
    Encoding2List.SetAttrib i, "IntegrationResp", response<br>
Next i<br>
<br>
<br>
<b>Second list</b><br>
<br>
Integration2String = Integration2.RESP<br>
Integration2String = ReplaceString(Integration2String, "{SPACE}", " ")<br>
Integration2String = ReplaceString(Integration2String, "{SHIFT}", "")<br>
Integration2String = ReplaceString(Integration2String, "{ENTER}", "  ")<br>
Integration2String = ReplaceString(Integration2String, "{,}", ",")<br>
Integration2String = ReplaceString(Integration2String, "{.}", ".")<br>
Integration2String = ReplaceString(Integration2String, "{F1}", "")<br>
Integration2String = ReplaceString(Integration2String, "{!}", "")<br>
Integration2String = ReplaceString(Integration2String, "{'}", "")<br>
Integration2String = ReplaceString(Integration2String, "{(}", "")<br>
Integration2String = ReplaceString(Integration2String, "{)}", "")<br>
Integration2String = ReplaceString(Integration2String, "{/}", "")<br>
Integration2String = ReplaceString(Integration2String, "{?}", "")<br>
Integration2String = ReplaceString(Integration2String, "{:}", "")<br>
Integration2String = ReplaceString(Integration2String, "{;}", "")<br>
<br>
c.SetAttribAtSource "Integration2Resp", Integration2String<br>
<br>
<br>
For i = 1 to Encoding2List.Size<br>
    response = Encoding2List.GetAttrib(i, "IntegrationResp")<br>
    Encoding3List.SetAttrib i, "IntegrationResp", response<br>
Next i<br>
<br>
<br>
<br>
<br>
I feel like the problem would be resolved if I correct my "i= _____" but
 I've been keep failing to make the right modification for the code.<br>
It will be great if you could let me know how I would be able to fix it!<br>
<br>
Thank you so much<img src="http://support.pstnet.com/forum/Skins/Classic/Images/EmotIcons/Smile.gif" title="Smile" align="absmiddle" border="0"><br><br>
</span></span></span></span></span>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups "E-Prime" group.<br />
To view this discussion on the web visit <a href="https://groups.google.com/d/msg/e-prime/-/bOmtBh8sSnUJ">https://groups.google.com/d/msg/e-prime/-/bOmtBh8sSnUJ</a>.<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 />