From giladsabo at gmail.com Sun Oct 2 07:30:44 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 00:30:44 -0700 Subject: Problem with setting new attribute to collect data Message-ID: Hi, In my experiment participants have to repeat the same trial until they give the correct answer. Also, I want to know the time that was requested to them to get to the correct answer, therefore I can't relay on the standard RT that is logged to the data file. What I did goes like that: At the beginning of the procedure there is an inline in which I defined new attribute: c.SetAttrib "ResponseT",0 then after this inline there is a label I called "repeatuntilcorrect" and after this label there is the slide "showword1" which present the trial, after it I put this inline: c.SetAttrib "ResponseT",c.GetAttrib("ResponseT") +c.GetAttrib("showword1.RT") while showword1.Acc=0 goto Repeat1 Wend that is, at the end of each trial I should have the time passed from the beginning of the trial to the participant correct response. The problem(s?) I have is that first, in the data file the attribute that I added (ResponseT) present the time in different manner-that is, 357 ms are presented as 0357. Second, unless I misunderstand something, it seems like sometimes the slide RT (showword1.RT) is longer than "ResponseT" and that of-course should never happen. I would appreciate your assistance in solving these issues. Regards, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 07:33:09 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 00:33:09 -0700 Subject: Problem with setting new attribute to collect data In-Reply-To: <096486d5-d8ea-4e63-a61f-fd025c2fd2db@x16g2000yql.googlegroups.com> Message-ID: Just don't want you to get confused by my little mistake: repeatuntilcorrect=Repeat1 On Oct 2, 9:30 am, gilis wrote: > Hi, > > In my experiment participants have to repeat the same trial until they > give the correct answer. Also, I want to know the time that was > requested to them to get to the correct answer, therefore I can't > relay on the standard RT that is logged to the data file. What I did > goes like that: > > At the beginning of the procedure there is an inline in which I > defined new attribute: > > c.SetAttrib "ResponseT",0 > > then after this inline there is a label I called "repeatuntilcorrect" > and after this label there is the slide "showword1" which present the > trial, after it I put this inline: > > c.SetAttrib "ResponseT",c.GetAttrib("ResponseT") > +c.GetAttrib("showword1.RT") > while showword1.Acc=0 > goto Repeat1 > Wend > > that is, at the end of each trial I should have the time passed from > the beginning of the trial to the participant correct response. > > The problem(s?) I have is that first, in the data file the attribute > that I added (ResponseT) present the time in different manner-that is, > 357 ms are presented as 0357. Second, unless I misunderstand > something, it seems like sometimes the slide RT (showword1.RT) is > longer than "ResponseT" and that of-course should never happen. I > would appreciate your assistance in solving these issues. > > Regards, > > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Sun Oct 2 07:38:26 2011 From: pquain at une.edu.au (Peter Quain) Date: Sun, 2 Oct 2011 18:38:26 +1100 Subject: Problem with setting new attribute to collect data In-Reply-To: <096486d5-d8ea-4e63-a61f-fd025c2fd2db@x16g2000yql.googlegro ups.com> Message-ID: not exactly sure that I undersatnd what you are doing, but maybe if you do something like this: Dim t1, t2, time2correct as long t1=clock.read 'when they start to try for correct answer t2=clock.read ' in an inline after they get correct answer, and jump out of the wend loop time2correct =t2-t1 c.SetAttrib "TimeTaken",time2correct At 07:30 PM 2/10/2011, you wrote: >Hi, > >In my experiment participants have to repeat the same trial until they >give the correct answer. Also, I want to know the time that was >requested to them to get to the correct answer, therefore I can't >relay on the standard RT that is logged to the data file. What I did >goes like that: > >At the beginning of the procedure there is an inline in which I >defined new attribute: > >c.SetAttrib "ResponseT",0 > >then after this inline there is a label I called "repeatuntilcorrect" >and after this label there is the slide "showword1" which present the >trial, after it I put this inline: > >c.SetAttrib "ResponseT",c.GetAttrib("ResponseT") >+c.GetAttrib("showword1.RT") >while showword1.Acc=0 >goto Repeat1 >Wend > > >that is, at the end of each trial I should have the time passed from >the beginning of the trial to the participant correct response. > >The problem(s?) I have is that first, in the data file the attribute >that I added (ResponseT) present the time in different manner-that is, >357 ms are presented as 0357. Second, unless I misunderstand >something, it seems like sometimes the slide RT (showword1.RT) is >longer than "ResponseT" and that of-course should never happen. I >would appreciate your assistance in solving these issues. > >Regards, > >Gilis > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 08:34:51 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 01:34:51 -0700 Subject: Problem with setting new attribute to collect data In-Reply-To: <201110020738.p927cRrW026557@mail9.tpg.com.au> Message-ID: Thanks, problem solved :) On Oct 2, 9:38 am, Peter Quain wrote: > not exactly sure that I undersatnd what you are doing, but maybe if > you do something like this: > > Dim t1, t2, time2correct as long > t1=clock.read 'when they start to try for correct answer > > t2=clock.read ' in an inline after they get correct answer, and jump > out of the wend loop > time2correct =t2-t1 > c.SetAttrib "TimeTaken",time2correct > > At 07:30 PM 2/10/2011, you wrote: > > > > > > > > >Hi, > > >In my experiment participants have to repeat the same trial until they > >give the correct answer. Also, I want to know the time that was > >requested to them to get to the correct answer, therefore I can't > >relay on the standard RT that is logged to the data file. What I did > >goes like that: > > >At the beginning of the procedure there is an inline in which I > >defined new attribute: > > >c.SetAttrib "ResponseT",0 > > >then after this inline there is a label I called "repeatuntilcorrect" > >and after this label there is the slide "showword1" which present the > >trial, after it I put this inline: > > >c.SetAttrib "ResponseT",c.GetAttrib("ResponseT") > >+c.GetAttrib("showword1.RT") > >while showword1.Acc=0 > >goto Repeat1 > >Wend > > >that is, at the end of each trial I should have the time passed from > >the beginning of the trial to the participant correct response. > > >The problem(s?) I have is that first, in the data file the attribute > >that I added (ResponseT) present the time in different manner-that is, > >357 ms are presented as 0357. Second, unless I misunderstand > >something, it seems like sometimes the slide RT (showword1.RT) is > >longer than "ResponseT" and that of-course should never happen. I > >would appreciate your assistance in solving these issues. > > >Regards, > > >Gilis > > >-- > >You received this message because you are subscribed to the Google > >Groups "E-Prime" group. > >To post to this group, send email to e-prime at googlegroups.com. > >To unsubscribe from this group, send email to > >e-prime+unsubscribe at googlegroups.com. > >For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 08:40:44 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 01:40:44 -0700 Subject: Presenting different images in the same slide Message-ID: Hi again, I want participants to see X symbol at the bottom of the slide when they give wrong answer but if they gave correct response they will see no change in the display. The slide background is black and I know I can achieve that by setting an attribute whose value is "image.bmp" which calls the X image from the experiment folder in the event of wrong response. Else, it will call "Black" image from the same folder, but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Sun Oct 2 11:02:19 2011 From: liwenna at gmail.com (liwenna) Date: Sun, 2 Oct 2011 04:02:19 -0700 Subject: Presenting different images in the same slide In-Reply-To: <7dc6b203-c0b2-465b-8d00-a9dadc8466f1@k15g2000yqd.googlegroups.com> Message-ID: Hi Gilis, Not sure whether this is much more elegant than your previous solution, which seems just fine by me. After your first slide (slide1?) create a second slide and give this slide a second slidestate (tab like symbol in the top of the slide 'browser' ). Give one slidestate the title '1' and the other slidestate the title '0' (title row in the properties table left at the left side of the window). Rebuild the elements of the previous slide (the slide that people have responded too, ie. your stimuli) on both the slidestates. In the slidestate called '0' also add an image (or a simple text box??) with an 'X'. At the slide properties menu set the slidestate to refer to the accuracy variable of the previous slide (i.e. [slide1.acc] ). Now, depending on whether the slide1.acc has value 0 or 1, the second slide will show either slide state 0 (with the x) or slidestate 1 (no x). best, liw On 2 okt, 04:40, gilis wrote: > Hi again, > > I want participants to see X symbol at the bottom of the slide when > they give wrong answer but if they gave correct response they will see > no change in the display. The slide background is black and I know I > can achieve that by setting an attribute whose value is "image.bmp" > which calls the X image from the experiment folder in the event of > wrong response. Else, it will call "Black" image from the same folder, > but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 12:36:06 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 05:36:06 -0700 Subject: Presenting different images in the same slide In-Reply-To: Message-ID: Thanks Liw, So, this is what I did-I made an attribute ("picture") whose default value was "black" (I have two bmp files in the experiment folder: black and white). In the file name line of the image slide I defined the file name as "[picture].bmp". Then, in the inline that appear just after the participant response to the slide I added that: if theslidename.Acc=o then c.SetAttrib "picture", white goto repeattheslide end if For some reason, and I tried many different approaches, the program refused to generate the experiment, indicating that "black is not a function"..Then I tried entirely different approach -I removed the image from the slide and instead put these code lines in the inline that appear just after the participant response: Set showword2_SlideImage = CSlideImage(showword2.States(showword2.ActiveState).Objects(1)) showword2_SlideImage.Filename = c.GetAttrib("picture")&_".bmp" showword2_SlideImage.Load Set showword2_SlideImage = Nothing But then it told me that there is a "misplaced line continuation"..So, perhaps I did it all wrong from the beginning, any help would be highly regarded... Gilis On Oct 2, 1:02 pm, liwenna wrote: > Hi Gilis, > > Not sure whether this is much more elegant than your previous > solution, which seems just fine by me. After your first slide > (slide1?) create a second slide and give this slide a second > slidestate (tab like symbol in the top of the slide 'browser' ). Give > one slidestate the title '1'  and the other slidestate the title > '0' (title row in the properties table left at the left side of the > window). Rebuild the elements of the previous slide (the slide that > people have responded too, ie. your stimuli) on both the slidestates. > In the slidestate called '0' also add an image (or a simple text > box??) with an 'X'. At the slide properties menu set the slidestate to > refer to the accuracy variable of the previous slide (i.e. > [slide1.acc] ). Now, depending on whether the slide1.acc has value 0 > or 1, the second slide will show either slide state 0 (with the x) or > slidestate 1 (no x). > > best, > > liw > > On 2 okt, 04:40, gilis wrote: > > > > > > > > > Hi again, > > > I want participants to see X symbol at the bottom of the slide when > > they give wrong answer but if they gave correct response they will see > > no change in the display. The slide background is black and I know I > > can achieve that by setting an attribute whose value is "image.bmp" > > which calls the X image from the experiment folder in the event of > > wrong response. Else, it will call "Black" image from the same folder, > > but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 12:44:18 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 05:44:18 -0700 Subject: Presenting different images in the same slide In-Reply-To: <030f9f3c-f15b-45e1-bd12-4eeb61e7b9a7@d4g2000yqk.googlegroups.com> Message-ID: Ok, problem solved...Just added another attribute for the second image file and after the participant response defined it as: c.SetAttrib "picture", c.GetAttrib("picture2") for incorrect answers. On Oct 2, 2:36 pm, gilis wrote: > Thanks Liw, > > So, this is what I did-I made an attribute ("picture") whose default > value was "black" (I have two bmp files in the experiment folder: > black and white). In the file name line of the image slide I defined > the file name as "[picture].bmp". Then, in the inline that appear just > after the participant response to the slide I added that: >  if theslidename.Acc=o then > c.SetAttrib "picture", white > goto repeattheslide > end if > For some reason, and I tried many different approaches, the program > refused to generate the experiment, indicating that "black is not a > function"..Then I tried entirely different approach -I removed the > image from the slide and instead put these code lines in the inline > that appear just after the participant response: > > Set showword2_SlideImage = > CSlideImage(showword2.States(showword2.ActiveState).Objects(1)) > showword2_SlideImage.Filename = c.GetAttrib("picture")&_".bmp" > showword2_SlideImage.Load > Set showword2_SlideImage = Nothing > > But then it told me that there is a "misplaced line continuation"..So, > perhaps I did it all wrong from the beginning, any help would be > highly regarded... > > Gilis > > On Oct 2, 1:02 pm, liwenna wrote: > > > > > > > > > Hi Gilis, > > > Not sure whether this is much more elegant than your previous > > solution, which seems just fine by me. After your first slide > > (slide1?) create a second slide and give this slide a second > > slidestate (tab like symbol in the top of the slide 'browser' ). Give > > one slidestate the title '1'  and the other slidestate the title > > '0' (title row in the properties table left at the left side of the > > window). Rebuild the elements of the previous slide (the slide that > > people have responded too, ie. your stimuli) on both the slidestates. > > In the slidestate called '0' also add an image (or a simple text > > box??) with an 'X'. At the slide properties menu set the slidestate to > > refer to the accuracy variable of the previous slide (i.e. > > [slide1.acc] ). Now, depending on whether the slide1.acc has value 0 > > or 1, the second slide will show either slide state 0 (with the x) or > > slidestate 1 (no x). > > > best, > > > liw > > > On 2 okt, 04:40, gilis wrote: > > > > Hi again, > > > > I want participants to see X symbol at the bottom of the slide when > > > they give wrong answer but if they gave correct response they will see > > > no change in the display. The slide background is black and I know I > > > can achieve that by setting an attribute whose value is "image.bmp" > > > which calls the X image from the experiment folder in the event of > > > wrong response. Else, it will call "Black" image from the same folder, > > > but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 17:36:29 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 10:36:29 -0700 Subject: Yet another question: How to measure the length of a given string Message-ID: Hi again and sorry for keeping you busy... In my experiment participants write their answers into an inputbox, the inputbox fade and the next trail start after the participant press enter. My question, in fact questions, is how I can make sure that the participant entered his or her answer into the inputbox. One idea that I had is to count the length of the string from the input box and if it's <2 (because obviously no word can be written with less than 2 letters) the inputbox will remain visible until a valid answer is provided. The problem is that I can't find the right commands in eprime that do such thing. There are no commands like length and count that could help in this, so again, any help would be welcomed. More, I don't know how to tell to the input box to wait until there are at least 2 letters in it. Regards, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Sun Oct 2 22:03:07 2011 From: pquain at une.edu.au (Peter Quain) Date: Mon, 3 Oct 2011 09:03:07 +1100 Subject: Yet another question: How to measure the length of a given string In-Reply-To: <6ebcc971-323c-4fb7-8e67-bb68e64ddbbd@g33g2000yqc.googlegro ups.com> Message-ID: Gilis Look in e-basic help for String Functions. You are after "Len": Your input box content will be stored in a variable ... say strInBx. If Len(strInBx) < 2 Then ... commands to return InputBox to screen, and tell subject not to be so lazy .. End If --------------------- Len, LenB (functions) ------------------- Syntax Len(expression) LenB(expression) Description Returns the number of characters (for Len) or bytes (for LenB) in String expression or the number of bytes required to store the specified variable. ------------------------ At 04:36 AM 3/10/2011, you wrote: >Hi again and sorry for keeping you busy... > >In my experiment participants write their answers into an inputbox, >the inputbox fade and the next trail start after the participant press >enter. >My question, in fact questions, is how I can make sure that the >participant entered his or her answer into the inputbox. One idea that >I had is to count the length of the string from the input box and if >it's <2 (because obviously no word can be written with less than 2 >letters) the inputbox will remain visible until a valid answer is >provided. The problem is that I can't find the right commands in >eprime that do such thing. There are no commands like length and count >that could help in this, so again, any help would be welcomed. More, I >don't know how to tell to the input box to wait until there are at >least 2 letters in it. > >Regards, >Gilis > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Mon Oct 3 12:46:53 2011 From: liwenna at gmail.com (liwenna) Date: Mon, 3 Oct 2011 05:46:53 -0700 Subject: Presenting different images in the same slide In-Reply-To: Message-ID: Not sure if I understand what you did exactly but as for the 'black is not a function' error: "'s around the white/black text (to indicate the program that it is a string) should have solved that too. I.e. instead of c.SetAttrib "picture", white -> c.SetAttrib "picture", "white" On Oct 2, 8:44 am, gilis wrote: > Ok, problem solved...Just added another attribute for the second image > file and after the participant response defined it as: > c.SetAttrib "picture", c.GetAttrib("picture2") > for incorrect answers. > > On Oct 2, 2:36 pm, gilis wrote: > > > > > > > > > Thanks Liw, > > > So, this is what I did-I made an attribute ("picture") whose default > > value was "black" (I have two bmp files in the experiment folder: > > black and white). In the file name line of the image slide I defined > > the file name as "[picture].bmp". Then, in the inline that appear just > > after the participant response to the slide I added that: > >  if theslidename.Acc=o then > > c.SetAttrib "picture", white > > goto repeattheslide > > end if > > For some reason, and I tried many different approaches, the program > > refused to generate the experiment, indicating that "black is not a > > function"..Then I tried entirely different approach -I removed the > > image from the slide and instead put these code lines in the inline > > that appear just after the participant response: > > > Set showword2_SlideImage = > > CSlideImage(showword2.States(showword2.ActiveState).Objects(1)) > > showword2_SlideImage.Filename = c.GetAttrib("picture")&_".bmp" > > showword2_SlideImage.Load > > Set showword2_SlideImage = Nothing > > > But then it told me that there is a "misplaced line continuation"..So, > > perhaps I did it all wrong from the beginning, any help would be > > highly regarded... > > > Gilis > > > On Oct 2, 1:02 pm, liwenna wrote: > > > > Hi Gilis, > > > > Not sure whether this is much more elegant than your previous > > > solution, which seems just fine by me. After your first slide > > > (slide1?) create a second slide and give this slide a second > > > slidestate (tab like symbol in the top of the slide 'browser' ). Give > > > one slidestate the title '1'  and the other slidestate the title > > > '0' (title row in the properties table left at the left side of the > > > window). Rebuild the elements of the previous slide (the slide that > > > people have responded too, ie. your stimuli) on both the slidestates. > > > In the slidestate called '0' also add an image (or a simple text > > > box??) with an 'X'. At the slide properties menu set the slidestate to > > > refer to the accuracy variable of the previous slide (i.e. > > > [slide1.acc] ). Now, depending on whether the slide1.acc has value 0 > > > or 1, the second slide will show either slide state 0 (with the x) or > > > slidestate 1 (no x). > > > > best, > > > > liw > > > > On 2 okt, 04:40, gilis wrote: > > > > > Hi again, > > > > > I want participants to see X symbol at the bottom of the slide when > > > > they give wrong answer but if they gave correct response they will see > > > > no change in the display. The slide background is black and I know I > > > > can achieve that by setting an attribute whose value is "image.bmp" > > > > which calls the X image from the experiment folder in the event of > > > > wrong response. Else, it will call "Black" image from the same folder, > > > > but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From lahutchi at mtu.edu Mon Oct 3 18:50:35 2011 From: lahutchi at mtu.edu (Lucas Hutchison) Date: Mon, 3 Oct 2011 11:50:35 -0700 Subject: Mouse Click & Target Task Message-ID: I am working on a small experiment where I would like the following: -Target (20 x 20 pixel red circle) appears at a random location on the screen -when the target is presented, the participant must click the target -once the participant clicks, the next randomly located target will appear (and the prior target is removed), and the process repeats for n number of trials needed I am able to display the targets at random locations, but I am unsure of how to record the X and Y positions of the click and how to compare those to the actual X and Y positions of the target to determine accuracy. I would like to record both the response time and the click accuracy. I have been trying to find resources online and in the help documentation, but much of the online code is older than my version and some of the methods/ objects they use have been renamed. I am using E-Prime version 2.0.8.74 Thanks for the help! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pfc.groot at gmail.com Mon Oct 3 22:03:35 2011 From: pfc.groot at gmail.com (Paul Groot) Date: Tue, 4 Oct 2011 00:03:35 +0200 Subject: Mouse Click & Target Task In-Reply-To: Message-ID: Hi Lucas, After capturing a mouse click response you could immediately retrieve the mouse position using a few lines of script: dim ptMouse as Point Mouse.GetCursorPos ptMouse.x, ptMouse.y To determine if this point is inside the drawn circle you could use a simple calculation: just calculate the (squared) distance between the center of the circle and the hit point: Const radius = 10 dim dx as long dim dy as long dx = ptMouse.x - center.x dy = ptMouse.y - center.y if (dx*dx + dy*dy)<=radius*radius then ... inside circle else ... outside circle end if I'm not using a square root because it is computationally intensive and not required because the comparison also holds for squared values. cheers paul 2011/10/3 Lucas Hutchison : > I am working on a small experiment where I would like the following: > > -Target (20 x 20 pixel red circle) appears at a random location on the > screen > -when the target is presented, the participant must click the target > -once the participant clicks, the next randomly located target will > appear (and the prior target is removed), and the process repeats for > n number of trials needed > > I am able to display the targets at random locations, but I am unsure > of how to record the X and Y positions of the click and how to compare > those to the actual X and Y positions of the target to determine > accuracy.  I would like to record both the response time and the click > accuracy. > > I have been trying to find resources online and in the help > documentation, but much of the online code is older than my version > and some of the methods/ objects they use have been renamed. > > I am using E-Prime version 2.0.8.74 > > > Thanks for the help! > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From kathrin_kollndorfer at hotmail.com Tue Oct 4 06:16:40 2011 From: kathrin_kollndorfer at hotmail.com (Kathrin Kollndorfer) Date: Mon, 3 Oct 2011 23:16:40 -0700 Subject: Linguistic experiment Message-ID: Hi, I'm working on a linguistic experiment and I have some troubles. In my experiment participants have to read words. In general the experiment runs well, but after 83 trials the program closes without a specific error message. Does anybody know why this happens (I'm working with version 1.1 SP3) Thanks, Kathrin -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From hester.duffy at gmail.com Tue Oct 4 07:34:05 2011 From: hester.duffy at gmail.com (Hester Duffy) Date: Tue, 4 Oct 2011 08:34:05 +0100 Subject: Linguistic experiment In-Reply-To: <2b6ec090-0a93-436e-9113-3702f094e44f@j31g2000vbl.googlegroups.com> Message-ID: When it closes, does it just shut the entire program down? What happens when you generate the script? It's going to be hard to diagnose the problem without more specific details, so a couple more questions; are the trials randomised? If not, check the stimulus file it's tripping up on; there could be a problem with it. If they are, are they just randomised by the list function, or is there other user-defined input numbering them? If for some reason e-prime is only expecting there to be 82 trials, that could cause it to crash when it gets to 83. If you can identify the bit of the code which is causing problems, it would be worth posting that here to see if anyone can spot the issue. H On Tue, Oct 4, 2011 at 7:16 AM, Kathrin Kollndorfer < kathrin_kollndorfer at hotmail.com> wrote: > Hi, > > I'm working on a linguistic experiment and I have some troubles. In my > experiment participants have to read words. In general the experiment > runs well, but after 83 trials the program closes without a specific > error message. Does anybody know why this happens (I'm working with > version 1.1 SP3) > > Thanks, > Kathrin > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From lahutchi at mtu.edu Tue Oct 4 16:34:19 2011 From: lahutchi at mtu.edu (Lucas Hutchison) Date: Tue, 4 Oct 2011 09:34:19 -0700 Subject: Mouse Click & Target Task In-Reply-To: Message-ID: Currently I am having trouble capturing the x, y coordinates of the mouse. I currently have something like this: dim rtmouse as MouseResponseData set rtmouse = CMouseResponseData(?not sure what to put in here since the documentation i found using this had something that gave me errors at run?) On Oct 3, 6:03 pm, Paul Groot wrote: > Hi Lucas, > > After capturing a mouse click response you could immediately retrieve > the mouse position using a few lines of script: > > dim ptMouse as Point > Mouse.GetCursorPos ptMouse.x, ptMouse.y > > To determine if this point is inside the drawn circle you could use a > simple calculation: just calculate the (squared) distance between the > center of the circle and the hit point: > > Const radius = 10 > dim dx as long > dim dy as long > dx = ptMouse.x - center.x > dy = ptMouse.y - center.y > if (dx*dx + dy*dy)<=radius*radius then >    ... inside circle > else >   ... outside circle > end if > > I'm not using a square root because it is computationally intensive > and not required because the comparison also holds for squared values. > > cheers > paul > > 2011/10/3 Lucas Hutchison : > > > I am working on a small experiment where I would like the following: > > > -Target (20 x 20 pixel red circle) appears at a random location on the > > screen > > -when the target is presented, the participant must click the target > > -once the participant clicks, the next randomly located target will > > appear (and the prior target is removed), and the process repeats for > > n number of trials needed > > > I am able to display the targets at random locations, but I am unsure > > of how to record the X and Y positions of the click and how to compare > > those to the actual X and Y positions of the target to determine > > accuracy.  I would like to record both the response time and the click > > accuracy. > > > I have been trying to find resources online and in the help > > documentation, but much of the online code is older than my version > > and some of the methods/ objects they use have been renamed. > > > I am using E-Prime version 2.0.8.74 > > > Thanks for the help! > > > -- > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Tue Oct 4 19:23:42 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Tue, 4 Oct 2011 15:23:42 -0400 Subject: Linguistic experiment In-Reply-To: <2b6ec090-0a93-436e-9113-3702f094e44f@j31g2000vbl.googlegro ups.com> Message-ID: Kathrin, First, you should take this problem (and really, almost any question about E-Prime) straight to PST Web Support at http://support.pstnet.com/e%2Dprime/support/login.asp (and then please post back here with their response). Second, why not at least upgrade to EP 1.2.1.847? That is the latest version in the 1.x line, can be readily downloaded from the PST web site, and may fix some issues. If you do have some reason to stick with 1.1 instead of 1.2, at least upgrade to 1.1.4.1 (also downloadable from PST). -- David McFarlane, Professional Faultfinder At 10/4/2011 02:16 AM Tuesday, you wrote: >Hi, > >I'm working on a linguistic experiment and I have some troubles. In my >experiment participants have to read words. In general the experiment >runs well, but after 83 trials the program closes without a specific >error message. Does anybody know why this happens (I'm working with >version 1.1 SP3) > >Thanks, >Kathrin -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Tue Oct 4 19:32:12 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Tue, 4 Oct 2011 15:32:12 -0400 Subject: Mouse Click & Target Task In-Reply-To: <60687cb4-b92f-4fdf-b2a7-5de0b2b72be3@s9g2000yql.googlegrou ps.com> Message-ID: Lucas, Paul Groot nicely showed how to do this by using the mouse directly instead of through an input mask. That is probably easier to do. The method that you are working on instead uses a mouse input mask as part of a stimulus object. That can offer some advantages, but is much harder to use -- as you have seen, it requires wrestling with the MouseResponseData collection. To get some idea, see the "Response Areas for Mouse Input" and "Multiple Response Collection" examples which you may download from the PST web site. You might also look at the MouseResponseData topic and related topics in the E-Basic Help facility. -- David McFarlane, Professional Faultfinder At 10/4/2011 12:34 PM Tuesday, Lucas Hutchison wrote: >Currently I am having trouble capturing the x, y coordinates of the >mouse. I currently have something like this: > > >dim rtmouse as MouseResponseData > >set rtmouse = CMouseResponseData(?not sure what to put in here since >the documentation i found using this had something that gave me errors >at run?) > > >On Oct 3, 6:03 pm, Paul Groot wrote: > > Hi Lucas, > > > > After capturing a mouse click response you could immediately retrieve > > the mouse position using a few lines of script: > > > > dim ptMouse as Point > > Mouse.GetCursorPos ptMouse.x, ptMouse.y > > > > To determine if this point is inside the drawn circle you could use a > > simple calculation: just calculate the (squared) distance between the > > center of the circle and the hit point: > > > > Const radius = 10 > > dim dx as long > > dim dy as long > > dx = ptMouse.x - center.x > > dy = ptMouse.y - center.y > > if (dx*dx + dy*dy)<=radius*radius then > > ... inside circle > > else > > ... outside circle > > end if > > > > I'm not using a square root because it is computationally intensive > > and not required because the comparison also holds for squared values. > > > > cheers > > paul > > > > 2011/10/3 Lucas Hutchison : > > > > > I am working on a small experiment where I would like the following: > > > > > -Target (20 x 20 pixel red circle) appears at a random location on the > > > screen > > > -when the target is presented, the participant must click the target > > > -once the participant clicks, the next randomly located target will > > > appear (and the prior target is removed), and the process repeats for > > > n number of trials needed > > > > > I am able to display the targets at random locations, but I am unsure > > > of how to record the X and Y positions of the click and how to compare > > > those to the actual X and Y positions of the target to determine > > > accuracy. I would like to record both the response time and the click > > > accuracy. > > > > > I have been trying to find resources online and in the help > > > documentation, but much of the online code is older than my version > > > and some of the methods/ objects they use have been renamed. > > > > > I am using E-Prime version 2.0.8.74 > > > > > Thanks for the help! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From asaliam20 at gmail.com Wed Oct 5 12:42:33 2011 From: asaliam20 at gmail.com (anahita khorrami) Date: Wed, 5 Oct 2011 16:12:33 +0330 Subject: dot prob Message-ID: Hi, Would you please tell me how I can design dot prob task and randomize the stimuli with E prime. Best regards, Anahita -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From orkano at gmail.com Wed Oct 5 15:16:07 2011 From: orkano at gmail.com (Orkan) Date: Wed, 5 Oct 2011 08:16:07 -0700 Subject: divided attention script? Message-ID: Dear all, Im working with virtual pilots on situation awareness in Cognitive Science Dept, METU and trying to build a divided attention task where participant will need to observe 2 different visual stimuli similar to WAFG test of vienna battery. http://www.lafayetteinstrumenteurope.com/product_detail.asp?ItemID=476&cat=107 Can you recommend anything similar coding that i can modify? Any suggestions will be great for the start! Thanks in advance Orkan -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From elhsh1 at gmail.com Wed Oct 5 20:31:09 2011 From: elhsh1 at gmail.com (elahe hashemi) Date: Wed, 5 Oct 2011 13:31:09 -0700 Subject: dot probe Message-ID: Hi, Would you please tell me how I can design dot prob task and randomize the stimuli with E prime. Best regards,elahe -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From baltimore.ben at gmail.com Wed Oct 5 20:40:09 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Wed, 5 Oct 2011 16:40:09 -0400 Subject: dot probe In-Reply-To: <6b1cb317-f1b1-4346-93ba-a953148ac444@b6g2000vbz.googlegroups.com> Message-ID: maybe you and anahita could work together to figure it out? On Wed, Oct 5, 2011 at 4:31 PM, elahe hashemi wrote: > Hi, Would you please tell me how I can design dot prob task and > randomize the stimuli with E prime. >  Best regards,elahe > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From lapate at gmail.com Wed Oct 5 22:14:29 2011 From: lapate at gmail.com (Regina L) Date: Wed, 5 Oct 2011 15:14:29 -0700 Subject: How to change the gamma setting in Eprime? Message-ID: Dear all, I am trying to figure out how to change the gamma setting in Eprime as to have a linear luminance profile for my experiment, but I cannot find anything in the help files about this (nor on the display settings in Eprime). Has anyone done this before? I found an unanswered post regarding the exact same topic in the PST user forum (below). Thanks! Regina "Hi, We are trying to run an eprime object recognition study and we can change the gamma on the control panel of the computer but this setting does not remain when we execute eprime. Is there any way to keep the gamma setting from the control panel in eprime? Alternatively, is there any way to control the color look-up table in eprime? In the end we're trying to achieve a linear luminance profile as we do with our psychophysical experiments. Thanks, Vanessa" -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 6 09:02:47 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 6 Oct 2011 10:02:47 +0100 Subject: How to change the gamma setting in Eprime? In-Reply-To: <78a7f447-9a34-4953-a447-27b7d92086d5@i30g2000yqd.googlegroups.com> Message-ID: Hi, I think Gamma settings are part of the video card's driver specific settings - i.e., not windows OS settings as such. I understand what you set there gets reverted in E-prime once running an experiment? If you want to avoid that, you might delve deeper into the gfx card driver settings to make sure the application specific settings get overridden (a common setting in ATI and NVidia cards) by your driver's. Possibly, but doubtfully, your settings remain somewhat more stable if you make sure that the number of colours (i.e. in bits, like 32) is the same in E-Prime as it is in the OS (NOT true by default - 16 in E-Prime, 32/24, generally in Windows), as well as the resolution (and I know few people running their os in 640x480 as well). Moreover, if you'll look on the internet, you're most likely to find alternative drivers for your video card which complement your existing options, possibly changing gamma and such. However, as a side point, I think you might want to change the stimulus material rather than changing the gamma, which inevitably compromises quality of your stimulus material (which sounds like something psychophysicists would deeply care about). Use photoshop or whatever to change gamma there, so you know exactly what is happening, save that (this can be done in batch processing, I heard, so it's not all that much work), and only then use these files in E-Prime. I don't know the exact situation here, but generally, this is the better way to go. Best, Mich Michiel Spapé Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Regina L Sent: 05 October 2011 23:14 To: E-Prime Subject: How to change the gamma setting in Eprime? Dear all, I am trying to figure out how to change the gamma setting in Eprime as to have a linear luminance profile for my experiment, but I cannot find anything in the help files about this (nor on the display settings in Eprime). Has anyone done this before? I found an unanswered post regarding the exact same topic in the PST user forum (below). Thanks! Regina "Hi, We are trying to run an eprime object recognition study and we can change the gamma on the control panel of the computer but this setting does not remain when we execute eprime. Is there any way to keep the gamma setting from the control panel in eprime? Alternatively, is there any way to control the color look-up table in eprime? In the end we're trying to achieve a linear luminance profile as we do with our psychophysical experiments. Thanks, Vanessa" -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 6 09:58:20 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 6 Oct 2011 10:58:20 +0100 Subject: dot probe In-Reply-To: Message-ID: Or any of the others... http://groups.google.com/group/e-prime/search?group=e-prime&q=dot+probe There are some examples online, I'm pretty sure, at which point the question is "Does anybody by any chance have already programmed a dot-probe task for me to use? You'll get 1) thank-you's in the article, 2) £80/hr for programming it for us, 3)a co-authorship of the paper OR 4) my gratitude.". If there's no example, or you want to do it yourself, try to learn more about the software first, then define how or why you get stuck. "I want to write a crime-novel*, how do I design a plot and create characters", is not really going to give you a lot of answers. Best, Mich Michiel Spapé Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu * On a lighter note, I'm reading China Miéville's "The City and the City" at the moment - highly recommended. -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of ben robinson Sent: 05 October 2011 21:40 To: e-prime at googlegroups.com Subject: Re: dot probe maybe you and anahita could work together to figure it out? On Wed, Oct 5, 2011 at 4:31 PM, elahe hashemi wrote: > Hi, Would you please tell me how I can design dot prob task and > randomize the stimuli with E prime. >  Best regards,elahe > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From jacanterbury at gmail.com Thu Oct 6 15:53:17 2011 From: jacanterbury at gmail.com (JACanterbury) Date: Thu, 6 Oct 2011 08:53:17 -0700 Subject: dynamically created List only operates for level 1 Message-ID: Hi I'm setting up my TrialList to have only 1 level and then building it on the fly something like this ... >>>>>>>>>>>>>>>>> for index = 1 to NUMBER_OF_TRIALS TrialList.setProc index, "TrialProc" TrialList.setWeight index, "1" TrialList.setAttrib index, "response", responses( index ) TrialList.setAttrib index, "image", "images\\" & images( index ) TrialList.setAttrib index, "delay", Random( interval_min, interval_max ) if index < NUMBER_OF_TRIALS then TrialList.AddLevel index + 1 ' add the next level to the list ready for the next loop iteration end if next debug.print "TrialList size = " & TrialList.Size >>>>>>>>>>>>>> this code all works fine and adds the extra levels and the final debug.print displays the correct value (50 in this case) however the script then only performs 1 iteration so it seems to ignore all the extra levels that have been dynamically added. Interestingly, if I add an extra level ie level 2) manually before running this code (with the approp tweak to stop AddLevel complaining) then the list operates for level 1 & level 2. It's as if e-prime is using the startup value for the list size and ignoring what has happened at run time. Any ideas would be appreciated ( i'd rather keep it dynamic if possible) Thanks -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From baltimore.ben at gmail.com Thu Oct 6 17:30:09 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Thu, 6 Oct 2011 13:30:09 -0400 Subject: dynamically created List only operates for level 1 In-Reply-To: Message-ID: don't forget to add TrialList.Reset after adding all those levels. hope that helps. On Thu, Oct 6, 2011 at 11:53 AM, JACanterbury wrote: > Hi > > I'm setting up my TrialList to have only 1 level and then building it > on the fly something like this ... >>>>>>>>>>>>>>>>>> > for index = 1 to NUMBER_OF_TRIALS > >        TrialList.setProc index, "TrialProc" >        TrialList.setWeight index, "1" >        TrialList.setAttrib index, "response", responses( index ) >        TrialList.setAttrib index, "image", "images\\" & images( index ) >        TrialList.setAttrib index, "delay", Random( interval_min, > interval_max ) > > >        if index < NUMBER_OF_TRIALS then >                TrialList.AddLevel index + 1    ' add the next level to the list > ready for the next loop iteration >        end if > > next > > debug.print "TrialList size = " & TrialList.Size >>>>>>>>>>>>>>> > > this code all works fine and adds the extra levels and the final > debug.print displays the correct value (50 in this case) however the > script then only performs 1 iteration so it seems to ignore all the > extra levels that have been dynamically added. > Interestingly, if I add an extra level ie level 2) manually  before > running this code (with the approp tweak to stop AddLevel complaining) > then the list operates for level 1 & level 2. > > It's as if e-prime is using the startup value for the list size and > ignoring what has happened at run time. > > Any ideas would be appreciated ( i'd rather keep it dynamic if > possible) > > Thanks > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Thu Oct 6 19:15:35 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 6 Oct 2011 15:15:35 -0400 Subject: How to change the gamma setting in Eprime? In-Reply-To: <09DAEA8BC192C94EB62C8E71FC35A5D930907A091A@EXCHANGE3.ad.no ttingham.ac.uk> Message-ID: Regina, Weighing in here... Indeed, I do not think that E-Prime has any facility for handling gamma settings, but if you really want to know then you should submit your question to PST at http://support.pstnet.com/e%2Dprime/support/login.asp (and then post back here with their response). If the issue is one of EP overriding gamma settings done externally (thanks for that insight, Mich), if you use EP2 then you might try setting the EP Display device to "Match desktop resolution at runtime", just in case that preserves externally done video settings. Ultimately, if you want or need your program to handle gamma settings, then abandon E-Prime. MATLAB using the Image Processing Toolbox and the Psychophysics Toolbox will handle this nicely. -- David McFarlane, Professional Faultfinder At 10/6/2011 05:02 AM Thursday, Michiel Spape wrote: >Hi, >I think Gamma settings are part of the video >card's driver specific settings - i.e., not >windows OS settings as such. I understand what >you set there gets reverted in E-prime once >running an experiment? If you want to avoid >that, you might delve deeper into the gfx card >driver settings to make sure the application >specific settings get overridden (a common >setting in ATI and NVidia cards) by your >driver's. Possibly, but doubtfully, your >settings remain somewhat more stable if you make >sure that the number of colours (i.e. in bits, >like 32) is the same in E-Prime as it is in the >OS (NOT true by default - 16 in E-Prime, 32/24, >generally in Windows), as well as the resolution >(and I know few people running their os in >640x480 as well). Moreover, if you'll look on >the internet, you're most likely to find >alternative drivers for your video card which >complement your existing options, possibly changing gamma and such. > >However, as a side point, I think you might want >to change the stimulus material rather than >changing the gamma, which inevitably compromises >quality of your stimulus material (which sounds >like something psychophysicists would deeply >care about). Use photoshop or whatever to change >gamma there, so you know exactly what is >happening, save that (this can be done in batch >processing, I heard, so it's not all that much >work), and only then use these files in E-Prime. >I don't know the exact situation here, but >generally, this is the better way to go. > >Best, >Mich > >Michiel Spapé >Research Fellow >Perception & Action group >University of Nottingham >School of Psychology >www.cognitology.eu > > >-----Original Message----- >From: e-prime at googlegroups.com >[mailto:e-prime at googlegroups.com] On Behalf Of Regina L >Sent: 05 October 2011 23:14 >To: E-Prime >Subject: How to change the gamma setting in Eprime? > >Dear all, > >I am trying to figure out how to change the gamma setting in Eprime as >to have a linear luminance profile for my experiment, but I cannot >find anything in the help files about this (nor on the display >settings in Eprime). Has anyone done this before? I found an >unanswered post regarding the exact same topic in the PST user forum >(below). > >Thanks! > >Regina > > > >"Hi, > >We are trying to run an eprime object recognition study and we can >change the gamma on the control panel of the computer but this setting >does not remain when we execute eprime. Is there any way to keep the >gamma setting from the control panel in eprime? > >Alternatively, is there any way to control the color look-up table in >eprime? In the end we're trying to achieve a linear luminance profile >as we do with our psychophysical experiments. > >Thanks, > >Vanessa" -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From jacanterbury at gmail.com Fri Oct 7 14:18:21 2011 From: jacanterbury at gmail.com (JACanterbury) Date: Fri, 7 Oct 2011 07:18:21 -0700 Subject: dynamically created List only operates for level 1 In-Reply-To: Message-ID: Hi Ben, Thanks for the suggestion. Actually I had the .Reset (I just missed it off the bottom of the cut and paste). It's frustrating because the debug.print returns 50 which is what I'd expect its just that the loop only runs once. I've jsut condensed it down to the bare bones :- >>>const NUMBER_OF_TRIALS as integer = 50 dim index as integer 'loop variable for index = 1 to NUMBER_OF_TRIALS TrialList.setProc index, "TrialProc" TrialList.setWeight index, "1" TrialList.setAttrib index, "text", "cat" TrialList.setAttrib index, "correct", "a" if index < NUMBER_OF_TRIALS then TrialList.AddLevel index + 1 end if debug.print index & " - " & TrialList.getAttrib(index, "text") & " - " & TrialList.getAttrib(index, "correct") next debug.print "TrialList size = " & TrialList.Size TrialList.Reset <<<< with a basic TrialList with a single level as follows;- >>> ID Weight nested procedure Text Correct 1 1 TrialProc Cat a <<< which has the same problem :( Is anyone else successfully using AddLevel ? If so, then some sample code would be appreciated, Many thanks, John On Oct 6, 6:30 pm, ben robinson wrote: > don't forget to add TrialList.Reset after adding all those levels. > hope that helps. > > > > > > > > On Thu, Oct 6, 2011 at 11:53 AM, JACanterbury wrote: > > Hi > > > I'm setting up my TrialList to have only 1 level and then building it > > on the fly something like this ... > > > for index = 1 to NUMBER_OF_TRIALS > > >        TrialList.setProc index, "TrialProc" > >        TrialList.setWeight index, "1" > >        TrialList.setAttrib index, "response", responses( index ) > >        TrialList.setAttrib index, "image", "images\\" & images( index ) > >        TrialList.setAttrib index, "delay", Random( interval_min, > > interval_max ) > > >        if index < NUMBER_OF_TRIALS then > >                TrialList.AddLevel index + 1    ' add the next level to the list > > ready for the next loop iteration > >        end if > > > next > > > debug.print "TrialList size = " & TrialList.Size > > > this code all works fine and adds the extra levels and the final > > debug.print displays the correct value (50 in this case) however the > > script then only performs 1 iteration so it seems to ignore all the > > extra levels that have been dynamically added. > > Interestingly, if I add an extra level ie level 2) manually  before > > running this code (with the approp tweak to stop AddLevel complaining) > > then the list operates for level 1 & level 2. > > > It's as if e-prime is using the startup value for the list size and > > ignoring what has happened at run time. > > > Any ideas would be appreciated ( i'd rather keep it dynamic if > > possible) > > > Thanks > > > -- > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Fri Oct 7 15:08:29 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Fri, 7 Oct 2011 11:08:29 -0400 Subject: dynamically created List only operates for level 1 In-Reply-To: Message-ID: John, Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... I have successfully made dynamic Lists work using E-Basic code. Whenever I want to figure out how to do something like that, I start by making some simple relevant mock-up in E-Studio, have it generate the code, and then look at that generated code. In this case, add a List (e.g., "List1"), add a few levels to that List, set Load Method to "Script" (so that it generates full code for making the List), and Generate the code. Then scroll down to the InitObjects area in the full code. There you will find a few lines like Set List1.TerminateCondition = Cycles(1) Set List1.ResetCondition = Samples(5) List1.Reset I think your key lies there. After adding your levels, in addition to Resetting the List (as Ben already mentioned), you still need to set the TerminateCondition and ResetCondition -- see the List.TerminateCondition and List.ResetCondition topics, as well as the Cycles and Samples topics, in the E-Basic Help facility. -- David McFarlane, Professional Faultfinder At 10/7/2011 10:18 AM Friday, you wrote: >Hi Ben, > >Thanks for the suggestion. Actually I had the .Reset (I just missed it >off the bottom of the cut and paste). > >It's frustrating because the debug.print returns 50 which is what I'd >expect its just that the loop only runs once. > >I've jsut condensed it down to the bare bones :- > > >>>const NUMBER_OF_TRIALS as integer = 50 > >dim index as integer 'loop variable > >for index = 1 to NUMBER_OF_TRIALS > > TrialList.setProc index, "TrialProc" > TrialList.setWeight index, "1" > TrialList.setAttrib index, "text", "cat" > TrialList.setAttrib index, "correct", "a" > > if index < NUMBER_OF_TRIALS then > TrialList.AddLevel index + 1 > end if > > debug.print index & " - " & TrialList.getAttrib(index, "text") & " - >" & TrialList.getAttrib(index, "correct") > >next > >debug.print "TrialList size = " & TrialList.Size > >TrialList.Reset ><<<< > >with a basic TrialList with a single level as follows;- > > >>> >ID Weight nested procedure Text Correct >1 1 TrialProc Cat a ><<< > > >which has the same problem :( > >Is anyone else successfully using AddLevel ? If so, then some sample >code would be appreciated, > >Many thanks, > >John > > > >On Oct 6, 6:30 pm, ben robinson wrote: > > don't forget to add TrialList.Reset after adding all those levels. > > hope that helps. > > > > > > > > > > > > > > > > On Thu, Oct 6, 2011 at 11:53 AM, JACanterbury > wrote: > > > Hi > > > > > I'm setting up my TrialList to have only 1 level and then building it > > > on the fly something like this ... > > > > > for index = 1 to NUMBER_OF_TRIALS > > > > > TrialList.setProc index, "TrialProc" > > > TrialList.setWeight index, "1" > > > TrialList.setAttrib index, "response", responses( index ) > > > TrialList.setAttrib index, "image", "images\\" & images( index ) > > > TrialList.setAttrib index, "delay", Random( interval_min, > > > interval_max ) > > > > > if index < NUMBER_OF_TRIALS then > > > TrialList.AddLevel index + 1 ' add the next > level to the list > > > ready for the next loop iteration > > > end if > > > > > next > > > > > debug.print "TrialList size = " & TrialList.Size > > > > > this code all works fine and adds the extra levels and the final > > > debug.print displays the correct value (50 in this case) however the > > > script then only performs 1 iteration so it seems to ignore all the > > > extra levels that have been dynamically added. > > > Interestingly, if I add an extra level ie level 2) manually before > > > running this code (with the approp tweak to stop AddLevel complaining) > > > then the list operates for level 1 & level 2. > > > > > It's as if e-prime is using the startup value for the list size and > > > ignoring what has happened at run time. > > > > > Any ideas would be appreciated ( i'd rather keep it dynamic if > > > possible) > > > > > Thanks -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Fri Oct 7 15:23:00 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Fri, 7 Oct 2011 11:23:00 -0400 Subject: showing a video on E-Prime Message-ID: Hi All, I am developing a task for an infant EEG study. I need to show a video on E-Prime for at least 5 min (max 10 min). Has anyone tried it? The second question is in regards to a giff lab (moving images). I need a moving attention grabber image to fixate infants' attention. Has anyone know a library for that. Thank you very much. Best, Meltem -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Fri Oct 7 15:19:41 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Fri, 7 Oct 2011 11:19:41 -0400 Subject: dynamically created List only operates for level 1 In-Reply-To: <4e8f15f2.4cd62a0a.4ba9.6a1eSMTPIN_ADDED@gmr-mx.google.com> Message-ID: Oh, your example did not seem to include using code to add List attributes (as opposed to levels), but just for those who may run across this, the List topic in the E-Basic Help curiously lacks the List.AddAttrrib method. If you do a Find for "AddAttrib" on the full Help Topics, you will find it under the topic "FactorSpace.AddAttrib". (I also documented this back in 2009 at http://support.pstnet.com/forum/Topic1241-12-1.aspx .) -- David McFarlane, Professional Faultfinder At 10/7/2011 11:08 AM Friday, David McFarlane wrote: >John, > >Stock reminder: 1) I do not work for PST. 2) PST's trained staff >takes any and all questions at >http://support.pstnet.com/e%2Dprime/support/login.asp , and they >strive to respond to all requests in 24-48 hours -- this is pretty >much their substitute for proper documentation, so make full use of >it. 3) If you do get an answer from PST Web Support, please extend >the courtesy of posting their reply back here for the sake of others. > >That said, here is my take... > >I have successfully made dynamic Lists work using E-Basic >code. Whenever I want to figure out how to do something like that, >I start by making some simple relevant mock-up in E-Studio, have it >generate the code, and then look at that generated code. > >In this case, add a List (e.g., "List1"), add a few levels to that >List, set Load Method to "Script" (so that it generates full code >for making the List), and Generate the code. Then scroll down to >the InitObjects area in the full code. There you will find a few lines like > > Set List1.TerminateCondition = Cycles(1) > Set List1.ResetCondition = Samples(5) > List1.Reset > >I think your key lies there. After adding your levels, in addition >to Resetting the List (as Ben already mentioned), you still need to >set the TerminateCondition and ResetCondition -- see the >List.TerminateCondition and List.ResetCondition topics, as well as >the Cycles and Samples topics, in the E-Basic Help facility. > >-- David McFarlane, Professional Faultfinder > > >At 10/7/2011 10:18 AM Friday, you wrote: >>Hi Ben, >> >>Thanks for the suggestion. Actually I had the .Reset (I just missed it >>off the bottom of the cut and paste). >> >>It's frustrating because the debug.print returns 50 which is what I'd >>expect its just that the loop only runs once. >> >>I've jsut condensed it down to the bare bones :- >> >> >>>const NUMBER_OF_TRIALS as integer = 50 >> >>dim index as integer 'loop variable >> >>for index = 1 to NUMBER_OF_TRIALS >> >> TrialList.setProc index, "TrialProc" >> TrialList.setWeight index, "1" >> TrialList.setAttrib index, "text", "cat" >> TrialList.setAttrib index, "correct", "a" >> >> if index < NUMBER_OF_TRIALS then >> TrialList.AddLevel index + 1 >> end if >> >> debug.print index & " - " & TrialList.getAttrib(index, "text") & " - >>" & TrialList.getAttrib(index, "correct") >> >>next >> >>debug.print "TrialList size = " & TrialList.Size >> >>TrialList.Reset >><<<< >> >>with a basic TrialList with a single level as follows;- >> >> >>> >>ID Weight nested procedure Text Correct >>1 1 TrialProc Cat a >><<< >> >> >>which has the same problem :( >> >>Is anyone else successfully using AddLevel ? If so, then some sample >>code would be appreciated, >> >>Many thanks, >> >>John >> >> >> >>On Oct 6, 6:30 pm, ben robinson wrote: >> > don't forget to add TrialList.Reset after adding all those levels. >> > hope that helps. >> > >> > >> > >> > >> > >> > >> > >> > On Thu, Oct 6, 2011 at 11:53 AM, JACanterbury >> wrote: >> > > Hi >> > >> > > I'm setting up my TrialList to have only 1 level and then building it >> > > on the fly something like this ... >> > >> > > for index = 1 to NUMBER_OF_TRIALS >> > >> > > TrialList.setProc index, "TrialProc" >> > > TrialList.setWeight index, "1" >> > > TrialList.setAttrib index, "response", responses( index ) >> > > TrialList.setAttrib index, "image", "images\\" & images( index ) >> > > TrialList.setAttrib index, "delay", Random( interval_min, >> > > interval_max ) >> > >> > > if index < NUMBER_OF_TRIALS then >> > > TrialList.AddLevel index + 1 ' add the next >> level to the list >> > > ready for the next loop iteration >> > > end if >> > >> > > next >> > >> > > debug.print "TrialList size = " & TrialList.Size >> > >> > > this code all works fine and adds the extra levels and the final >> > > debug.print displays the correct value (50 in this case) however the >> > > script then only performs 1 iteration so it seems to ignore all the >> > > extra levels that have been dynamically added. >> > > Interestingly, if I add an extra level ie level 2) manually before >> > > running this code (with the approp tweak to stop AddLevel complaining) >> > > then the list operates for level 1 & level 2. >> > >> > > It's as if e-prime is using the startup value for the list size and >> > > ignoring what has happened at run time. >> > >> > > Any ideas would be appreciated ( i'd rather keep it dynamic if >> > > possible) >> > >> > > Thanks -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 9 09:06:16 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 9 Oct 2011 02:06:16 -0700 Subject: How to design an attribute column such that it will receive input from many ask boxes for the same participant Message-ID: Hi all, After the participants completed the trials in my experiment I want them to answer inventory which is made of several questions. For that, I entered several ask boxes one after the other (e.g., a=askbox(question 1) b=askbox(question2) and etc) and for each question the answer is kept in different attribute. My question is how can I save all of the answers from these ask boxes so they appear in the same attribute and in one column? Regards, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Sun Oct 9 10:03:35 2011 From: pquain at une.edu.au (Peter Quain) Date: Sun, 9 Oct 2011 21:03:35 +1100 Subject: How to design an attribute column such that it will receive input from many ask boxes for the same participant In-Reply-To: Message-ID: e-prime data files are organised by trial ... row by row. I recall collecting handedness, gender, age once at beginning of experiment, and those attributes had an entry in each row of the final edat file. I just grabbed what info I wanted in later processing of the file (where I wanted summary per subject, in a single row, of course). At 08:06 PM 9/10/2011, you wrote: >Hi all, > >After the participants completed the trials in my experiment I want >them to answer inventory which is made of several questions. For that, >I entered several ask boxes one after the other (e.g., >a=askbox(question 1) b=askbox(question2) and etc) and for each >question the answer is kept in different attribute. My question is how >can I save all of the answers from these ask boxes so they appear in >the same attribute and in one column? > >Regards, >Gilis > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pfc.groot at gmail.com Sun Oct 9 22:07:28 2011 From: pfc.groot at gmail.com (Paul Groot) Date: Mon, 10 Oct 2011 00:07:28 +0200 Subject: How to design an attribute column such that it will receive input from many ask boxes for the same participant In-Reply-To: <201110091003.p99A3biX005749@mail9.tpg.com.au> Message-ID: Hi Gilis, you could add a new list object at the end of the session and add a level/row to this list for each question. The text for the questions could be inserted as an attirbute in this list (i.e. a single column containing each question on a separate row). Then use the askbox once in an inline script in the same way as you are doing now, but use the GetAttrib and SetAttrib functions to get the text from the list object and to save the answers. Since you are using the same attribute name for each answer, you will get the results in a single column on multiple rows. As a side note: I personally would stay away from the askbox function and use a regular eprime object instead. (You can configure the inputmask to accept and echo multiple characters until you press enter.) cheers, paul 2011/10/9 Peter Quain : > > e-prime data files are organised by trial ... row by row. I recall > collecting handedness, gender, age once at beginning of experiment, and > those attributes had an entry in each row of the final edat file. I just > grabbed what info I wanted in later processing of the file (where I wanted > summary per subject, in a single row, of course). > > At 08:06 PM 9/10/2011, you wrote: >> >> Hi all, >> >> After the participants completed the trials in my experiment I want >> them to answer inventory which is made of several questions. For that, >> I entered several ask boxes one after the other (e.g., >> a=askbox(question 1) b=askbox(question2) and etc) and for each >> question the answer is kept in different attribute. My question is how >> can I save all of the answers from these ask boxes so they appear in >> the same attribute and in one column? >> >> Regards, >> Gilis >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to >> e-prime+unsubscribe at googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/e-prime?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From neil.mclatchie at googlemail.com Mon Oct 10 15:05:40 2011 From: neil.mclatchie at googlemail.com (Neil McLatchie) Date: Mon, 10 Oct 2011 08:05:40 -0700 Subject: Randomized maths questions Message-ID: Hi, I'm trying to present participants with 10 maths questions. I've created a list ("shmaths"), with the procedure "shmathsproc". In the list I've two attributes, one called "shquestion" and one called "shcorrect". I then created 10 rows with a different maths question/answer in each. In the procedure, I have an inline, a label, a text display and another inline. This is because I want participants to answer by clicking the left mouse button as many times as they think the answer is (e.g. 7 times if the answer is 7), and then right-click to submit the answer. These are basically what the inlines and label are doing, and they work fine. In the text I have "[shquestion] = [shmaths]", shmaths being the name of the participant's response as they click. For some reason it is only showing 1 maths question and not going down the whole list. I have tried changing the selection sequence but seemingly to no avail. Also for some reason, the program stops running after this text box. Any help will be greatly appreciated! Cheers. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Mon Oct 10 16:46:55 2011 From: giladsabo at gmail.com (gilis) Date: Mon, 10 Oct 2011 09:46:55 -0700 Subject: Moving flanker to the right position Message-ID: Hi, I have two flankers in my experiment display, one is on the right and the other is on the left. Each flanker is made of 3 words (separate text object for each), one above the other. The problem I get is that while on the left everything seems OK and balanced, on the right, the upper word is pushed from the beginning of the display, so while the flanker on the left side look like that: FOOD WATER FORK the flanker on the right side look like that: SEA LAND BOAT i.e., it doesn't start from the beginning of the row though it was defined to start from there..Also, I was thinking that it is a problem with the way the word is put in the list from which the text object call it-but apparently there is nothing wrong...Also, while all other words remain stable when the experiment goes from one slide to the other, the only moving word is off course the upper one (i.e., sea). Thanks in advance, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Mon Oct 10 18:20:26 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 10 Oct 2011 14:20:26 -0400 Subject: How to design an attribute column such that it will receive input from many ask boxes for the same participant In-Reply-To: Message-ID: Gilis, I think you should follow Paul's advice here. But just to answer the question in the form it was posed, you can log a new row of data at any time by using the log method of the Context object from inline code, i.e., "c.Log" -- see the "Context.Log" topic in the E-Basic Help facility. So if you are bound & determined to do everything with inline code instead of doing thigs properly with a List, then that's how you do it. But once again, I think you should *not* do what I described here and instead just follow Paul's advice. -- David McFarlane, Professional Faultfinder At 10/9/2011 06:07 PM Sunday, you wrote: >Hi Gilis, > >you could add a new list object at the end of the session and add a >level/row to this list for each question. The text for the questions >could be inserted as an attirbute in this list (i.e. a single column >containing each question on a separate row). Then use the askbox once >in an inline script in the same way as you are doing now, but use the >GetAttrib and SetAttrib functions to get the text from the list object >and to save the answers. Since you are using the same attribute name >for each answer, you will get the results in a single column on >multiple rows. As a side note: I personally would stay away from the >askbox function and use a regular eprime object instead. (You can >configure the inputmask to accept and echo multiple characters until >you press enter.) > >cheers, >paul > >2011/10/9 Peter Quain : > > > > e-prime data files are organised by trial ... row by row. I recall > > collecting handedness, gender, age once at beginning of experiment, and > > those attributes had an entry in each row of the final edat file. I just > > grabbed what info I wanted in later processing of the file (where I wanted > > summary per subject, in a single row, of course). > > > > At 08:06 PM 9/10/2011, you wrote: > >> > >> Hi all, > >> > >> After the participants completed the trials in my experiment I want > >> them to answer inventory which is made of several questions. For that, > >> I entered several ask boxes one after the other (e.g., > >> a=askbox(question 1) b=askbox(question2) and etc) and for each > >> question the answer is kept in different attribute. My question is how > >> can I save all of the answers from these ask boxes so they appear in > >> the same attribute and in one column? > >> > >> Regards, > >> Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Mon Oct 10 19:30:45 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 10 Oct 2011 15:30:45 -0400 Subject: Randomized maths questions In-Reply-To: <8bc57a9b-db5d-4b02-a7d8-6c6b6fda5bb0@x19g2000vbl.googlegro ups.com> Message-ID: Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... Seems like a pretty good description of your task structure, but I do not follow your description of the symptoms. It seems like you are saying: 1) The program successfully runs one and only one trial from the List. 2) The program fails to run any trial, as it stops after the stimulus display. #1 is ambiguous (it could mean that the program runs one trial and exits, or that it runs 10 trials of the same stimulus), and #1 and #2 are mutually incompatible. Please clarify, and then maybe we can think of something. -- David McFarlane, Professional Faultfinder At 10/10/2011 11:05 AM Monday, you wrote: >I'm trying to present participants with 10 maths questions. I've >created a list ("shmaths"), with the procedure "shmathsproc". > >In the list I've two attributes, one called "shquestion" and one >called "shcorrect". I then created 10 rows with a different maths >question/answer in each. > >In the procedure, I have an inline, a label, a text display and >another inline. This is because I want participants to answer by >clicking the left mouse button as many times as they think the answer >is (e.g. 7 times if the answer is 7), and then right-click to submit >the answer. These are basically what the inlines and label are doing, >and they work fine. > >In the text I have "[shquestion] = [shmaths]", shmaths being the name >of the participant's response as they click. > >For some reason it is only showing 1 maths question and not going down >the whole list. I have tried changing the selection sequence but >seemingly to no avail. Also for some reason, the program stops running >after this text box. > >Any help will be greatly appreciated! > >Cheers. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From evelina at illinois.edu Mon Oct 10 20:43:40 2011 From: evelina at illinois.edu (Evelina Tapia) Date: Mon, 10 Oct 2011 13:43:40 -0700 Subject: Moving flanker to the right position In-Reply-To: <8c747bbb-c9d7-49ec-a3a7-2415361e733b@dk6g2000vbb.googlegroups.com> Message-ID: Gilis, under textbox properties you can specify text color, textbox background color etc. You can also specify alignment there as well so try that for you right display. Also, do you have separate text boxes for each word or for each flanker object? There could be potential word wrapping differences between the two items as well. Evelina On Oct 10, 11:46 am, gilis wrote: > Hi, > > I have two flankers in my experiment display, one is on the right and > the other is on the left. Each flanker is made of 3 words (separate > text object for each), one above the other. The problem I get is that > while on the left everything seems OK and balanced, on the right, the > upper word is pushed from the beginning of the display, so while the > flanker on the left side look like that: > > FOOD > WATER > FORK > > the flanker on the right side look like that: > >   SEA > LAND > BOAT > > i.e., it doesn't start from the beginning of the row though it was > defined to start from there..Also, I was thinking that it is a problem > with the way the word is put in the list from which the text object > call it-but apparently there is nothing wrong...Also, while all other > words remain stable when the experiment goes from one slide to the > other, the only moving word is off course the upper one (i.e., sea). > > Thanks in advance, > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Tue Oct 11 08:29:26 2011 From: giladsabo at gmail.com (gilis) Date: Tue, 11 Oct 2011 01:29:26 -0700 Subject: Moving flanker to the right position In-Reply-To: <6c241b9b-d7c3-467c-8a1f-a08150b660ec@x19g2000vbl.googlegroups.com> Message-ID: Yes I do..as for the x alignment and etc, it's just like that of the other words..there should be no reason why they appear so different in position on the display.. On Oct 10, 10:43 pm, Evelina Tapia wrote: > Gilis, > > under textbox properties you can specify text color, textbox > background color etc. You can also specify alignment there as well so > try that for you right display. Also, do you have separate text boxes > for each word or for each flanker object? There could be potential > word wrapping differences between the two items as well. > > Evelina > > On Oct 10, 11:46 am, gilis wrote: > > > > > > > > > Hi, > > > I have two flankers in my experiment display, one is on the right and > > the other is on the left. Each flanker is made of 3 words (separate > > text object for each), one above the other. The problem I get is that > > while on the left everything seems OK and balanced, on the right, the > > upper word is pushed from the beginning of the display, so while the > > flanker on the left side look like that: > > > FOOD > > WATER > > FORK > > > the flanker on the right side look like that: > > >   SEA > > LAND > > BOAT > > > i.e., it doesn't start from the beginning of the row though it was > > defined to start from there..Also, I was thinking that it is a problem > > with the way the word is put in the list from which the text object > > call it-but apparently there is nothing wrong...Also, while all other > > words remain stable when the experiment goes from one slide to the > > other, the only moving word is off course the upper one (i.e., sea). > > > Thanks in advance, > > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Tue Oct 11 12:51:25 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Tue, 11 Oct 2011 08:51:25 -0400 Subject: Moving flanker to the right position In-Reply-To: <9c02e94b-0bab-4f5c-8166-f37cb9df577e@hd1g2000vbb.googlegroups.com> Message-ID: Hi Gilis, I faced with similar problem. The solution to my problem was making images of flankers using adobe or matlab or python (jpeg). The delay was less than 10 ms. Best luck Meltem On Oct 11, 2011 4:29 AM, "gilis" wrote: > Yes I do..as for the x alignment and etc, it's just like that of the > other words..there should be no reason why they appear so different in > position on the display.. > > On Oct 10, 10:43 pm, Evelina Tapia wrote: > > Gilis, > > > > under textbox properties you can specify text color, textbox > > background color etc. You can also specify alignment there as well so > > try that for you right display. Also, do you have separate text boxes > > for each word or for each flanker object? There could be potential > > word wrapping differences between the two items as well. > > > > Evelina > > > > On Oct 10, 11:46 am, gilis wrote: > > > > > > > > > > > > > > > > > Hi, > > > > > I have two flankers in my experiment display, one is on the right and > > > the other is on the left. Each flanker is made of 3 words (separate > > > text object for each), one above the other. The problem I get is that > > > while on the left everything seems OK and balanced, on the right, the > > > upper word is pushed from the beginning of the display, so while the > > > flanker on the left side look like that: > > > > > FOOD > > > WATER > > > FORK > > > > > the flanker on the right side look like that: > > > > > SEA > > > LAND > > > BOAT > > > > > i.e., it doesn't start from the beginning of the row though it was > > > defined to start from there..Also, I was thinking that it is a problem > > > with the way the word is put in the list from which the text object > > > call it-but apparently there is nothing wrong...Also, while all other > > > words remain stable when the experiment goes from one slide to the > > > other, the only moving word is off course the upper one (i.e., sea). > > > > > Thanks in advance, > > > Gilis > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From baltimore.ben at gmail.com Tue Oct 11 13:58:38 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Tue, 11 Oct 2011 09:58:38 -0400 Subject: Moving flanker to the right position In-Reply-To: <9c02e94b-0bab-4f5c-8166-f37cb9df577e@hd1g2000vbb.googlegroups.com> Message-ID: are you sure you don't have an extra space hidden at the beginning of that one flanker containing "SEA"... " [flanker]" instead of "[flanker]" ? On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > Yes I do..as for the x alignment and etc, it's just like that of the > other words..there should be no reason why they appear so different in > position on the display.. > > On Oct 10, 10:43 pm, Evelina Tapia wrote: >> Gilis, >> >> under textbox properties you can specify text color, textbox >> background color etc. You can also specify alignment there as well so >> try that for you right display. Also, do you have separate text boxes >> for each word or for each flanker object? There could be potential >> word wrapping differences between the two items as well. >> >> Evelina >> >> On Oct 10, 11:46 am, gilis wrote: >> >> >> >> >> >> >> >> > Hi, >> >> > I have two flankers in my experiment display, one is on the right and >> > the other is on the left. Each flanker is made of 3 words (separate >> > text object for each), one above the other. The problem I get is that >> > while on the left everything seems OK and balanced, on the right, the >> > upper word is pushed from the beginning of the display, so while the >> > flanker on the left side look like that: >> >> > FOOD >> > WATER >> > FORK >> >> > the flanker on the right side look like that: >> >> >   SEA >> > LAND >> > BOAT >> >> > i.e., it doesn't start from the beginning of the row though it was >> > defined to start from there..Also, I was thinking that it is a problem >> > with the way the word is put in the list from which the text object >> > call it-but apparently there is nothing wrong...Also, while all other >> > words remain stable when the experiment goes from one slide to the >> > other, the only moving word is off course the upper one (i.e., sea). >> >> > Thanks in advance, >> > Gilis > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Wed Oct 12 11:06:45 2011 From: giladsabo at gmail.com (gilis) Date: Wed, 12 Oct 2011 04:06:45 -0700 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Absolutely sure...No minor possible mistake that wasn't check....It's a bag in eprime itself, I will try Meltem solution. On Oct 11, 3:58 pm, ben robinson wrote: > are you sure you don't have an extra space hidden at the beginning of > that one flanker containing "SEA"... > " [flanker]" instead of > "[flanker]" > ? > > > > > > > > On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > > Yes I do..as for the x alignment and etc, it's just like that of the > > other words..there should be no reason why they appear so different in > > position on the display.. > > > On Oct 10, 10:43 pm, Evelina Tapia wrote: > >> Gilis, > > >> under textbox properties you can specify text color, textbox > >> background color etc. You can also specify alignment there as well so > >> try that for you right display. Also, do you have separate text boxes > >> for each word or for each flanker object? There could be potential > >> word wrapping differences between the two items as well. > > >> Evelina > > >> On Oct 10, 11:46 am, gilis wrote: > > >> > Hi, > > >> > I have two flankers in my experiment display, one is on the right and > >> > the other is on the left. Each flanker is made of 3 words (separate > >> > text object for each), one above the other. The problem I get is that > >> > while on the left everything seems OK and balanced, on the right, the > >> > upper word is pushed from the beginning of the display, so while the > >> > flanker on the left side look like that: > > >> > FOOD > >> > WATER > >> > FORK > > >> > the flanker on the right side look like that: > > >> >   SEA > >> > LAND > >> > BOAT > > >> > i.e., it doesn't start from the beginning of the row though it was > >> > defined to start from there..Also, I was thinking that it is a problem > >> > with the way the word is put in the list from which the text object > >> > call it-but apparently there is nothing wrong...Also, while all other > >> > words remain stable when the experiment goes from one slide to the > >> > other, the only moving word is off course the upper one (i.e., sea). > > >> > Thanks in advance, > >> > Gilis > > > -- > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Wed Oct 12 11:12:05 2011 From: giladsabo at gmail.com (gilis) Date: Wed, 12 Oct 2011 04:12:05 -0700 Subject: Eprime problem with labels Message-ID: Hi, The experiment session procedure includes first a label, then the experiment procedure itself (in a list object) and then after an inline in which I defined a as integer and after each time the experiment run its value is updated by +1 and as long as a value is less than 40 it should return to the label. When I tried to generate the experiment it become evident that ePrime has some kind of problem with the label itself. It write me that it encountered end of line while it expect statement...What could it be? Thanks Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 11:33:40 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 04:33:40 -0700 Subject: Eprime problem with labels In-Reply-To: Message-ID: Hi Gilis, This experiment of yours is becoming quite an ordeal, isn't it?? Check the script window, a blue square will indicate the exact line of script that is the problem (the error message also tells you at which line and position number the error is encountered). It sounds as if you have a line that has not been finished properly. Likely an IF THEN . Check whether you have all your IF THEN statements that need so, closed with an END IF line. END IF is needed for every IF THEN statement that does not have the IF and THEN on the same line, but on multiple lines, for instance to allow multiple "consequences of IF". For example: IF THEN ^ END IF is not needed IF THEN END IF best Liw On Oct 12, 1:12 pm, gilis wrote: > Hi, > > The experiment session procedure includes first a label, then the > experiment procedure itself (in a list object) and then after an > inline in which I defined a as integer and after each time the > experiment run its value is updated by +1 and as long as a value is > less than 40 it should return to the label. When I tried to generate > the experiment it become evident that ePrime has some kind of problem > with the label itself. It write me that it encountered end of line > while it expect statement...What could it be? > > Thanks > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 11:34:41 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 04:34:41 -0700 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Are the flankerwords taken from a list?? Are you as sure that there are no unwanted spaces in that list? On Oct 12, 1:06 pm, gilis wrote: > Absolutely sure...No minor possible mistake that wasn't check....It's > a bag in eprime itself, I will try Meltem solution. > > On Oct 11, 3:58 pm, ben robinson wrote: > > > > > > > > > are you sure you don't have an extra space hidden at the beginning of > > that one flanker containing "SEA"... > > " [flanker]" instead of > > "[flanker]" > > ? > > > On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > > > Yes I do..as for the x alignment and etc, it's just like that of the > > > other words..there should be no reason why they appear so different in > > > position on the display.. > > > > On Oct 10, 10:43 pm, Evelina Tapia wrote: > > >> Gilis, > > > >> under textbox properties you can specify text color, textbox > > >> background color etc. You can also specify alignment there as well so > > >> try that for you right display. Also, do you have separate text boxes > > >> for each word or for each flanker object? There could be potential > > >> word wrapping differences between the two items as well. > > > >> Evelina > > > >> On Oct 10, 11:46 am, gilis wrote: > > > >> > Hi, > > > >> > I have two flankers in my experiment display, one is on the right and > > >> > the other is on the left. Each flanker is made of 3 words (separate > > >> > text object for each), one above the other. The problem I get is that > > >> > while on the left everything seems OK and balanced, on the right, the > > >> > upper word is pushed from the beginning of the display, so while the > > >> > flanker on the left side look like that: > > > >> > FOOD > > >> > WATER > > >> > FORK > > > >> > the flanker on the right side look like that: > > > >> >   SEA > > >> > LAND > > >> > BOAT > > > >> > i.e., it doesn't start from the beginning of the row though it was > > >> > defined to start from there..Also, I was thinking that it is a problem > > >> > with the way the word is put in the list from which the text object > > >> > call it-but apparently there is nothing wrong...Also, while all other > > >> > words remain stable when the experiment goes from one slide to the > > >> > other, the only moving word is off course the upper one (i.e., sea). > > > >> > Thanks in advance, > > >> > Gilis > > > > -- > > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From wafa.elise at gmail.com Wed Oct 12 11:58:27 2011 From: wafa.elise at gmail.com (welise) Date: Wed, 12 Oct 2011 04:58:27 -0700 Subject: Conditional cumulative feedback, help. Message-ID: Hi Everybody, I am hoping somebody can help me with presenting participants with cumulative RESP feedback that is conditional on two separate responses: In my experiment, participants are first presented with a slide and asked to press "1" if they will answer "A" or "2" if they will answer "B". I then have 6 slide states, randomly presented, with 4 different stimuli presented on each (I used 6 slides in order to change the positioning of each of the stimuli). If the participant chose "1" previously, they are expected to choose the corresponding stimuli accordingly (by pressing 1, 2, 3, or 4 to indicate the correct position of the stimuli). and if they chose "2" they are expected to choose the stimuli that corresponds to that choice. If they chose "1" and then chose the correct corresponding stimuli, they get no feedback. If they chose "1" and gave incorrect stimuli response then they get Incorrect feedback with a message that says "-5 points". If they chose "2" and made the correct stimuli response- I have feedback randomly set to give them one of two messages, and one of those messages includes "-10 points" while the other includes "+10 points" So far, so good. I have experiment designed up until this point. The problem arises when I try to present cumulative score feedback: Within each trial, after the participant receives the first set of feedback and the corresponding points lost of gained, I need to present them with feedback that tells them their new total score. so total score - 5 points, or total score + 10 points, or total score -10 points, and this needs to carry over from one trial to the net. I have no idea how to do this. I started off by trying to do this with a text slide but I can't figure out how to do an inline text that can make all this happen. I am in over my head and any help would be so much appreciated. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 12:06:03 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 05:06:03 -0700 Subject: Randomized maths questions In-Reply-To: <4e9347ed.82862b0a.399f.ffffc266SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hello Neil, what code do you use to consolidate the answer when the participant presses the right button? If you use the terminate code (i.e. IF textslide.resp = "2" THEN shmats.terminate or something the like) then that migth be the problem. Try ending the loop with another label at the end of your procedure (call it endlabel) and the code IF textslide.resp = "2" THEN goto endlabel best, liw On Oct 10, 9:30 pm, David McFarlane wrote: > Stock reminder:  1) I do not work for PST.  2) PST's trained staff > takes any and all questions athttp://support.pstnet.com/e%2Dprime/support/login.asp, and they > strive to respond to all requests in 24-48 hours -- this is pretty > much their substitute for proper documentation, so make full use of > it.  3) If you do get an answer from PST Web Support, please extend > the courtesy of posting their reply back here for the sake of others. > > That said, here is my take... > > Seems like a pretty good description of your task structure, but I do > not follow your description of the symptoms.  It seems like you are saying: > > 1) The program successfully runs one and only one trial from the List. > > 2) The program fails to run any trial, as it stops after the stimulus display. > > #1 is ambiguous (it could mean that the program runs one trial and > exits, or that it runs 10 trials of the same stimulus), and #1 and #2 > are mutually incompatible.  Please clarify, and then maybe we can > think of something. > > -- David McFarlane, Professional Faultfinder > > At 10/10/2011 11:05 AM Monday, you wrote: > > > > > > > > >I'm trying to present participants with 10 maths questions. I've > >created a list ("shmaths"), with the procedure "shmathsproc". > > >In the list I've two attributes, one called "shquestion" and one > >called "shcorrect". I then created 10 rows with a different maths > >question/answer in each. > > >In the procedure, I have an inline, a label, a text display and > >another inline. This is because I want participants to answer by > >clicking the left mouse button as many times as they think the answer > >is (e.g. 7 times if the answer is 7), and then right-click to submit > >the answer. These are basically what the inlines and label are doing, > >and they work fine. > > >In the text I have "[shquestion] = [shmaths]", shmaths being the name > >of the participant's response as they click. > > >For some reason it is only showing 1 maths question and not going down > >the whole list. I have tried changing the selection sequence but > >seemingly to no avail. Also for some reason, the program stops running > >after this text box. > > >Any help will be greatly appreciated! > > >Cheers. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Wed Oct 12 12:10:13 2011 From: pquain at une.edu.au (Peter Quain) Date: Wed, 12 Oct 2011 23:10:13 +1100 Subject: Conditional cumulative feedback, help. In-Reply-To: <041f8258-54db-42ce-ad9a-3ad4f4086b3f@n15g2000vbn.googlegro ups.com> Message-ID: perhaps something like this (rough example) would work? ... go to User Tab in script, and create global variables - Dim intTotalScore, intTrialScore as integer ... then in inline at start of TrialProcedure - intTrialScore = 0 ... and in an inline wherever in the trial procedure you assign the values that your feedback presents (or at the end of the trial sequence) - intTtrialScore = [whatever the score is for that trial] intTotalScore = intTotalScore + intTtrialScore At 10:58 PM 12/10/2011, you wrote: >Hi Everybody, > >I am hoping somebody can help me with presenting participants with >cumulative RESP feedback that is conditional on two separate >responses: > >In my experiment, participants are first presented with a slide and >asked to press "1" if they will answer "A" or "2" if they will answer >"B". I then have 6 slide states, randomly presented, with 4 different >stimuli presented on each (I used 6 slides in order to change the >positioning of each of the stimuli). If the participant chose "1" >previously, they are expected to choose the corresponding stimuli >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct >position of the stimuli). and if they chose "2" they are expected to >choose the stimuli that corresponds to that choice. If they chose "1" >and then chose the correct corresponding stimuli, they get no >feedback. If they chose "1" and gave incorrect stimuli response then >they get Incorrect feedback with a message that says "-5 points". If >they chose "2" and made the correct stimuli response- I have feedback >randomly set to give them one of two messages, and one of those >messages includes "-10 points" while the other includes "+10 points" > >So far, so good. I have experiment designed up until this point. The >problem arises when I try to present cumulative score feedback: > >Within each trial, after the participant receives the first set of >feedback and the corresponding points lost of gained, I need to >present them with feedback that tells them their new total score. so >total score - 5 points, or total score + 10 points, or total score -10 >points, and this needs to carry over from one trial to the net. I >have no idea how to do this. I started off by trying to do this with a >text slide but I can't figure out how to do an inline text that can >make all this happen. I am in over my head and any help would be so >much appreciated. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 12:20:07 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 05:20:07 -0700 Subject: Conditional cumulative feedback, help. In-Reply-To: <041f8258-54db-42ce-ad9a-3ad4f4086b3f@n15g2000vbn.googlegroups.com> Message-ID: Hi! What you need is a global variable, a varibale that is indeed capable to carry over information from one trial to the next. First go to the user tab in the script window (bottom left corner script window). Here you declare a variable called... scorecounter: Dim scorecounter as integer Now... at the end of every trial the scorecounter need to be updated by adding the new trial score and since a variable is not automatically logged into the datafile, I always transfer the value of scorecounter onto an attribute (that is logged): Scorecounter = scorecounter + c.getattrib ("trialscore") (<- of course that 'trialscore' should be replaced by c.setattrib "scorecount", scorecounter you can then use the attribute scorecount on your display to provide feedback by showing a text like: "your new score is [scorecount]" The above is a very minimalistic explanation... I believe the e-primer has some more info on global variables, it can be downloaded at step.psy.cmu.edu/materials/EPrimer.pdf Best liw On Oct 12, 1:58 pm, welise wrote: > Hi Everybody, > > I am hoping somebody can help me with presenting participants with > cumulative RESP feedback that is conditional on two separate > responses: > > In my experiment, participants are first presented with a slide and > asked to press "1" if they will answer "A" or  "2" if they will answer > "B". I then have 6 slide states, randomly presented, with 4 different > stimuli presented on each (I used 6 slides in order to change the > positioning of each of the stimuli). If the participant chose "1" > previously, they are expected to choose the corresponding stimuli > accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > position of the stimuli). and if they chose "2" they are expected to > choose the stimuli that corresponds to that choice. If they chose "1" > and then chose the correct corresponding stimuli, they get no > feedback. If they chose "1" and gave incorrect stimuli response then > they get  Incorrect feedback with a message that says "-5 points". If > they chose "2" and made the correct stimuli response- I have feedback > randomly set to give them one of two messages, and one of those > messages includes "-10 points" while the other includes "+10 points" > > So far, so good. I have experiment designed up until this point. The > problem arises when I try to present cumulative score feedback: > > Within each trial, after the participant receives the first set of > feedback and the corresponding points lost of gained, I need to > present them with feedback that tells them their new total score. so > total score - 5 points, or total score + 10 points, or total score -10 > points, and this needs to carry over from one trial to the net.  I > have no idea how to do this. I started off by trying to do this with a > text slide but I can't figure out how to do an inline text that can > make all this happen. I am in over my head and any help would be so > much appreciated. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 12:22:34 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 05:22:34 -0700 Subject: Conditional cumulative feedback, help. In-Reply-To: <201110121210.p9CCAHqW019111@mail9.tpg.com.au> Message-ID: Hi! What you need is a global variable, a varibale that is indeed capable to carry over information from one trial to the next. First go to the user tab in the script window (bottom left corner script window). Here you declare a variable called... scorecounter: Dim scorecounter as integer Now... at the end of every trial the scorecounter need to be updated by adding the new trial score and since a variable is not automatically logged into the datafile, I always transfer the value of scorecounter onto an attribute (that is logged): Scorecounter = scorecounter + c.getattrib ("trialscore") (<- or where ever you stored the score right now) c.setattrib "scorecount", scorecounter you can then use the attribute scorecount on your display to provide feedback by showing a text like: "your new score is [scorecount]" The above is a very minimalistic explanation... I believe the e-primer has some more info on global variables, it can be downloaded at step.psy.cmu.edu/materials/EPrimer.pdf Best liw On Oct 12, 2:10 pm, Peter Quain wrote: > perhaps something like this (rough example) would work? ... go to > User Tab in script, and create global variables - > > Dim intTotalScore, intTrialScore  as integer > > ... then in inline at start of TrialProcedure - > > intTrialScore = 0 > > ... and in an inline wherever in the trial procedure you assign the > values that your feedback presents (or at the end of the trial sequence) - > > intTtrialScore = [whatever the score is for that trial] > intTotalScore = intTotalScore + intTtrialScore > > At 10:58 PM 12/10/2011, you wrote: > > > > > > > > >Hi Everybody, > > >I am hoping somebody can help me with presenting participants with > >cumulative RESP feedback that is conditional on two separate > >responses: > > >In my experiment, participants are first presented with a slide and > >asked to press "1" if they will answer "A" or  "2" if they will answer > >"B". I then have 6 slide states, randomly presented, with 4 different > >stimuli presented on each (I used 6 slides in order to change the > >positioning of each of the stimuli). If the participant chose "1" > >previously, they are expected to choose the corresponding stimuli > >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > >position of the stimuli). and if they chose "2" they are expected to > >choose the stimuli that corresponds to that choice. If they chose "1" > >and then chose the correct corresponding stimuli, they get no > >feedback. If they chose "1" and gave incorrect stimuli response then > >they get  Incorrect feedback with a message that says "-5 points". If > >they chose "2" and made the correct stimuli response- I have feedback > >randomly set to give them one of two messages, and one of those > >messages includes "-10 points" while the other includes "+10 points" > > >So far, so good. I have experiment designed up until this point. The > >problem arises when I try to present cumulative score feedback: > > >Within each trial, after the participant receives the first set of > >feedback and the corresponding points lost of gained, I need to > >present them with feedback that tells them their new total score. so > >total score - 5 points, or total score + 10 points, or total score -10 > >points, and this needs to carry over from one trial to the net.  I > >have no idea how to do this. I started off by trying to do this with a > >text slide but I can't figure out how to do an inline text that can > >make all this happen. I am in over my head and any help would be so > >much appreciated. > > >-- > >You received this message because you are subscribed to the Google > >Groups "E-Prime" group. > >To post to this group, send email to e-prime at googlegroups.com. > >To unsubscribe from this group, send email to > >e-prime+unsubscribe at googlegroups.com. > >For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From wafa.elise at gmail.com Wed Oct 12 12:30:25 2011 From: wafa.elise at gmail.com (welise) Date: Wed, 12 Oct 2011 05:30:25 -0700 Subject: Conditional cumulative feedback, help. In-Reply-To: <6034a747-57d8-4fff-8253-960fcc82cead@u6g2000vbo.googlegroups.com> Message-ID: Thank you, both, so much. I also appreciate the quick replies. I will try these options. On Oct 12, 8:22 am, liwenna wrote: > Hi! > > What you need is a global variable, a varibale that is indeed capable > to carry over information from one trial to the next. > First go to the user tab in the script window (bottom left corner > script window). > Here you declare a variable called... scorecounter: > > Dim scorecounter as integer > > Now... at the end of every trial the scorecounter need to be updated > by adding the new trial score and since a variable is not > automatically logged into the datafile, I always transfer the value of > scorecounter onto an attribute (that is logged): > > Scorecounter = scorecounter + c.getattrib ("trialscore")  (<- or where > ever you stored the score right now) > c.setattrib "scorecount", scorecounter > > you can then use the attribute scorecount on your display to provide > feedback by showing a text like: "your new score is [scorecount]" > > The above is a very minimalistic explanation... I believe the e-primer > has some more info on global variables, it can be downloaded at > step.psy.cmu.edu/materials/EPrimer.pdf > > Best > > liw > > On Oct 12, 2:10 pm, Peter Quain wrote: > > > > > > > > > perhaps something like this (rough example) would work? ... go to > > User Tab in script, and create global variables - > > > Dim intTotalScore, intTrialScore  as integer > > > ... then in inline at start of TrialProcedure - > > > intTrialScore = 0 > > > ... and in an inline wherever in the trial procedure you assign the > > values that your feedback presents (or at the end of the trial sequence) - > > > intTtrialScore = [whatever the score is for that trial] > > intTotalScore = intTotalScore + intTtrialScore > > > At 10:58 PM 12/10/2011, you wrote: > > > >Hi Everybody, > > > >I am hoping somebody can help me with presenting participants with > > >cumulative RESP feedback that is conditional on two separate > > >responses: > > > >In my experiment, participants are first presented with a slide and > > >asked to press "1" if they will answer "A" or  "2" if they will answer > > >"B". I then have 6 slide states, randomly presented, with 4 different > > >stimuli presented on each (I used 6 slides in order to change the > > >positioning of each of the stimuli). If the participant chose "1" > > >previously, they are expected to choose the corresponding stimuli > > >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > > >position of the stimuli). and if they chose "2" they are expected to > > >choose the stimuli that corresponds to that choice. If they chose "1" > > >and then chose the correct corresponding stimuli, they get no > > >feedback. If they chose "1" and gave incorrect stimuli response then > > >they get  Incorrect feedback with a message that says "-5 points". If > > >they chose "2" and made the correct stimuli response- I have feedback > > >randomly set to give them one of two messages, and one of those > > >messages includes "-10 points" while the other includes "+10 points" > > > >So far, so good. I have experiment designed up until this point. The > > >problem arises when I try to present cumulative score feedback: > > > >Within each trial, after the participant receives the first set of > > >feedback and the corresponding points lost of gained, I need to > > >present them with feedback that tells them their new total score. so > > >total score - 5 points, or total score + 10 points, or total score -10 > > >points, and this needs to carry over from one trial to the net.  I > > >have no idea how to do this. I started off by trying to do this with a > > >text slide but I can't figure out how to do an inline text that can > > >make all this happen. I am in over my head and any help would be so > > >much appreciated. > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Wed Oct 12 13:09:54 2011 From: giladsabo at gmail.com (gilis) Date: Wed, 12 Oct 2011 06:09:54 -0700 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Yes they are taken from a list, and no-no unwanted spaces, and I checked it more than once.... On Oct 12, 1:34 pm, liwenna wrote: > Are the flankerwords taken from a list?? Are you as sure that there > are no unwanted spaces in that list? > > On Oct 12, 1:06 pm, gilis wrote: > > > > > > > > > Absolutely sure...No minor possible mistake that wasn't check....It's > > a bag in eprime itself, I will try Meltem solution. > > > On Oct 11, 3:58 pm, ben robinson wrote: > > > > are you sure you don't have an extra space hidden at the beginning of > > > that one flanker containing "SEA"... > > > " [flanker]" instead of > > > "[flanker]" > > > ? > > > > On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > > > > Yes I do..as for the x alignment and etc, it's just like that of the > > > > other words..there should be no reason why they appear so different in > > > > position on the display.. > > > > > On Oct 10, 10:43 pm, Evelina Tapia wrote: > > > >> Gilis, > > > > >> under textbox properties you can specify text color, textbox > > > >> background color etc. You can also specify alignment there as well so > > > >> try that for you right display. Also, do you have separate text boxes > > > >> for each word or for each flanker object? There could be potential > > > >> word wrapping differences between the two items as well. > > > > >> Evelina > > > > >> On Oct 10, 11:46 am, gilis wrote: > > > > >> > Hi, > > > > >> > I have two flankers in my experiment display, one is on the right and > > > >> > the other is on the left. Each flanker is made of 3 words (separate > > > >> > text object for each), one above the other. The problem I get is that > > > >> > while on the left everything seems OK and balanced, on the right, the > > > >> > upper word is pushed from the beginning of the display, so while the > > > >> > flanker on the left side look like that: > > > > >> > FOOD > > > >> > WATER > > > >> > FORK > > > > >> > the flanker on the right side look like that: > > > > >> >   SEA > > > >> > LAND > > > >> > BOAT > > > > >> > i.e., it doesn't start from the beginning of the row though it was > > > >> > defined to start from there..Also, I was thinking that it is a problem > > > >> > with the way the word is put in the list from which the text object > > > >> > call it-but apparently there is nothing wrong...Also, while all other > > > >> > words remain stable when the experiment goes from one slide to the > > > >> > other, the only moving word is off course the upper one (i.e., sea). > > > > >> > Thanks in advance, > > > >> > Gilis > > > > > -- > > > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > > > To post to this group, send email to e-prime at googlegroups.com. > > > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 13:17:04 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 06:17:04 -0700 Subject: Moving flanker to the right position In-Reply-To: <22b42ee2-5671-4114-b374-25cbb4e59cfe@q13g2000vby.googlegroups.com> Message-ID: mmm not sure if/why this should solve it, but sometimes simplification is bliss... did you try using one textobject with three lines instead of three separate textobjects on each side. [flanker1] [flanker2] [flanker3] ^ that in one textbox, rather than three. Also: press {return}, {space} then again {return} in order to create an empty line between two lines, if needed. On Oct 12, 3:09 pm, gilis wrote: > Yes they are taken from a list, and no-no unwanted spaces, and I > checked it more than once.... > > On Oct 12, 1:34 pm, liwenna wrote: > > > > > > > > > Are the flankerwords taken from a list?? Are you as sure that there > > are no unwanted spaces in that list? > > > On Oct 12, 1:06 pm, gilis wrote: > > > > Absolutely sure...No minor possible mistake that wasn't check....It's > > > a bag in eprime itself, I will try Meltem solution. > > > > On Oct 11, 3:58 pm, ben robinson wrote: > > > > > are you sure you don't have an extra space hidden at the beginning of > > > > that one flanker containing "SEA"... > > > > " [flanker]" instead of > > > > "[flanker]" > > > > ? > > > > > On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > > > > > Yes I do..as for the x alignment and etc, it's just like that of the > > > > > other words..there should be no reason why they appear so different in > > > > > position on the display.. > > > > > > On Oct 10, 10:43 pm, Evelina Tapia wrote: > > > > >> Gilis, > > > > > >> under textbox properties you can specify text color, textbox > > > > >> background color etc. You can also specify alignment there as well so > > > > >> try that for you right display. Also, do you have separate text boxes > > > > >> for each word or for each flanker object? There could be potential > > > > >> word wrapping differences between the two items as well. > > > > > >> Evelina > > > > > >> On Oct 10, 11:46 am, gilis wrote: > > > > > >> > Hi, > > > > > >> > I have two flankers in my experiment display, one is on the right and > > > > >> > the other is on the left. Each flanker is made of 3 words (separate > > > > >> > text object for each), one above the other. The problem I get is that > > > > >> > while on the left everything seems OK and balanced, on the right, the > > > > >> > upper word is pushed from the beginning of the display, so while the > > > > >> > flanker on the left side look like that: > > > > > >> > FOOD > > > > >> > WATER > > > > >> > FORK > > > > > >> > the flanker on the right side look like that: > > > > > >> >   SEA > > > > >> > LAND > > > > >> > BOAT > > > > > >> > i.e., it doesn't start from the beginning of the row though it was > > > > >> > defined to start from there..Also, I was thinking that it is a problem > > > > >> > with the way the word is put in the list from which the text object > > > > >> > call it-but apparently there is nothing wrong...Also, while all other > > > > >> > words remain stable when the experiment goes from one slide to the > > > > >> > other, the only moving word is off course the upper one (i.e., sea). > > > > > >> > Thanks in advance, > > > > >> > Gilis > > > > > > -- > > > > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > > > > To post to this group, send email to e-prime at googlegroups.com. > > > > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > > > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 13:18:26 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 06:18:26 -0700 Subject: Conditional cumulative feedback, help. In-Reply-To: <6554ef08-607b-4ff4-94ed-d286233e19ae@l6g2000vbd.googlegroups.com> Message-ID: good luck. Do note that Peter and I basically proposed the same solution, it's not really two different options. On Oct 12, 2:30 pm, welise wrote: > Thank you, both, so much.  I also appreciate the quick replies. I will > try these options. > > On Oct 12, 8:22 am, liwenna wrote: > > > > > > > > > Hi! > > > What you need is a global variable, a varibale that is indeed capable > > to carry over information from one trial to the next. > > First go to the user tab in the script window (bottom left corner > > script window). > > Here you declare a variable called... scorecounter: > > > Dim scorecounter as integer > > > Now... at the end of every trial the scorecounter need to be updated > > by adding the new trial score and since a variable is not > > automatically logged into the datafile, I always transfer the value of > > scorecounter onto an attribute (that is logged): > > > Scorecounter = scorecounter + c.getattrib ("trialscore")  (<- or where > > ever you stored the score right now) > > c.setattrib "scorecount", scorecounter > > > you can then use the attribute scorecount on your display to provide > > feedback by showing a text like: "your new score is [scorecount]" > > > The above is a very minimalistic explanation... I believe the e-primer > > has some more info on global variables, it can be downloaded at > > step.psy.cmu.edu/materials/EPrimer.pdf > > > Best > > > liw > > > On Oct 12, 2:10 pm, Peter Quain wrote: > > > > perhaps something like this (rough example) would work? ... go to > > > User Tab in script, and create global variables - > > > > Dim intTotalScore, intTrialScore  as integer > > > > ... then in inline at start of TrialProcedure - > > > > intTrialScore = 0 > > > > ... and in an inline wherever in the trial procedure you assign the > > > values that your feedback presents (or at the end of the trial sequence) - > > > > intTtrialScore = [whatever the score is for that trial] > > > intTotalScore = intTotalScore + intTtrialScore > > > > At 10:58 PM 12/10/2011, you wrote: > > > > >Hi Everybody, > > > > >I am hoping somebody can help me with presenting participants with > > > >cumulative RESP feedback that is conditional on two separate > > > >responses: > > > > >In my experiment, participants are first presented with a slide and > > > >asked to press "1" if they will answer "A" or  "2" if they will answer > > > >"B". I then have 6 slide states, randomly presented, with 4 different > > > >stimuli presented on each (I used 6 slides in order to change the > > > >positioning of each of the stimuli). If the participant chose "1" > > > >previously, they are expected to choose the corresponding stimuli > > > >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > > > >position of the stimuli). and if they chose "2" they are expected to > > > >choose the stimuli that corresponds to that choice. If they chose "1" > > > >and then chose the correct corresponding stimuli, they get no > > > >feedback. If they chose "1" and gave incorrect stimuli response then > > > >they get  Incorrect feedback with a message that says "-5 points". If > > > >they chose "2" and made the correct stimuli response- I have feedback > > > >randomly set to give them one of two messages, and one of those > > > >messages includes "-10 points" while the other includes "+10 points" > > > > >So far, so good. I have experiment designed up until this point. The > > > >problem arises when I try to present cumulative score feedback: > > > > >Within each trial, after the participant receives the first set of > > > >feedback and the corresponding points lost of gained, I need to > > > >present them with feedback that tells them their new total score. so > > > >total score - 5 points, or total score + 10 points, or total score -10 > > > >points, and this needs to carry over from one trial to the net.  I > > > >have no idea how to do this. I started off by trying to do this with a > > > >text slide but I can't figure out how to do an inline text that can > > > >make all this happen. I am in over my head and any help would be so > > > >much appreciated. > > > > >-- > > > >You received this message because you are subscribed to the Google > > > >Groups "E-Prime" group. > > > >To post to this group, send email to e-prime at googlegroups.com. > > > >To unsubscribe from this group, send email to > > > >e-prime+unsubscribe at googlegroups.com. > > > >For more options, visit this group at > > > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Wed Oct 12 13:48:22 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Wed, 12 Oct 2011 09:48:22 -0400 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Gilis, On Wed Oct 12, 1:06 pm, gilis wrote: > Absolutely sure...No minor possible mistake that wasn't check....It's > a bag [sic] in eprime itself. In 1978, fresh out of University, I started on a programming project at Ford Motor Company in Dearborn, Michigan (USA). Time and again my programs failed, and I convinced myself that I had uncovered a true bug in the underlying system. Time and again the lead engineer told me, "There is nothing wrong with the system, go back and find the mistake in your program." And in every case he was right -- the fault always lay in my program, never in the system. And ever since then I have become very circumspect about concluding that bugs lie in the system instead of in my source code. Not long ago on this very Group, someone (was it you?) led us all on a merry chase puzzling out why their stimulus files would not load. It turned out that the files were stored remotely on a networked computer somewhere, and the subject-running station had trouble accessing that remote drive. Sheesh! So Gilis, it comes down to this -- Although E-Prime does indeed have several identifiable bugs, in this case you have almost certainly *not* found a bug in E-Prime. I.e., your problem lies somewhere in the design of your program, or in your understanding of how E-Prime works, *not* in E-Prime itself. The problem almost certainly lies someplace where you are not looking for it, probably because you are too close to the problem and keep seeing only what you want to see. Because of this, you also cannot tell us the missing detail that would help us solve this for you -- if you could see enough to state that detail, then you would have already solved this yourself. Hence, you must think "outside the box" here. And when you do find the mistake, you will slap yourself in the forehead and say, "Why didn't I see that sooner?" -- David McFarlane, Professional Faultfinder "A poor workman blames his tools." On Wed 12 Oct 2011 liwenna wrote: > mmm not sure if/why this should solve it, but sometimes simplification > is bliss... > > did you try using one textobject with three lines instead of three > separate textobjects on each side. > > [flanker1] > [flanker2] > [flanker3] > > ^ that in one textbox, rather than three. Also: press {return}, > {space} then again {return} in order to create an empty line between > two lines, if needed. > > On Oct 12, 3:09 pm, gilis wrote: >> Yes they are taken from a list, and no-no unwanted spaces, and I >> checked it more than once.... >> >> On Oct 12, 1:34 pm, liwenna wrote: >> >> >> >> >> >> >> >>> Are the flankerwords taken from a list?? Are you as sure that there >>> are no unwanted spaces in that list? >>> On Oct 12, 1:06 pm, gilis wrote: >>>> Absolutely sure...No minor possible mistake that wasn't check....It's >>>> a bag in eprime itself, I will try Meltem solution. >>>> On Oct 11, 3:58 pm, ben robinson wrote: >>>>> are you sure you don't have an extra space hidden at the beginning of >>>>> that one flanker containing "SEA"... >>>>> " [flanker]" instead of >>>>> "[flanker]" >>>>> ? >>>>> On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: >>>>>> Yes I do..as for the x alignment and etc, it's just like that of the >>>>>> other words..there should be no reason why they appear so different in >>>>>> position on the display.. >>>>>> On Oct 10, 10:43 pm, Evelina Tapia wrote: >>>>>>> Gilis, >>>>>>> under textbox properties you can specify text color, textbox >>>>>>> background color etc. You can also specify alignment there as well so >>>>>>> try that for you right display. Also, do you have separate text boxes >>>>>>> for each word or for each flanker object? There could be potential >>>>>>> word wrapping differences between the two items as well. >>>>>>> Evelina >>>>>>> On Oct 10, 11:46 am, gilis wrote: >>>>>>>> Hi, >>>>>>>> I have two flankers in my experiment display, one is on the right and >>>>>>>> the other is on the left. Each flanker is made of 3 words (separate >>>>>>>> text object for each), one above the other. The problem I get is that >>>>>>>> while on the left everything seems OK and balanced, on the right, the >>>>>>>> upper word is pushed from the beginning of the display, so while the >>>>>>>> flanker on the left side look like that: >>>>>>>> FOOD >>>>>>>> WATER >>>>>>>> FORK >>>>>>>> the flanker on the right side look like that: >>>>>>>> SEA >>>>>>>> LAND >>>>>>>> BOAT >>>>>>>> i.e., it doesn't start from the beginning of the row though it was >>>>>>>> defined to start from there..Also, I was thinking that it is a problem >>>>>>>> with the way the word is put in the list from which the text object >>>>>>>> call it-but apparently there is nothing wrong...Also, while all other >>>>>>>> words remain stable when the experiment goes from one slide to the >>>>>>>> other, the only moving word is off course the upper one (i.e., sea). >>>>>>>> Thanks in advance, >>>>>>>> Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Wed Oct 12 15:02:50 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Wed, 12 Oct 2011 11:02:50 -0400 Subject: Moving flanker to the right position In-Reply-To: <4E959AA6.6060504@msu.edu> Message-ID: I cannot stop myself to say that I totally agree with David. It is always the bug in the script somewhere. Mostly, I have the tendency to short-cut things. But I am wrong. I am successful in the situations that I start from the scratch and program it over again. I would suggest you the same. I know we all fight against time but having a solid task is better than anything in this regard. Good luck with your problem Gilis and must tell that I am not crazy about Visual basic either. Contradictory to the name it is tricky. Meltem On Wed, Oct 12, 2011 at 9:48 AM, David McFarlane wrote: > Gilis, > > On Wed Oct 12, 1:06 pm, gilis wrote: > > Absolutely sure...No minor possible mistake that wasn't check....It's > > a bag [sic] in eprime itself. > > In 1978, fresh out of University, I started on a programming project at > Ford Motor Company in Dearborn, Michigan (USA). Time and again my programs > failed, and I convinced myself that I had uncovered a true bug in the > underlying system. Time and again the lead engineer told me, "There is > nothing wrong with the system, go back and find the mistake in your > program." And in every case he was right -- the fault always lay in my > program, never in the system. And ever since then I have become very > circumspect about concluding that bugs lie in the system instead of in my > source code. > > Not long ago on this very Group, someone (was it you?) led us all on a > merry chase puzzling out why their stimulus files would not load. It turned > out that the files were stored remotely on a networked computer somewhere, > and the subject-running station had trouble accessing that remote drive. > Sheesh! > > So Gilis, it comes down to this -- Although E-Prime does indeed have > several identifiable bugs, in this case you have almost certainly *not* > found a bug in E-Prime. I.e., your problem lies somewhere in the design of > your program, or in your understanding of how E-Prime works, *not* in > E-Prime itself. The problem almost certainly lies someplace where you are > not looking for it, probably because you are too close to the problem and > keep seeing only what you want to see. Because of this, you also cannot > tell us the missing detail that would help us solve this for you -- if you > could see enough to state that detail, then you would have already solved > this yourself. > > Hence, you must think "outside the box" here. And when you do find the > mistake, you will slap yourself in the forehead and say, "Why didn't I see > that sooner?" > > -- David McFarlane, Professional Faultfinder > "A poor workman blames his tools." > > > On Wed 12 Oct 2011 liwenna wrote: > >> mmm not sure if/why this should solve it, but sometimes simplification >> is bliss... >> >> did you try using one textobject with three lines instead of three >> separate textobjects on each side. >> >> [flanker1] >> [flanker2] >> [flanker3] >> >> ^ that in one textbox, rather than three. Also: press {return}, >> {space} then again {return} in order to create an empty line between >> two lines, if needed. >> >> On Oct 12, 3:09 pm, gilis wrote: >> >>> Yes they are taken from a list, and no-no unwanted spaces, and I >>> checked it more than once.... >>> >>> On Oct 12, 1:34 pm, liwenna wrote: >>> >>> >>> >>> >>> >>> >>> >>> Are the flankerwords taken from a list?? Are you as sure that there >>>> are no unwanted spaces in that list? >>>> On Oct 12, 1:06 pm, gilis wrote: >>>> >>>>> Absolutely sure...No minor possible mistake that wasn't check....It's >>>>> a bag in eprime itself, I will try Meltem solution. >>>>> On Oct 11, 3:58 pm, ben robinson wrote: >>>>> >>>>>> are you sure you don't have an extra space hidden at the beginning of >>>>>> that one flanker containing "SEA"... >>>>>> " [flanker]" instead of >>>>>> "[flanker]" >>>>>> ? >>>>>> On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: >>>>>> >>>>>>> Yes I do..as for the x alignment and etc, it's just like that of the >>>>>>> other words..there should be no reason why they appear so different >>>>>>> in >>>>>>> position on the display.. >>>>>>> On Oct 10, 10:43 pm, Evelina Tapia wrote: >>>>>>> >>>>>>>> Gilis, >>>>>>>> under textbox properties you can specify text color, textbox >>>>>>>> background color etc. You can also specify alignment there as well >>>>>>>> so >>>>>>>> try that for you right display. Also, do you have separate text >>>>>>>> boxes >>>>>>>> for each word or for each flanker object? There could be potential >>>>>>>> word wrapping differences between the two items as well. >>>>>>>> Evelina >>>>>>>> On Oct 10, 11:46 am, gilis wrote: >>>>>>>> >>>>>>>>> Hi, >>>>>>>>> I have two flankers in my experiment display, one is on the right >>>>>>>>> and >>>>>>>>> the other is on the left. Each flanker is made of 3 words (separate >>>>>>>>> text object for each), one above the other. The problem I get is >>>>>>>>> that >>>>>>>>> while on the left everything seems OK and balanced, on the right, >>>>>>>>> the >>>>>>>>> upper word is pushed from the beginning of the display, so while >>>>>>>>> the >>>>>>>>> flanker on the left side look like that: >>>>>>>>> FOOD >>>>>>>>> WATER >>>>>>>>> FORK >>>>>>>>> the flanker on the right side look like that: >>>>>>>>> SEA >>>>>>>>> LAND >>>>>>>>> BOAT >>>>>>>>> i.e., it doesn't start from the beginning of the row though it was >>>>>>>>> defined to start from there..Also, I was thinking that it is a >>>>>>>>> problem >>>>>>>>> with the way the word is put in the list from which the text object >>>>>>>>> call it-but apparently there is nothing wrong...Also, while all >>>>>>>>> other >>>>>>>>> words remain stable when the experiment goes from one slide to the >>>>>>>>> other, the only moving word is off course the upper one (i.e., >>>>>>>>> sea). >>>>>>>>> Thanks in advance, >>>>>>>>> Gilis >>>>>>>>> >>>>>>>> > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Michiel.Spape at nottingham.ac.uk Wed Oct 12 15:13:10 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Wed, 12 Oct 2011 16:13:10 +0100 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Also agreeing with David's sentiment, I would add here that 1) I had tremendous difficulty understanding what exactly the problem was, hence, no help from me. If it takes me more time to understand than solve, I run out of patience. 2) Thinking out of the box, while good advice, is rather difficult to do. A bit like forcing free will. So, more suggestions: starting from scratch; starting with another project, returning after your mind has settled. 3) if you must, you could always break down the string (in a char array, though that's hardly necessary here) and placing each letter manually on the screen, thus aligning whichever way you like. Lots of work, but not too difficult. Not to mention, follow David's advice that is normally added to each and every post: chat with PST! Best, Mich Michiel Spapé Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Meltem BALLAN Sent: 12 October 2011 16:03 To: e-prime at googlegroups.com Subject: Re: Moving flanker to the right position I cannot stop myself to say that I totally agree with David. It is always the bug in the script somewhere. Mostly, I have the tendency to short-cut things. But I am wrong. I am successful in the situations that I start from the scratch and program it over again. I would suggest you the same. I know we all fight against time but having a solid task is better than anything in this regard. Good luck with your problem Gilis and must tell that I am not crazy about Visual basic either. Contradictory to the name it is tricky. Meltem On Wed, Oct 12, 2011 at 9:48 AM, David McFarlane > wrote: Gilis, On Wed Oct 12, 1:06 pm, gilis > wrote: > Absolutely sure...No minor possible mistake that wasn't check....It's > a bag [sic] in eprime itself. In 1978, fresh out of University, I started on a programming project at Ford Motor Company in Dearborn, Michigan (USA). Time and again my programs failed, and I convinced myself that I had uncovered a true bug in the underlying system. Time and again the lead engineer told me, "There is nothing wrong with the system, go back and find the mistake in your program." And in every case he was right -- the fault always lay in my program, never in the system. And ever since then I have become very circumspect about concluding that bugs lie in the system instead of in my source code. Not long ago on this very Group, someone (was it you?) led us all on a merry chase puzzling out why their stimulus files would not load. It turned out that the files were stored remotely on a networked computer somewhere, and the subject-running station had trouble accessing that remote drive. Sheesh! So Gilis, it comes down to this -- Although E-Prime does indeed have several identifiable bugs, in this case you have almost certainly *not* found a bug in E-Prime. I.e., your problem lies somewhere in the design of your program, or in your understanding of how E-Prime works, *not* in E-Prime itself. The problem almost certainly lies someplace where you are not looking for it, probably because you are too close to the problem and keep seeing only what you want to see. Because of this, you also cannot tell us the missing detail that would help us solve this for you -- if you could see enough to state that detail, then you would have already solved this yourself. Hence, you must think "outside the box" here. And when you do find the mistake, you will slap yourself in the forehead and say, "Why didn't I see that sooner?" -- David McFarlane, Professional Faultfinder "A poor workman blames his tools." On Wed 12 Oct 2011 liwenna wrote: mmm not sure if/why this should solve it, but sometimes simplification is bliss... did you try using one textobject with three lines instead of three separate textobjects on each side. [flanker1] [flanker2] [flanker3] ^ that in one textbox, rather than three. Also: press {return}, {space} then again {return} in order to create an empty line between two lines, if needed. On Oct 12, 3:09 pm, gilis > wrote: Yes they are taken from a list, and no-no unwanted spaces, and I checked it more than once.... On Oct 12, 1:34 pm, liwenna > wrote: Are the flankerwords taken from a list?? Are you as sure that there are no unwanted spaces in that list? On Oct 12, 1:06 pm, gilis > wrote: Absolutely sure...No minor possible mistake that wasn't check....It's a bag in eprime itself, I will try Meltem solution. On Oct 11, 3:58 pm, ben robinson > wrote: are you sure you don't have an extra space hidden at the beginning of that one flanker containing "SEA"... " [flanker]" instead of "[flanker]" ? On Tue, Oct 11, 2011 at 4:29 AM, gilis > wrote: Yes I do..as for the x alignment and etc, it's just like that of the other words..there should be no reason why they appear so different in position on the display.. On Oct 10, 10:43 pm, Evelina Tapia > wrote: Gilis, under textbox properties you can specify text color, textbox background color etc. You can also specify alignment there as well so try that for you right display. Also, do you have separate text boxes for each word or for each flanker object? There could be potential word wrapping differences between the two items as well. Evelina On Oct 10, 11:46 am, gilis > wrote: Hi, I have two flankers in my experiment display, one is on the right and the other is on the left. Each flanker is made of 3 words (separate text object for each), one above the other. The problem I get is that while on the left everything seems OK and balanced, on the right, the upper word is pushed from the beginning of the display, so while the flanker on the left side look like that: FOOD WATER FORK the flanker on the right side look like that: SEA LAND BOAT i.e., it doesn't start from the beginning of the row though it was defined to start from there..Also, I was thinking that it is a problem with the way the word is put in the list from which the text object call it-but apparently there is nothing wrong...Also, while all other words remain stable when the experiment goes from one slide to the other, the only moving word is off course the upper one (i.e., sea). Thanks in advance, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Wed Oct 12 16:41:42 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Wed, 12 Oct 2011 12:41:42 -0400 Subject: incrementing the trial count Message-ID: Hi All, I have a question that I cannot figure out by myself. I am trying to add a counter in my task which is counting the total number of trials during the task. I defined a global variable as totalTrial (in User Script) and assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My dillemma is how I can integrate TrialCount with my Stimulus count. I tried as Trial=TrialCount but it did not work. Any idea? Thanks Meltem -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Michiel.Spape at nottingham.ac.uk Wed Oct 12 16:49:53 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Wed, 12 Oct 2011 17:49:53 +0100 Subject: incrementing the trial count In-Reply-To: Message-ID: Hi Meltem, Not to sound sour, but these are quite elementary questions for which I think you might really want to do a quick walk through some tutorials. For example, our very own http://step.psy.cmu.edu/materials/EPrimer.pdf has an almost exact answer to what you seem to be looking for, in one of the two last chapters. Also, the quick start is a very useful way to begin. I think, with some additional information (such as what do you mean by Stimulus count?), anybody could answer your question, but you'd really be doing yourself a favour to take two days to learn how to use the software. Sorry to be not of more use. Best, Mich Michiel Spapé Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Meltem BALLAN Sent: 12 October 2011 17:42 To: e-prime at googlegroups.com Subject: incrementing the trial count Hi All, I have a question that I cannot figure out by myself. I am trying to add a counter in my task which is counting the total number of trials during the task. I defined a global variable as totalTrial (in User Script) and assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My dillemma is how I can integrate TrialCount with my Stimulus count. I tried as Trial=TrialCount but it did not work. Any idea? Thanks Meltem -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Wed Oct 12 17:02:31 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Wed, 12 Oct 2011 13:02:31 -0400 Subject: incrementing the trial count In-Reply-To: <09DAEA8BC192C94EB62C8E71FC35A5D930D2BE74A6@EXCHANGE3.ad.nottingham.ac.uk> Message-ID: Mich, No worries. I was looking to find a source. I used the explanation in the E-PRIME documentation but did not work. I read the E-PRIMER. It must be something I am missing within the lines. Thanks Meltem On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < Michiel.Spape at nottingham.ac.uk> wrote: > Hi Meltem,**** > > Not to sound sour, but these are quite elementary questions for which I > think you might really want to do a quick walk through some tutorials. For > example, our very own http://step.psy.cmu.edu/materials/EPrimer.pdf has an > almost exact answer to what you seem to be looking for, in one of the two > last chapters. Also, the quick start is a very useful way to begin. I think, > with some additional information (such as what do you mean by Stimulus > count?), anybody could answer your question, but you’d really be doing > yourself a favour to take two days to learn how to use the software. Sorry > to be not of more use.**** > > ** ** > > Best,**** > > Mich**** > > ** ** > > *Michiel Spapé* > > *Research Fellow* > > *Perception & Action group* > > *University of Nottingham* > > *School of Psychology* > > *www.cognitology.eu*** > > ** ** > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > Behalf Of *Meltem BALLAN > *Sent:* 12 October 2011 17:42 > *To:* e-prime at googlegroups.com > *Subject:* incrementing the trial count**** > > ** ** > > Hi All, > I have a question that I cannot figure out by myself. I am trying to add a > counter in my task which is counting the total number of trials during the > task. I defined a global variable as totalTrial (in User Script) and > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > dillemma is how I can integrate TrialCount with my Stimulus count. > I tried as Trial=TrialCount but it did not work. > Any idea? > Thanks > Meltem > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160**** > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kominiarczukj at gmail.com Wed Oct 12 17:28:29 2011 From: kominiarczukj at gmail.com (fledgeling e-Prime mastah) Date: Wed, 12 Oct 2011 10:28:29 -0700 Subject: a bunch of questions: sample/cycle count, accessing different context attributes Message-ID: Hello experienced e-Prime hackers! I have a few questions that don't seem to be explained in the e-Prime documentation, but I see that experienced e-Primer's should know how to tacke :). BTW: I am using e-Prime 1, not 2, but I don't know if there is much difference between the two. The first problem is, how do I display the sample / cycle number? I found here that you use c.getAttribute("List.sample") and the same with cycle. However, how do you find the total number of samples and cycles? I found a workaround for number of samples, i.e. you get List.Order.Count, but this is a hack because apparently certain orderings alter this number. However, the cycle count is still a mystery for me.. any thoughts? My bigger worry is something else, though. I have a TrialList with an appropriate Proc performing my main experiment, and iterating over a number of samples. In each sample the subject makes decisions that will affect his earnings, which are basically taken as earnings from a single, randomly chosen, round (or sample, in e-Prime terms). Let's say my structure looks more or less like this: MainProc: ... TrialList TrialProc: .. main experiment .. endProc DeterminePay (inline script) endProc So, in the TrialProc the experiment goes on and sets an attribute in TrialList (i.e., one of the columns) to AmountWon. Then, in the script DeterminePay, which is one level above the experimental procedure, I need to read in that amount and display a message saying how much the subject earned. I tried accessing things through TrialList.getAttribute(payingRound, "AmountWon"), but turns out that this only allows one to access the ORIGINAL values in the TrialList table, not the values set by the subject during the experiment. Hence, this approach is lost, at least I can't figure out how to make it work. My second approach has the following structure: MainProc: ... DetermineRound (inline script) TrialList TrialProc: .. main experiment .. SetWinningAmount (inline script) endProc DeterminePay (inline script) endProc where I set the (random) paying round and a global attribute WinningAmount through c.SetAttrib("WinningAmount"), -1 in the DetermineRound script, then if the script SetWinningAmount detects that we reached that round (i.e., c.GetAttrib("TrialList.sample") = payingRound) it sets WinningAmount to the value won in that sample. Finally, the script DeterminePay tries to read in the WinningAmount attribute and display it. The problem with this second solution is that the attribute WinningAmount is visible in both MainProc and TrialProc, but changes made within TrialProc are not visible in MainProc; in C++ terms, it seems as if the context is passed to TrialProc by value and not by reference :). I have seen many times that people were somehow able to determine subject pay at the end, so does anyone know a workaround for this? If everything fails, I can read this manually at the end of the experiment from the data recorded by e-Prime, but being able to code it up would be much preferred :). Thanks in advance! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Wed Oct 12 21:55:25 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Wed, 12 Oct 2011 17:55:25 -0400 Subject: a bunch of questions: sample/cycle count, accessing different context attributes In-Reply-To: Message-ID: Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... I see two questions here: (1) How to find the sum of the Weights in a List (which I gather is what you mean by "total number of samples and cycles")? (2) How to pass a value to Procedures at the same or higher working/logging levels? And the answers remain the same for EP1 or EP2. So... (1) Well, based on both my own experience and information from Brandon Cernicky (one of the architects of E-Prime), E-Prime has no facility for providing the sum of Weights of a List; in fact, EP does not even have a facility for reading any of the individual Weight values. So you can only resort to a workaround, as outlined by Brandon himself long ago at http://support.pstnet.com/forum/Topic1244-5-1.aspx : create an attribute in the List to mirror the Weight values. Your program could then sum those mirrored values, etc. Of course, that puts the burden upon you to make sure that whenever you change a weight value you also change the mirrored value in the List. So let me here propose an alternative workaround that occurred to me just now. Although EP does not have a List.GetWeight method, it does have a List.SetWeight method. So just reverse Brandon's advice: Add a normal List attribute where you enter the intended weights, and then use inline code to set the List Weights using the "mirrored" values at runtime. That should be interesting. (2) This question comes up again and again and again (even this week already), and the answer is simple: You need to study Chapter 4 ("Using E-Basic") of the User's Guide that came with E-Prime, and use a global variable. But I will elaborate a bit this time. First, this has nothing to do with whether or not the "context is passed to TrialProc by value and not by reference". Rather, you simply misunderstand the concept of the EP "Context", not surprising because PST does such a poor job of explaining this (although you could start again with Chapter 4 of the User's Guide). Contrary to common impressions, Context attributes are *not* variables. Only variables are variables. And attributes propogate only downward to lower branches off of the same Procedure, they do *not* propogate upward or "sideways", not even to the next iteration of the same Procedure (because to do the next iteration you must first exit the Procedure, pop up a level, and then push down into the Procedure again). So that is the long way of saying that you want to use a global variable for this, not an attribute, and you will learn about that in Chapter 4. Attributes have an entirely different purpose, although I do not know how to describe that at the moment so this will have to suffice. -- David McFarlane, Professional Faultfinder "For a successful technology, reality must take precedence over public relations, for nature cannot be fooled." (Richard Feynman, Nobel prize-winning physicist) At 10/12/2011 01:28 PM Wednesday, you wrote: >Hello experienced e-Prime hackers! > >I have a few questions that don't seem to be explained in the e-Prime >documentation, but I see that experienced e-Primer's should know how >to tacke :). BTW: I am using e-Prime 1, not 2, but I don't know if >there is much difference between the two. > >The first problem is, how do I display the sample / cycle number? I >found here that you use c.getAttribute("List.sample") and the same >with cycle. However, how do you find the total number of samples and >cycles? I found a workaround for number of samples, i.e. you get >List.Order.Count, but this is a hack because apparently certain >orderings alter this number. However, the cycle count is still a >mystery for me.. any thoughts? > >My bigger worry is something else, though. I have a TrialList with an >appropriate Proc performing my main experiment, and iterating over a >number of samples. In each sample the subject makes decisions that >will affect his earnings, which are basically taken as earnings from a >single, randomly chosen, round (or sample, in e-Prime terms). > >Let's say my structure looks more or less like this: > > > MainProc: > ... > TrialList > TrialProc: > .. main experiment .. > endProc > DeterminePay (inline script) > endProc > >So, in the TrialProc the experiment goes on and sets an attribute in >TrialList (i.e., one of the columns) to AmountWon. Then, in the script >DeterminePay, which is one level above the experimental procedure, I >need to read in that amount and display a message saying how much the >subject earned. > >I tried accessing things through TrialList.getAttribute(payingRound, >"AmountWon"), but turns out that this only allows one to access the >ORIGINAL values in the TrialList table, not the values set by the >subject during the experiment. Hence, this approach is lost, at least >I can't figure out how to make it work. > >My second approach has the following structure: > > MainProc: > ... > DetermineRound (inline script) > TrialList > TrialProc: > .. main experiment .. > SetWinningAmount (inline script) > endProc > DeterminePay (inline script) > endProc > >where I set the (random) paying round and a global attribute >WinningAmount through > >c.SetAttrib("WinningAmount"), -1 > >in the DetermineRound script, then if the script SetWinningAmount >detects that we reached that round (i.e., >c.GetAttrib("TrialList.sample") = payingRound) it sets WinningAmount >to the value won in that sample. Finally, the script DeterminePay >tries to read in the WinningAmount attribute and display it. > >The problem with this second solution is that the attribute >WinningAmount is visible in both MainProc and TrialProc, but changes >made within TrialProc are not visible in MainProc; in C++ terms, it >seems as if the context is passed to TrialProc by value and not by >reference :). > >I have seen many times that people were somehow able to determine >subject pay at the end, so does anyone know a workaround for this? If >everything fails, I can read this manually at the end of the >experiment from the data recorded by e-Prime, but being able to code >it up would be much preferred :). > >Thanks in advance! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From kominiarczukj at gmail.com Wed Oct 12 23:42:54 2011 From: kominiarczukj at gmail.com (fledgeling e-Prime mastah) Date: Wed, 12 Oct 2011 16:42:54 -0700 Subject: a bunch of questions: sample/cycle count, accessing different context attributes In-Reply-To: <4e960cd5.04cc2a0a.2b68.2577SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Great answer. I must say, I am learning EP1 from the documentation and some tutorials, like the E-Primer and such, which unfortunately don't talk much about the coding part of it. Also, since coding ability is a bit limited (like that 'you can't find the sum of weights' part), it seems to me that one is doomed if he wants to do something that E- Prime architects did not think of, even though most people would be happy with it. It's a generic problem, so do not think of me dissing E- Prime, it does have great features. I found on PST website that you can access .sample and .cycle attributes, but they never mentioned the totals of those; in fact, they hardcoded theirs in the examples provided on the website, which is very peculiar. Is there any reason why one would not allow you to check the bounds of an array? Regarding attributes, I simply don't understand why you would have attributes.. Chapter 4 doesn't touch that very much, apart from saying that attributes are logged by default, which is what I want. From the code that I studied while writing my own thing, they seemed like global variables and were used like normal variables, actually. Similarly, accessing the elements of a List is done through attributes, so that compounds the issue for me, suggesting that somehow e-Prime's work horse is attributes, not variables. Anyways, your solution is very good and I will put it to use as soon as I can. Thanks a bunch! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Thu Oct 13 11:02:19 2011 From: liwenna at gmail.com (liwenna) Date: Thu, 13 Oct 2011 04:02:19 -0700 Subject: incrementing the trial count In-Reply-To: Message-ID: Not sure if this is what you're looking for (if I remember correctly the e-primer is quite clear on this one) but you did add an inline that increments the value assigned to totaltrial on each trial? I.e. an inline on the proc reading: totaltrial = totaltrial +1 (followed by another line to log it onto the attribute trialcount: c. SetAttrib "TrialCount", totalTrial) ? On Oct 12, 7:02 pm, Meltem BALLAN wrote: > Mich, > No worries. I was looking to find a source. I used the explanation in the > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > something I am missing within the lines. > Thanks > Meltem > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > Hi Meltem,**** > > > Not to sound sour, but these are quite elementary questions for which I > > think you might really want to do a quick walk through some tutorials. For > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhas an > > almost exact answer to what you seem to be looking for, in one of the two > > last chapters. Also, the quick start is a very useful way to begin. I think, > > with some additional information (such as what do you mean by Stimulus > > count?), anybody could answer your question, but you’d really be doing > > yourself a favour to take two days to learn how to use the software. Sorry > > to be not of more use.**** > > > ** ** > > > Best,**** > > > Mich**** > > > ** ** > > > *Michiel Spapé* > > > *Research Fellow* > > > *Perception & Action group* > > > *University of Nottingham* > > > *School of Psychology* > > > *www.cognitology.eu*** > > > ** ** > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > Behalf Of *Meltem BALLAN > > *Sent:* 12 October 2011 17:42 > > *To:* e-prime at googlegroups.com > > *Subject:* incrementing the trial count**** > > > ** ** > > > Hi All, > > I have a question that I cannot figure out by myself. I am trying to add a > > counter in my task which is counting the total number of trials during the > > task. I defined a global variable as totalTrial (in User Script) and > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > dillemma is how I can integrate TrialCount with my Stimulus count. > > I tried as Trial=TrialCount but it did not work. > > Any idea? > > Thanks > > Meltem > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160**** > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en.**** > > >  This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 13 11:26:43 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 13 Oct 2011 12:26:43 +0100 Subject: a bunch of questions: sample/cycle count, accessing different context attributes In-Reply-To: <67721504-7c8e-4ca9-823d-bfceac2068dd@r30g2000prd.googlegroups.com> Message-ID: Hi, Just to say, sorry about the lack of coding bits and bops in the E-Primer, we'd been working to extend that, but with a target audience of students without *any* coding experience, and a limited amount of time, there's so much you can do. Secondly, I find that, unlike you, the "coding ability" in E-Prime is not limited at all, unless you want to do awfully cool stuff, like accessing databases, 3d graphics, whathaveyou, which is generally outside the scope of psychologists. If you want, and I had such a phase as well, it's really rather easy to do your whole experiment in inline, using canvas, loops, etc. At that point, it becomes quite clear why one would use attributes at all: it provides a lot of clarity, not only for yourself, but also for others. Tons of code with somewhere saying somewhere something along the lines of Fixationduration = currentTrial[reorder[trialnum]].FixDur is mindboggling. 2p. Best, M (and I think you're welcome to 'disrespect' the mighty e(vil)-prime all you want!) Michiel Spapé Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of fledgeling e-Prime mastah Sent: 13 October 2011 00:43 To: E-Prime Subject: Re: a bunch of questions: sample/cycle count, accessing different context attributes Great answer. I must say, I am learning EP1 from the documentation and some tutorials, like the E-Primer and such, which unfortunately don't talk much about the coding part of it. Also, since coding ability is a bit limited (like that 'you can't find the sum of weights' part), it seems to me that one is doomed if he wants to do something that E- Prime architects did not think of, even though most people would be happy with it. It's a generic problem, so do not think of me dissing E- Prime, it does have great features. I found on PST website that you can access .sample and .cycle attributes, but they never mentioned the totals of those; in fact, they hardcoded theirs in the examples provided on the website, which is very peculiar. Is there any reason why one would not allow you to check the bounds of an array? Regarding attributes, I simply don't understand why you would have attributes.. Chapter 4 doesn't touch that very much, apart from saying that attributes are logged by default, which is what I want. From the code that I studied while writing my own thing, they seemed like global variables and were used like normal variables, actually. Similarly, accessing the elements of a List is done through attributes, so that compounds the issue for me, suggesting that somehow e-Prime's work horse is attributes, not variables. Anyways, your solution is very good and I will put it to use as soon as I can. Thanks a bunch! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 13 11:33:36 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 13 Oct 2011 12:33:36 +0100 Subject: incrementing the trial count In-Reply-To: Message-ID: That's quite correct, but I'd suggest to Meltem: don't read it, _do_ it. Also important: start simple, see if you can first get that trial counter to work, then build it in your real experiment. Because, really, I'm not so convinced about the e-primer, but what it says in the e-prime documentation, it really should work (apart from a few isolated cases, but surely not in trial counters). Also, it sounds a bit weird perhaps, but I generally hit that F7 every 3 minutes if I'm coding something. Still no clear and helpful suggestions, sorry about that. Cheers, Mich Michiel Spapé Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of liwenna Sent: 13 October 2011 12:02 To: E-Prime Subject: Re: incrementing the trial count Not sure if this is what you're looking for (if I remember correctly the e-primer is quite clear on this one) but you did add an inline that increments the value assigned to totaltrial on each trial? I.e. an inline on the proc reading: totaltrial = totaltrial +1 (followed by another line to log it onto the attribute trialcount: c. SetAttrib "TrialCount", totalTrial) ? On Oct 12, 7:02 pm, Meltem BALLAN wrote: > Mich, > No worries. I was looking to find a source. I used the explanation in the > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > something I am missing within the lines. > Thanks > Meltem > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > Hi Meltem,**** > > > Not to sound sour, but these are quite elementary questions for which I > > think you might really want to do a quick walk through some tutorials. For > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhas an > > almost exact answer to what you seem to be looking for, in one of the two > > last chapters. Also, the quick start is a very useful way to begin. I think, > > with some additional information (such as what do you mean by Stimulus > > count?), anybody could answer your question, but you'd really be doing > > yourself a favour to take two days to learn how to use the software. Sorry > > to be not of more use.**** > > > ** ** > > > Best,**** > > > Mich**** > > > ** ** > > > *Michiel Spapé* > > > *Research Fellow* > > > *Perception & Action group* > > > *University of Nottingham* > > > *School of Psychology* > > > *www.cognitology.eu*** > > > ** ** > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > Behalf Of *Meltem BALLAN > > *Sent:* 12 October 2011 17:42 > > *To:* e-prime at googlegroups.com > > *Subject:* incrementing the trial count**** > > > ** ** > > > Hi All, > > I have a question that I cannot figure out by myself. I am trying to add a > > counter in my task which is counting the total number of trials during the > > task. I defined a global variable as totalTrial (in User Script) and > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > dillemma is how I can integrate TrialCount with my Stimulus count. > > I tried as Trial=TrialCount but it did not work. > > Any idea? > > Thanks > > Meltem > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160**** > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en.**** > > >  This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Thu Oct 13 12:00:41 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Thu, 13 Oct 2011 08:00:41 -0400 Subject: incrementing the trial count In-Reply-To: Message-ID: Hi All, Thank you.I did all you described but somehow I could not call from another function. I am running infant subjects. So it is not a case for me to complete the task 60% of the time. Therefore, I wanna count the max number of trials. If it is more than 60% I wanna increase the subject number. I followed instructions but increment did not work. Thanks Meltem On Oct 13, 2011 7:02 AM, "liwenna" wrote: > Not sure if this is what you're looking for (if I remember correctly > the e-primer is quite clear on this one) but you did add an inline > that increments the value assigned to totaltrial on each trial? I.e. > an inline on the proc reading: > > totaltrial = totaltrial +1 > (followed by another line to log it onto the attribute trialcount: c. > SetAttrib "TrialCount", totalTrial) ? > > On Oct 12, 7:02 pm, Meltem BALLAN wrote: > > Mich, > > No worries. I was looking to find a source. I used the explanation in the > > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > > something I am missing within the lines. > > Thanks > > Meltem > > > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > > Hi Meltem,**** > > > > > Not to sound sour, but these are quite elementary questions for which I > > > think you might really want to do a quick walk through some tutorials. > For > > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhasan > > > almost exact answer to what you seem to be looking for, in one of the > two > > > last chapters. Also, the quick start is a very useful way to begin. I > think, > > > with some additional information (such as what do you mean by Stimulus > > > count?), anybody could answer your question, but you’d really be doing > > > yourself a favour to take two days to learn how to use the software. > Sorry > > > to be not of more use.**** > > > > > ** ** > > > > > Best,**** > > > > > Mich**** > > > > > ** ** > > > > > *Michiel Spapé* > > > > > *Research Fellow* > > > > > *Perception & Action group* > > > > > *University of Nottingham* > > > > > *School of Psychology* > > > > > *www.cognitology.eu*** > > > > > ** ** > > > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > > Behalf Of *Meltem BALLAN > > > *Sent:* 12 October 2011 17:42 > > > *To:* e-prime at googlegroups.com > > > *Subject:* incrementing the trial count**** > > > > > ** ** > > > > > Hi All, > > > I have a question that I cannot figure out by myself. I am trying to > add a > > > counter in my task which is counting the total number of trials during > the > > > task. I defined a global variable as totalTrial (in User Script) and > > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > > dillemma is how I can integrate TrialCount with my Stimulus count. > > > I tried as Trial=TrialCount but it did not work. > > > Any idea? > > > Thanks > > > Meltem > > > > > -- > > > Meltem Ballan, PhD > > > Department of Psychiatry, CB# 7160 > > > University of North Carolina School of Medicine > > > 7023 Neurosciences Hospital > > > Chapel Hill, NC 27599-7160**** > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to > > > e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en.**** > > > > > This message and any attachment are intended solely for the addressee > and > > > may contain confidential information. If you have received this message > in > > > error, please send it back to me, and immediately delete it. Please do > not > > > use, copy or disclose the information contained in this message or in > any > > > attachment. Any views or opinions expressed by the author of this email > do > > > not necessarily reflect the views of the University of Nottingham. > > > > > This message has been checked for viruses but the contents of an > attachment > > > may still contain software viruses which could damage your computer > system: > > > you are advised to perform your own checks. Email communications with > the > > > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to > > > e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. > > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From liwenna at gmail.com Thu Oct 13 12:31:33 2011 From: liwenna at gmail.com (liwenna) Date: Thu, 13 Oct 2011 05:31:33 -0700 Subject: incrementing the trial count In-Reply-To: Message-ID: Sorry to say but your last post is kinda puzzling... do you intend to merely count the number of trials? (as I though you wanted) Or do you want to increase the number of trials based on some criteria? Surely you don't want to change the subject number, like you wrote above?? On Oct 13, 2:00 pm, Meltem BALLAN wrote: > Hi All, > Thank you.I did all you described but somehow I could not call from another > function. I am running infant subjects. So it is not a case for me to > complete the task 60% of the time. Therefore, I wanna count the max number > of trials. If it is more than 60%  I wanna increase the subject number. I > followed instructions but  increment did not work. > Thanks > Meltem > On Oct 13, 2011 7:02 AM, "liwenna" wrote: > > > > > > > > > Not sure if this is what you're looking for (if I remember correctly > > the e-primer is quite clear on this one) but you did add an inline > > that increments the value assigned to totaltrial on each trial? I.e. > > an inline on the proc reading: > > > totaltrial = totaltrial +1 > > (followed by another line to log it onto the attribute trialcount: c. > > SetAttrib "TrialCount", totalTrial)  ? > > > On Oct 12, 7:02 pm, Meltem BALLAN wrote: > > > Mich, > > > No worries. I was looking to find a source. I used the explanation in the > > > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > > > something I am missing within the lines. > > > Thanks > > > Meltem > > > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > > > Hi Meltem,**** > > > > > Not to sound sour, but these are quite elementary questions for which I > > > > think you might really want to do a quick walk through some tutorials. > > For > > > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhasan > > > > almost exact answer to what you seem to be looking for, in one of the > > two > > > > last chapters. Also, the quick start is a very useful way to begin. I > > think, > > > > with some additional information (such as what do you mean by Stimulus > > > > count?), anybody could answer your question, but you’d really be doing > > > > yourself a favour to take two days to learn how to use the software. > > Sorry > > > > to be not of more use.**** > > > > > ** ** > > > > > Best,**** > > > > > Mich**** > > > > > ** ** > > > > > *Michiel Spapé* > > > > > *Research Fellow* > > > > > *Perception & Action group* > > > > > *University of Nottingham* > > > > > *School of Psychology* > > > > > *www.cognitology.eu*** > > > > > ** ** > > > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > > > Behalf Of *Meltem BALLAN > > > > *Sent:* 12 October 2011 17:42 > > > > *To:* e-prime at googlegroups.com > > > > *Subject:* incrementing the trial count**** > > > > > ** ** > > > > > Hi All, > > > > I have a question that I cannot figure out by myself. I am trying to > > add a > > > > counter in my task which is counting the total number of trials during > > the > > > > task. I defined a global variable as totalTrial (in User Script) and > > > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > > > dillemma is how I can integrate TrialCount with my Stimulus count. > > > > I tried as Trial=TrialCount but it did not work. > > > > Any idea? > > > > Thanks > > > > Meltem > > > > > -- > > > > Meltem Ballan, PhD > > > > Department of Psychiatry, CB# 7160 > > > > University of North Carolina School of Medicine > > > > 7023 Neurosciences Hospital > > > > Chapel Hill, NC 27599-7160**** > > > > > -- > > > > You received this message because you are subscribed to the Google > > Groups > > > > "E-Prime" group. > > > > To post to this group, send email to e-prime at googlegroups.com. > > > > To unsubscribe from this group, send email to > > > > e-prime+unsubscribe at googlegroups.com. > > > > For more options, visit this group at > > > >http://groups.google.com/group/e-prime?hl=en.**** > > > > >  This message and any attachment are intended solely for the addressee > > and > > > > may contain confidential information. If you have received this message > > in > > > > error, please send it back to me, and immediately delete it. Please do > > not > > > > use, copy or disclose the information contained in this message or in > > any > > > > attachment. Any views or opinions expressed by the author of this email > > do > > > > not necessarily reflect the views of the University of Nottingham. > > > > > This message has been checked for viruses but the contents of an > > attachment > > > > may still contain software viruses which could damage your computer > > system: > > > > you are advised to perform your own checks. Email communications with > > the > > > > University of Nottingham may be monitored as permitted by UK > > legislation. > > > > > -- > > > > You received this message because you are subscribed to the Google > > Groups > > > > "E-Prime" group. > > > > To post to this group, send email to e-prime at googlegroups.com. > > > > To unsubscribe from this group, send email to > > > > e-prime+unsubscribe at googlegroups.com. > > > > For more options, visit this group at > > > >http://groups.google.com/group/e-prime?hl=en. > > > > -- > > > Meltem Ballan, PhD > > > Department of Psychiatry, CB# 7160 > > > University of North Carolina School of Medicine > > > 7023 Neurosciences Hospital > > > Chapel Hill, NC 27599-7160 > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 13 12:41:49 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 13 Oct 2011 13:41:49 +0100 Subject: incrementing the trial count In-Reply-To: Message-ID: Hi, So, do I understand correct you want to use the same e-prime data-file for more than one subject? Any good reason for that? Normally, I'd say, just rerun the experiment, type in subject number, and from the .edat files, filter out those subjects who have few data (in E-DataAid, count number of trials, write those subjects with few trials on a piece of paper, and filter those out from analysis) - I think that's pretty much what we always do (whether subjects be infants or psych students). What you seem to want to do is rather counterintuitive: if a participant completes 60% of trials, at which point you want to increase subject number, why should this participant suddenly have 2 subject numbers (so that subject with the next subject number, which is actually the same subject, now has 40% of trials at most)? Why not just create a filter? You can even do that online: Create user script (global, alt+5, user tab) variables: Dim TotalTrials as integer Dim PropDone as double Initialise variable (only TotalTrials, because initialising in basic also sets to 0), by adding to beginning of experiment (upmost procedure, before everything else): TotalTrials = 300 'or whatever is the maximum Check to see, during each trial, how far the subject is, by adding to end of trial procedure: PropDone = PropDone + 1 / TotalTrials c.SetAttrib "PropDone", PropDone voila, and by finding the maximum of propdone, per subject, you can find how many trials the participant has done. You can take it from there, coding the participant number, for whatever reason, in there as well (I'd just suggest not to use the subject number attribute) and increasing it if need be. If, on the other hand, you're doing some infinite loop thing, where you want ALL infants in 1 edat, perhaps it might be a good idea to build in a sneaky key. So that, if you have some textdisplay, and you press X (for next), a variable is updated: User script: Dim CurrentParticipant as Integer Initialise: currentparticipant = c.GetAttrib ("Subject") After critical stimulus: If myCriticalStimulus.RESP = X then currentparticipant = currentparticipant + 1 c.SetAttrib "CurrentParticipant", currentparticipant Something like that. Hope that helps. Best, Mich Michiel Spapé Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Meltem BALLAN Sent: 13 October 2011 13:01 To: e-prime at googlegroups.com Subject: Re: incrementing the trial count Hi All, Thank you.I did all you described but somehow I could not call from another function. I am running infant subjects. So it is not a case for me to complete the task 60% of the time. Therefore, I wanna count the max number of trials. If it is more than 60% I wanna increase the subject number. I followed instructions but increment did not work. Thanks Meltem On Oct 13, 2011 7:02 AM, "liwenna" > wrote: Not sure if this is what you're looking for (if I remember correctly the e-primer is quite clear on this one) but you did add an inline that increments the value assigned to totaltrial on each trial? I.e. an inline on the proc reading: totaltrial = totaltrial +1 (followed by another line to log it onto the attribute trialcount: c. SetAttrib "TrialCount", totalTrial) ? On Oct 12, 7:02 pm, Meltem BALLAN > wrote: > Mich, > No worries. I was looking to find a source. I used the explanation in the > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > something I am missing within the lines. > Thanks > Meltem > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > Hi Meltem,**** > > > Not to sound sour, but these are quite elementary questions for which I > > think you might really want to do a quick walk through some tutorials. For > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhas an > > almost exact answer to what you seem to be looking for, in one of the two > > last chapters. Also, the quick start is a very useful way to begin. I think, > > with some additional information (such as what do you mean by Stimulus > > count?), anybody could answer your question, but you'd really be doing > > yourself a favour to take two days to learn how to use the software. Sorry > > to be not of more use.**** > > > ** ** > > > Best,**** > > > Mich**** > > > ** ** > > > *Michiel Spapé* > > > *Research Fellow* > > > *Perception & Action group* > > > *University of Nottingham* > > > *School of Psychology* > > > *www.cognitology.eu*** > > > ** ** > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > Behalf Of *Meltem BALLAN > > *Sent:* 12 October 2011 17:42 > > *To:* e-prime at googlegroups.com > > *Subject:* incrementing the trial count**** > > > ** ** > > > Hi All, > > I have a question that I cannot figure out by myself. I am trying to add a > > counter in my task which is counting the total number of trials during the > > task. I defined a global variable as totalTrial (in User Script) and > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > dillemma is how I can integrate TrialCount with my Stimulus count. > > I tried as Trial=TrialCount but it did not work. > > Any idea? > > Thanks > > Meltem > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160**** > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en.**** > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Thu Oct 13 17:08:24 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Thu, 13 Oct 2011 13:08:24 -0400 Subject: incrementing the trial count In-Reply-To: <09DAEA8BC192C94EB62C8E71FC35A5D930D2BE75CC@EXCHANGE3.ad.nottingham.ac.uk> Message-ID: Hi Mich, Thank you very much for the trick. You are right that I can enter the subject numbers manually during the experiment (which I have been doing until now). When I am not here it gets mixed up as the person running the subject does not know how to change the subject name or too busy to remember it. Therefore, I decided to minimize the user role in the task. Although the task is a passive task I am using the Edat files to cross check the system delays, netstation triggers, etc. I feel like it is essential to cross check everything. I also like the idea decreasing the number of counter (in e-PRIMER). I was thinking to implement that logic. I know the total number of trials I wanna run . Therefore, I can define a counter and count down. We will all see how it goes down to the road as I have a lot of challenges which will be discussed in the forum. Cheers, Meltem On Thu, Oct 13, 2011 at 8:41 AM, Michiel Spape < Michiel.Spape at nottingham.ac.uk> wrote: > Hi,**** > > So, do I understand correct you want to use the same e-prime data-file for > more than one subject? Any good reason for that? Normally, I’d say, just > rerun the experiment, type in subject number, and from the .edat files, > filter out those subjects who have few data (in E-DataAid, count number of > trials, write those subjects with few trials on a piece of paper, and filter > those out from analysis) – I think that’s pretty much what we always do > (whether subjects be infants or psych students). What you seem to want to do > is rather counterintuitive: if a participant completes 60% of trials, at > which point you want to increase subject number, why should this participant > suddenly have 2 subject numbers (so that subject with the next subject > number, which is actually the same subject, now has 40% of trials at most)? > Why not just create a filter? You can even do that online:**** > > Create user script (global, alt+5, user tab) variables:**** > > Dim TotalTrials as integer**** > > Dim PropDone as double**** > > Initialise variable (only TotalTrials, because initialising in basic also > sets to 0), by adding to beginning of experiment (upmost procedure, before > everything else):**** > > TotalTrials = 300 ‘or whatever is the maximum**** > > Check to see, during each trial, how far the subject is, by adding to end > of trial procedure:**** > > PropDone = PropDone + 1 / TotalTrials**** > > c.SetAttrib “PropDone”, PropDone**** > > ** ** > > voila, and by finding the maximum of propdone, per subject, you can find > how many trials the participant has done. You can take it from there, coding > the participant number, for whatever reason, in there as well (I’d just > suggest not to use the subject number attribute) and increasing it if need > be.**** > > ** ** > > If, on the other hand, you’re doing some infinite loop thing, where you > want ALL infants in 1 edat, perhaps it might be a good idea to build in a > sneaky key. So that, if you have some textdisplay, and you press X (for > next), a variable is updated:**** > > User script:**** > > Dim CurrentParticipant as Integer**** > > Initialise:**** > > currentparticipant = c.GetAttrib (“Subject”)**** > > ** ** > > After critical stimulus:**** > > If myCriticalStimulus.RESP = X then currentparticipant = currentparticipant > + 1**** > > c.SetAttrib “CurrentParticipant”, currentparticipant**** > > ** ** > > Something like that. Hope that helps.**** > > Best,**** > > Mich**** > > ** ** > > ** ** > > ** ** > > *Michiel Spapé* > > *Research Fellow* > > *Perception & Action group* > > *University of Nottingham* > > *School of Psychology* > > *www.cognitology.eu*** > > ** ** > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > Behalf Of *Meltem BALLAN > *Sent:* 13 October 2011 13:01 > *To:* e-prime at googlegroups.com > > *Subject:* Re: incrementing the trial count**** > > ** ** > > Hi All, > > Thank you.I did all you described but somehow I could not call from another > function. I am running infant subjects. So it is not a case for me to > complete the task 60% of the time. Therefore, I wanna count the max number > of trials. If it is more than 60% I wanna increase the subject number. I > followed instructions but increment did not work. > Thanks > Meltem**** > > On Oct 13, 2011 7:02 AM, "liwenna" wrote:**** > > Not sure if this is what you're looking for (if I remember correctly > the e-primer is quite clear on this one) but you did add an inline > that increments the value assigned to totaltrial on each trial? I.e. > an inline on the proc reading: > > totaltrial = totaltrial +1 > (followed by another line to log it onto the attribute trialcount: c. > SetAttrib "TrialCount", totalTrial) ? > > On Oct 12, 7:02 pm, Meltem BALLAN wrote: > > Mich, > > No worries. I was looking to find a source. I used the explanation in the > > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > > something I am missing within the lines. > > Thanks > > Meltem > > > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > > Hi Meltem,**** > > > > > Not to sound sour, but these are quite elementary questions for which I > > > think you might really want to do a quick walk through some tutorials. > For > > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhasan > > > almost exact answer to what you seem to be looking for, in one of the > two > > > last chapters. Also, the quick start is a very useful way to begin. I > think, > > > with some additional information (such as what do you mean by Stimulus > > > count?), anybody could answer your question, but you’d really be doing > > > yourself a favour to take two days to learn how to use the software. > Sorry > > > to be not of more use.**** > > > > > ** ** > > > > > Best,**** > > > > > Mich**** > > > > > ** ** > > > > > *Michiel Spapé* > > > > > *Research Fellow* > > > > > *Perception & Action group* > > > > > *University of Nottingham* > > > > > *School of Psychology* > > > > > *www.cognitology.eu*** > > > > > ** ** > > > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > > Behalf Of *Meltem BALLAN > > > *Sent:* 12 October 2011 17:42 > > > *To:* e-prime at googlegroups.com > > > *Subject:* incrementing the trial count**** > > > > > ** ** > > > > > Hi All, > > > I have a question that I cannot figure out by myself. I am trying to > add a > > > counter in my task which is counting the total number of trials during > the > > > task. I defined a global variable as totalTrial (in User Script) and > > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > > dillemma is how I can integrate TrialCount with my Stimulus count. > > > I tried as Trial=TrialCount but it did not work. > > > Any idea? > > > Thanks > > > Meltem > > > > > -- > > > Meltem Ballan, PhD > > > Department of Psychiatry, CB# 7160 > > > University of North Carolina School of Medicine > > > 7023 Neurosciences Hospital > > > Chapel Hill, NC 27599-7160**** > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to > > > e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en.**** > > > > > This message and any attachment are intended solely for the addressee > and > > > may contain confidential information. If you have received this message > in > > > error, please send it back to me, and immediately delete it. Please do > not > > > use, copy or disclose the information contained in this message or in > any > > > attachment. Any views or opinions expressed by the author of this email > do > > > not necessarily reflect the views of the University of Nottingham. > > > > > This message has been checked for viruses but the contents of an > attachment > > > may still contain software viruses which could damage your computer > system: > > > you are advised to perform your own checks. Email communications with > the > > > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to > > > e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. > > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Erika_Nyhus at brown.edu Thu Oct 13 17:18:34 2011 From: Erika_Nyhus at brown.edu (Erika Nyhus) Date: Thu, 13 Oct 2011 13:18:34 -0400 Subject: .edat file not created Message-ID: My experimental program is having the following problem. The text file is created, but not the .edat file and I am getting an error saying, "Reading txt file- variable name is same as level name". And when I try to recover the .edat file using E-Recovery the resulting .edat file only contains one row. I think it might have to do with naming one of my variables Block. Please let me know if there is anyway to 1) modify my code to be able to have it automatically generate an .edat file and 2) convert the txt files I have to .edat. I have attached the code, txt, and .edat files. -- Erika Nyhus, Ph.D. Cognitive, Linguistic, and Psychological Sciences Brown University 190 Thayer St. Providence, RI 02912-1821 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- ?*** Header Start *** VersionPersist: 1 LevelName: Session LevelName: Block LevelName: Trial LevelName: SubTrial LevelName: LogLevel5 LevelName: LogLevel6 LevelName: LogLevel7 LevelName: LogLevel8 LevelName: LogLevel9 LevelName: LogLevel10 Experiment: Kahn5Test SessionDate: 09-16-2011 SessionTime: 11:08:49 SessionTimeUtc: 3:08:49 PM Subject: 1 Session: 1 Group: 1 Name: Age: 20 Sex: male Handedness: right ResearcherID: 1 RandomSeed: -1144062026 Display.RefreshRate: 60.020 *** Header End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1 Block: 1 DelDur: NullDur: Word: DANGEROUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 67 Running: TestList TestList.Cycle: 1 TestList.Sample: 1 TrialCount: 1 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 19196 TestWord.DurationError: 99 TestWord.RTTime: 21077 TestWord.ACC: 0 TestWord.RT: 1881 TestWord.RESP: {-3}z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 19945 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 19949 Keyrelease: 21683 ResponseTime: 1734 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 2 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 2 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 3 Block: 1 DelDur: NullDur: Word: BRAINY ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 27 Running: TestList TestList.Cycle: 1 TestList.Sample: 3 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 4 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 4 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 5 Block: 1 DelDur: NullDur: Word: CAUTIONARY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 2 Running: TestList TestList.Cycle: 1 TestList.Sample: 5 TrialCount: 2 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 24760 TestWord.DurationError: 100 TestWord.RTTime: 25611 TestWord.ACC: 1 TestWord.RT: 851 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 25510 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 25611 Keyrelease: 27257 ResponseTime: 1646 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 6 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 6 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 7 Block: 1 DelDur: NullDur: Word: DRY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 97 Running: TestList TestList.Cycle: 1 TestList.Sample: 7 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 8 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 8 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 9 Block: 1 DelDur: NullDur: PlaceList: 87 Word: FOOLISH ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 9 TrialCount: 3 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 35340 TestWord.DurationError: 100 TestWord.RTTime: 36947 TestWord.ACC: 1 TestWord.RT: 1607 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 36090 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 36947 Keyrelease: 37831 ResponseTime: 884 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 10 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 10 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 11 Block: 1 DelDur: NullDur: PlaceList: 56 Word: ABLAZE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 11 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 12 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 12 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 13 Block: 1 DelDur: NullDur: Word: DARK ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 100 Running: TestList TestList.Cycle: 1 TestList.Sample: 13 TrialCount: 4 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 40406 TestWord.DurationError: 99 TestWord.RTTime: 41811 TestWord.ACC: 0 TestWord.RT: 1405 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 41155 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 41707 Keyrelease: 42894 ResponseTime: 1187 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 14 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 14 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 15 Block: 1 DelDur: NullDur: Word: ANXIOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 144 Running: TestList TestList.Cycle: 1 TestList.Sample: 15 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 16 Block: 1 DelDur: NullDur: Word: SLEEPY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 87 Running: TestList TestList.Cycle: 1 TestList.Sample: 16 TrialCount: 5 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 44454 TestWord.DurationError: 100 TestWord.RTTime: 45771 TestWord.ACC: 0 TestWord.RT: 1317 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 45204 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 45771 Keyrelease: 46950 ResponseTime: 1179 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 17 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 17 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 18 Block: 1 DelDur: NullDur: Word: IMPOSING ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 188 Running: TestList TestList.Cycle: 1 TestList.Sample: 18 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 19 Block: 1 DelDur: NullDur: PlaceList: 12 Word: LOVABLE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 19 TrialCount: 6 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 53518 TestWord.DurationError: 99 TestWord.RTTime: 54251 TestWord.ACC: 0 TestWord.RT: 733 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 54268 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 54272 Keyrelease: 56014 ResponseTime: 1742 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 20 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 20 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 21 Block: 1 DelDur: NullDur: PlaceList: 95 Word: AMPHIBIOUS ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 21 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 22 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 22 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 23 Block: 1 DelDur: NullDur: Word: MODEST ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 25 Running: TestList TestList.Cycle: 1 TestList.Sample: 23 TrialCount: 7 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 60099 TestWord.DurationError: 100 TestWord.RTTime: 61491 TestWord.ACC: 1 TestWord.RT: 1392 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 60849 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 61491 Keyrelease: 62590 ResponseTime: 1098 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 24 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 24 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 25 Block: 1 DelDur: NullDur: Word: SIAMESE ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 51 Running: TestList TestList.Cycle: 1 TestList.Sample: 25 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 26 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 26 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 27 Block: 1 DelDur: NullDur: PlaceList: 53 Word: SLUMMY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 27 TrialCount: 8 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 65664 TestWord.DurationError: 100 TestWord.RTTime: 67139 TestWord.ACC: 0 TestWord.RT: 1475 TestWord.RESP: x{-x} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 66414 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 66812 Keyrelease: 68152 ResponseTime: 1340 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 28 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 28 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 29 Block: 1 DelDur: NullDur: PlaceList: 85 Word: CELTIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 29 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 30 Block: 1 DelDur: NullDur: PlaceList: 75 Word: MYTHICAL ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 30 TrialCount: 9 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 69713 TestWord.DurationError: 99 TestWord.RTTime: 70771 TestWord.ACC: 1 TestWord.RT: 1058 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 70463 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 70772 Keyrelease: 72203 ResponseTime: 1431 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 31 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 31 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 32 Block: 1 DelDur: NullDur: PlaceList: 7 Word: PATHOLOGIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 32 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 33 Block: 1 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 33 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 34 Block: 1 DelDur: NullDur: PlaceList: 10 Word: AMATEURISH ListOrigin: List7B Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 34 TrialCount: 10 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 83275 TestWord.DurationError: 100 TestWord.RTTime: 84596 TestWord.ACC: 1 TestWord.RT: 1321 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 84025 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 84596 Keyrelease: 85775 ResponseTime: 1179 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 35 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 35 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 36 Block: 1 DelDur: NullDur: PlaceList: 73 Word: GRAY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 36 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 37 Block: 1 DelDur: NullDur: Word: NOTORIOUS ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 38 Running: TestList TestList.Cycle: 1 TestList.Sample: 37 TrialCount: 11 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 92339 TestWord.DurationError: 100 TestWord.RTTime: 93580 TestWord.ACC: 1 TestWord.RT: 1241 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 93089 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 93580 Keyrelease: 94838 ResponseTime: 1258 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 38 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 38 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 39 Block: 1 DelDur: NullDur: Word: ASYMMETRIC ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 80 Running: TestList TestList.Cycle: 1 TestList.Sample: 39 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 40 Block: 1 DelDur: NullDur: Word: HYSTERICAL ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 87 Running: TestList TestList.Cycle: 1 TestList.Sample: 40 TrialCount: 12 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 102403 TestWord.DurationError: 99 TestWord.RTTime: 103420 TestWord.ACC: 0 TestWord.RT: 1017 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 103152 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 103420 Keyrelease: 104892 ResponseTime: 1472 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 41 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 41 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 42 Block: 1 DelDur: NullDur: Word: UNBECOMING ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 63 Running: TestList TestList.Cycle: 1 TestList.Sample: 42 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 43 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 43 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 44 Block: 1 DelDur: NullDur: Word: UNHEALTHY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 9 Running: TestList TestList.Cycle: 1 TestList.Sample: 44 TrialCount: 13 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 108967 TestWord.DurationError: 100 TestWord.RTTime: 110252 TestWord.ACC: 1 TestWord.RT: 1285 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 109717 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 110252 Keyrelease: 111456 ResponseTime: 1204 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 45 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 45 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 46 Block: 1 DelDur: NullDur: Word: EPIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 81 Running: TestList TestList.Cycle: 1 TestList.Sample: 46 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 47 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 47 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 48 Block: 1 DelDur: NullDur: Word: PATERNAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 176 Running: TestList TestList.Cycle: 1 TestList.Sample: 48 TrialCount: 14 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 114032 TestWord.DurationError: 100 TestWord.RTTime: 115260 TestWord.ACC: 1 TestWord.RT: 1228 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 114782 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 115260 Keyrelease: 116531 ResponseTime: 1271 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 49 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 49 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 50 Block: 1 DelDur: NullDur: Word: SNOWY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 11 Running: TestList TestList.Cycle: 1 TestList.Sample: 50 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 51 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 51 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 52 Block: 1 DelDur: NullDur: Word: EXTERIOR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 15 Running: TestList TestList.Cycle: 1 TestList.Sample: 52 TrialCount: 15 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 118614 TestWord.DurationError: 100 TestWord.RTTime: 119532 TestWord.ACC: 1 TestWord.RT: 918 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 119364 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 119532 Keyrelease: 121112 ResponseTime: 1580 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 53 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 53 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 54 Block: 1 DelDur: NullDur: Word: GAUDY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 138 Running: TestList TestList.Cycle: 1 TestList.Sample: 54 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 55 Block: 1 DelDur: NullDur: Word: DROLL ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 2 Running: TestList TestList.Cycle: 1 TestList.Sample: 55 TrialCount: 16 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 122680 TestWord.DurationError: 99 TestWord.RTTime: 124156 TestWord.ACC: 1 TestWord.RT: 1476 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 123429 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 124156 Keyrelease: 125175 ResponseTime: 1019 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 56 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 56 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 57 Block: 1 DelDur: NullDur: Word: BABYISH ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 72 Running: TestList TestList.Cycle: 1 TestList.Sample: 57 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 58 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 58 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 59 Block: 1 DelDur: NullDur: Word: PHALLIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 28 Running: TestList TestList.Cycle: 1 TestList.Sample: 59 TrialCount: 17 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 134759 TestWord.DurationError: 100 TestWord.RTTime: 135460 TestWord.ACC: 1 TestWord.RT: 701 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 135509 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 135513 Keyrelease: 137252 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 60 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 60 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 61 Block: 1 DelDur: NullDur: Word: WINTRY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 7 Running: TestList TestList.Cycle: 1 TestList.Sample: 61 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 62 Block: 1 DelDur: NullDur: PlaceList: 27 Word: DELINQUENT ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 62 TrialCount: 18 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 139808 TestWord.DurationError: 99 TestWord.RTTime: 141076 TestWord.ACC: 0 TestWord.RT: 1268 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 140557 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 141077 Keyrelease: 142296 ResponseTime: 1219 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 63 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 63 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 64 Block: 1 DelDur: NullDur: PlaceList: 36 Word: ANCIENT ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 64 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 65 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 65 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 66 Block: 1 DelDur: NullDur: Word: WEIRD ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 140 Running: TestList TestList.Cycle: 1 TestList.Sample: 66 TrialCount: 19 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 144873 TestWord.DurationError: 99 TestWord.RTTime: 145548 TestWord.ACC: 1 TestWord.RT: 675 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 145622 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 145626 Keyrelease: 147368 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 67 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 67 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 68 Block: 1 DelDur: NullDur: Word: MANLY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 106 Running: TestList TestList.Cycle: 1 TestList.Sample: 68 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 69 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 69 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 70 Block: 1 DelDur: NullDur: Word: FINAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 99 Running: TestList TestList.Cycle: 1 TestList.Sample: 70 TrialCount: 20 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 149938 TestWord.DurationError: 99 TestWord.RTTime: 150660 TestWord.ACC: 1 TestWord.RT: 722 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 150687 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 150691 Keyrelease: 152431 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 71 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 71 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 72 Block: 1 DelDur: NullDur: Word: DETECTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 171 Running: TestList TestList.Cycle: 1 TestList.Sample: 72 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 73 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 73 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 74 Block: 1 DelDur: NullDur: PlaceList: 76 Word: DREAMY ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 74 TrialCount: 21 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 160001 TestWord.DurationError: 100 TestWord.RTTime: 161101 TestWord.ACC: 0 TestWord.RT: 1100 TestWord.RESP: z{-z} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 160751 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 160989 Keyrelease: 162490 ResponseTime: 1501 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 75 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 75 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 76 Block: 1 DelDur: NullDur: PlaceList: 68 Word: VIETNAMESE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 76 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 77 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 77 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 78 Block: 1 DelDur: NullDur: PlaceList: 55 Word: HEINOUS ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 78 TrialCount: 22 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 170065 TestWord.DurationError: 99 TestWord.RTTime: 171501 TestWord.ACC: 1 TestWord.RT: 1436 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 170814 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 171501 Keyrelease: 172557 ResponseTime: 1056 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 79 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 79 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 80 Block: 1 DelDur: NullDur: PlaceList: 11 Word: JEWISH ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 80 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 81 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 81 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 82 Block: 1 DelDur: NullDur: Word: EARTHY ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 18 Running: TestList TestList.Cycle: 1 TestList.Sample: 82 TrialCount: 23 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 178629 TestWord.DurationError: 99 TestWord.RTTime: 179333 TestWord.ACC: 1 TestWord.RT: 704 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 179378 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 179382 Keyrelease: 181121 ResponseTime: 1739 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 83 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 83 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 84 Block: 1 DelDur: NullDur: Word: TAME ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 77 Running: TestList TestList.Cycle: 1 TestList.Sample: 84 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 85 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 85 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 86 Block: 1 DelDur: NullDur: Word: MESSY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 133 Running: TestList TestList.Cycle: 1 TestList.Sample: 86 TrialCount: 24 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 183194 TestWord.DurationError: 99 TestWord.RTTime: 184493 TestWord.ACC: 0 TestWord.RT: 1299 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 183944 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 184493 Keyrelease: 185684 ResponseTime: 1191 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 87 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 87 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 88 Block: 1 DelDur: NullDur: Word: DUSTY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 41 Running: TestList TestList.Cycle: 1 TestList.Sample: 88 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 89 Block: 1 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 89 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 90 Block: 1 DelDur: NullDur: Word: AMBITIOUS ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 16 Running: TestList TestList.Cycle: 1 TestList.Sample: 90 TrialCount: 25 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 190758 TestWord.DurationError: 100 TestWord.RTTime: 191853 TestWord.ACC: 1 TestWord.RT: 1095 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 191508 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 191854 Keyrelease: 193246 ResponseTime: 1392 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 91 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 91 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 92 Block: 1 DelDur: NullDur: Word: AUSTRALIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 65 Running: TestList TestList.Cycle: 1 TestList.Sample: 92 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 93 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 93 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 94 Block: 1 DelDur: NullDur: PlaceList: 65 Word: ASSYRIAN ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 94 TrialCount: 26 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 197323 TestWord.DurationError: 99 TestWord.RTTime: 198741 TestWord.ACC: 0 TestWord.RT: 1418 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 198073 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 198453 Keyrelease: 199811 ResponseTime: 1358 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 95 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 95 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 96 Block: 1 DelDur: NullDur: PlaceList: 14 Word: SOLITARY ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 96 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 97 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 97 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 98 Block: 1 DelDur: NullDur: Word: SNOBBISH ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 31 Running: TestList TestList.Cycle: 1 TestList.Sample: 98 TrialCount: 27 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 202388 TestWord.DurationError: 99 TestWord.RTTime: 203221 TestWord.ACC: 1 TestWord.RT: 833 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 203138 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 203222 Keyrelease: 204881 ResponseTime: 1659 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 99 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 99 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 100 Block: 1 DelDur: NullDur: Word: DOMINANT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 122 Running: TestList TestList.Cycle: 1 TestList.Sample: 100 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 101 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 101 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 102 Block: 1 DelDur: NullDur: Word: AERONAUTIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 61 Running: TestList TestList.Cycle: 1 TestList.Sample: 102 TrialCount: 28 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 213451 TestWord.DurationError: 99 TestWord.RTTime: 215821 TestWord.ACC: 0 TestWord.RT: 2370 TestWord.RESP: x{-x} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 214201 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 214846 Keyrelease: 215939 ResponseTime: 1093 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 103 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 103 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 104 Block: 1 DelDur: NullDur: Word: STATUESQUE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 43 Running: TestList TestList.Cycle: 1 TestList.Sample: 104 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 105 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 105 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 106 Block: 1 DelDur: NullDur: Word: AGRARIAN ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 66 Running: TestList TestList.Cycle: 1 TestList.Sample: 106 TrialCount: 29 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 222515 TestWord.DurationError: 99 TestWord.RTTime: 224565 TestWord.ACC: 0 TestWord.RT: 2050 TestWord.RESP: 3{-3} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 223265 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 223470 Keyrelease: 225003 ResponseTime: 1533 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 107 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 107 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 108 Block: 1 DelDur: NullDur: Word: CHERUBIC ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 5 Running: TestList TestList.Cycle: 1 TestList.Sample: 108 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 109 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 109 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 110 Block: 1 DelDur: NullDur: Word: TENSE ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 82 Running: TestList TestList.Cycle: 1 TestList.Sample: 110 TrialCount: 30 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 229079 TestWord.DurationError: 100 TestWord.RTTime: 230982 TestWord.ACC: 0 TestWord.RT: 1903 TestWord.RESP: 3{-3} TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 229829 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 229878 Keyrelease: 231567 ResponseTime: 1689 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 111 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 111 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 112 Block: 1 DelDur: NullDur: Word: VULGAR ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 28 Running: TestList TestList.Cycle: 1 TestList.Sample: 112 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 113 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 113 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 114 Block: 1 DelDur: NullDur: Word: LEWD ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 78 Running: TestList TestList.Cycle: 1 TestList.Sample: 114 TrialCount: 31 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 240143 TestWord.DurationError: 99 TestWord.RTTime: 241838 TestWord.ACC: 0 TestWord.RT: 1695 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 240892 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 241838 Keyrelease: 242642 ResponseTime: 804 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 115 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 115 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 116 Block: 1 DelDur: NullDur: Word: NARROW ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 83 Running: TestList TestList.Cycle: 1 TestList.Sample: 116 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 117 Block: 1 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 117 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 118 Block: 1 DelDur: NullDur: PlaceList: 50 Word: DOGMATIC ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 118 TrialCount: 32 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 248223 TestWord.DurationError: 100 TestWord.RTTime: 249535 TestWord.ACC: 0 TestWord.RT: 1312 TestWord.RESP: z{-z} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 248973 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 249478 Keyrelease: 250711 ResponseTime: 1233 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 119 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 119 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 120 Block: 1 DelDur: NullDur: PlaceList: 40 Word: FAINT ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 120 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 121 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 121 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 122 Block: 1 DelDur: NullDur: Word: COPIOUS ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 93 Running: TestList TestList.Cycle: 1 TestList.Sample: 122 TrialCount: 33 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 259287 TestWord.DurationError: 99 TestWord.RTTime: 260326 TestWord.ACC: 0 TestWord.RT: 1039 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 260036 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 260326 Keyrelease: 261787 ResponseTime: 1461 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 123 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 123 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 124 Block: 1 DelDur: NullDur: Word: FORENSIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 55 Running: TestList TestList.Cycle: 1 TestList.Sample: 124 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 125 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 125 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 126 Block: 1 DelDur: NullDur: PlaceList: 33 Word: ASIAN ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 126 TrialCount: 34 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 264368 TestWord.DurationError: 100 TestWord.RTTime: 265470 TestWord.ACC: 1 TestWord.RT: 1102 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 265118 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 265470 Keyrelease: 266863 ResponseTime: 1393 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 127 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 127 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 128 Block: 1 DelDur: NullDur: PlaceList: 42 Word: INTERIOR ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 128 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 129 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 129 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 130 Block: 1 DelDur: NullDur: PlaceList: 30 Word: MODERN ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 130 TrialCount: 35 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 271433 TestWord.DurationError: 99 TestWord.RTTime: 272374 TestWord.ACC: 1 TestWord.RT: 941 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 272183 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 272374 Keyrelease: 273926 ResponseTime: 1551 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 131 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 131 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 132 Block: 1 DelDur: NullDur: PlaceList: 19 Word: FRAGILE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 132 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 133 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 133 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 134 Block: 1 DelDur: NullDur: Word: RARE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 42 Running: TestList TestList.Cycle: 1 TestList.Sample: 134 TrialCount: 36 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 275998 TestWord.DurationError: 99 TestWord.RTTime: 277528 TestWord.ACC: 0 TestWord.RT: 1530 TestWord.RESP: z{-z} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 276748 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 277471 Keyrelease: 278487 ResponseTime: 1016 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 135 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 135 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 136 Block: 1 DelDur: NullDur: Word: INDUSTRIAL ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 45 Running: TestList TestList.Cycle: 1 TestList.Sample: 136 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 137 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 137 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 138 Block: 1 DelDur: NullDur: Word: CYNICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 114 Running: TestList TestList.Cycle: 1 TestList.Sample: 138 TrialCount: 37 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 281563 TestWord.DurationError: 99 TestWord.RTTime: 283198 TestWord.ACC: 1 TestWord.RT: 1635 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 282313 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 283199 Keyrelease: 284056 ResponseTime: 857 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 139 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 139 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 140 Block: 1 DelDur: NullDur: Word: JOYOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 136 Running: TestList TestList.Cycle: 1 TestList.Sample: 140 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 141 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 141 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 142 Block: 1 DelDur: NullDur: PlaceList: 48 Word: RECENT ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 142 TrialCount: 38 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 287628 TestWord.DurationError: 99 TestWord.RTTime: 289702 TestWord.ACC: 0 TestWord.RT: 2074 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 288377 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 288381 Keyrelease: 290117 ResponseTime: 1736 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 143 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 143 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 144 Block: 1 DelDur: NullDur: PlaceList: 37 Word: NATURAL ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 144 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 145 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 145 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 146 Block: 1 DelDur: NullDur: Word: CUNNING ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 22 Running: TestList TestList.Cycle: 1 TestList.Sample: 146 TrialCount: 39 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 299691 TestWord.DurationError: 99 TestWord.RTTime: 301127 TestWord.ACC: 1 TestWord.RT: 1436 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 300440 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 301127 Keyrelease: 302183 ResponseTime: 1056 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 147 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 147 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 148 Block: 1 DelDur: NullDur: Word: SANDY ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 75 Running: TestList TestList.Cycle: 1 TestList.Sample: 148 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 149 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 149 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 150 Block: 1 DelDur: NullDur: Word: CANINE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 105 Running: TestList TestList.Cycle: 1 TestList.Sample: 150 TrialCount: 40 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 309254 TestWord.DurationError: 100 TestWord.RTTime: 310319 TestWord.ACC: 1 TestWord.RT: 1065 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 310004 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 310319 Keyrelease: 311751 ResponseTime: 1432 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 151 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 151 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 152 Block: 1 DelDur: NullDur: Word: COLD ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 24 Running: TestList TestList.Cycle: 1 TestList.Sample: 152 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 153 Block: 1 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 153 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 154 Block: 1 DelDur: NullDur: PlaceList: 23 Word: WORLDLY ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 154 TrialCount: 41 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 317335 TestWord.DurationError: 99 TestWord.RTTime: 318695 TestWord.ACC: 1 TestWord.RT: 1360 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 318085 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 318695 Keyrelease: 319832 ResponseTime: 1137 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 155 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 155 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 156 Block: 1 DelDur: NullDur: PlaceList: 44 Word: CONFIDENT ListOrigin: List4A Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 156 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 157 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 157 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 158 Block: 1 DelDur: NullDur: Word: SALTY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 86 Running: TestList TestList.Cycle: 1 TestList.Sample: 158 TrialCount: 42 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 322417 TestWord.DurationError: 99 TestWord.RTTime: 323255 TestWord.ACC: 1 TestWord.RT: 838 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 323166 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 323255 Keyrelease: 324916 ResponseTime: 1661 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 159 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 159 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 160 Block: 1 DelDur: NullDur: Word: BOTHERSOME ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 80 Running: TestList TestList.Cycle: 1 TestList.Sample: 160 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 161 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 161 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 162 Block: 1 DelDur: NullDur: Word: AWFUL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 117 Running: TestList TestList.Cycle: 1 TestList.Sample: 162 TrialCount: 43 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 329498 TestWord.DurationError: 100 TestWord.RTTime: 330983 TestWord.ACC: 0 TestWord.RT: 1485 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 330248 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 330983 Keyrelease: 331988 ResponseTime: 1005 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 163 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 163 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 164 Block: 1 DelDur: NullDur: Word: DREARY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 112 Running: TestList TestList.Cycle: 1 TestList.Sample: 164 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 165 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 165 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 166 Block: 1 DelDur: NullDur: Word: PIOUS ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 71 Running: TestList TestList.Cycle: 1 TestList.Sample: 166 TrialCount: 44 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 335563 TestWord.DurationError: 99 TestWord.RTTime: 336847 TestWord.ACC: 1 TestWord.RT: 1284 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 336312 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 336847 Keyrelease: 338064 ResponseTime: 1217 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 167 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 167 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 168 Block: 1 DelDur: NullDur: Word: ETERNAL ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 95 Running: TestList TestList.Cycle: 1 TestList.Sample: 168 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 169 Block: 1 DelDur: NullDur: Word: REGAL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 132 Running: TestList TestList.Cycle: 1 TestList.Sample: 169 TrialCount: 45 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 340628 TestWord.DurationError: 99 TestWord.RTTime: 341967 TestWord.ACC: 0 TestWord.RT: 1339 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 341377 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 341967 Keyrelease: 343118 ResponseTime: 1150 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 170 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 170 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 171 Block: 1 DelDur: NullDur: Word: GENEROUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 143 Running: TestList TestList.Cycle: 1 TestList.Sample: 171 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 172 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 172 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 173 Block: 1 DelDur: NullDur: Word: HOLY ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 74 Running: TestList TestList.Cycle: 1 TestList.Sample: 173 TrialCount: 46 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 351191 TestWord.DurationError: 99 TestWord.RTTime: 352399 TestWord.ACC: 1 TestWord.RT: 1208 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 351941 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 352400 Keyrelease: 353686 ResponseTime: 1286 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 174 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 174 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 175 Block: 1 DelDur: NullDur: Word: CLEAN ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 86 Running: TestList TestList.Cycle: 1 TestList.Sample: 175 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 176 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 176 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 177 Block: 1 DelDur: NullDur: Word: AESTHETIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 43 Running: TestList TestList.Cycle: 1 TestList.Sample: 177 TrialCount: 47 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 357256 TestWord.DurationError: 99 TestWord.RTTime: 359079 TestWord.ACC: 0 TestWord.RT: 1823 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 358006 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 358392 Keyrelease: 359745 ResponseTime: 1353 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 178 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 178 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 179 Block: 1 DelDur: NullDur: Word: MYSTERIOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 93 Running: TestList TestList.Cycle: 1 TestList.Sample: 179 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 180 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 180 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 181 Block: 1 DelDur: NullDur: Word: IMPECCABLE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 113 Running: TestList TestList.Cycle: 1 TestList.Sample: 181 TrialCount: 48 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 368819 TestWord.DurationError: 99 TestWord.RTTime: 371200 TestWord.ACC: 0 TestWord.RT: 2381 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 369569 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 369776 Keyrelease: 371308 ResponseTime: 1532 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 182 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 182 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 183 Block: 1 DelDur: NullDur: Word: AGLOW ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 77 Running: TestList TestList.Cycle: 1 TestList.Sample: 183 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 184 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 184 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 185 Block: 1 DelDur: NullDur: Word: HECTIC ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 108 Running: TestList TestList.Cycle: 1 TestList.Sample: 185 TrialCount: 49 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 378882 TestWord.DurationError: 100 TestWord.RTTime: 380192 TestWord.ACC: 1 TestWord.RT: 1310 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 379632 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 380192 Keyrelease: 381371 ResponseTime: 1179 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 186 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 186 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 187 Block: 1 DelDur: NullDur: Word: COOL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 172 Running: TestList TestList.Cycle: 1 TestList.Sample: 187 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 188 Block: 1 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 188 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 189 Block: 1 DelDur: NullDur: Word: BOTANICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 104 Running: TestList TestList.Cycle: 1 TestList.Sample: 189 TrialCount: 50 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 391945 TestWord.DurationError: 99 TestWord.RTTime: 394304 TestWord.ACC: 0 TestWord.RT: 2359 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 392695 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 393176 Keyrelease: 394434 ResponseTime: 1258 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 190 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 190 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 191 Block: 1 DelDur: NullDur: Word: FOUL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 84 Running: TestList TestList.Cycle: 1 TestList.Sample: 191 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 192 Block: 1 DelDur: NullDur: 4500 Running: TestList TestList.Cycle: 1 TestList.Sample: 192 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 193 Block: 1 DelDur: NullDur: Word: ADAPTABLE ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 64 Running: TestList TestList.Cycle: 1 TestList.Sample: 193 TrialCount: 51 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 405507 TestWord.DurationError: 100 TestWord.RTTime: 406784 TestWord.ACC: 1 TestWord.RT: 1277 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 406257 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 406784 Keyrelease: 408002 ResponseTime: 1218 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 194 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 194 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 195 Block: 1 DelDur: NullDur: Word: CHEERY ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 30 Running: TestList TestList.Cycle: 1 TestList.Sample: 195 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 196 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 196 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 197 Block: 1 DelDur: NullDur: Word: CERAMIC ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 89 Running: TestList TestList.Cycle: 1 TestList.Sample: 197 TrialCount: 52 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 412072 TestWord.DurationError: 99 TestWord.RTTime: 413200 TestWord.ACC: 1 TestWord.RT: 1128 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 412822 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 413200 Keyrelease: 414566 ResponseTime: 1365 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 198 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 198 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 199 Block: 1 DelDur: NullDur: Word: RADICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 169 Running: TestList TestList.Cycle: 1 TestList.Sample: 199 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 200 Block: 1 DelDur: NullDur: Word: EMPTY ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 54 Running: TestList TestList.Cycle: 1 TestList.Sample: 200 TrialCount: 53 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 416121 TestWord.DurationError: 99 TestWord.RTTime: 417272 TestWord.ACC: 1 TestWord.RT: 1151 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 416870 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 417273 Keyrelease: 418610 ResponseTime: 1337 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 201 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 201 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 202 Block: 1 DelDur: NullDur: Word: VAGRANT ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 31 Running: TestList TestList.Cycle: 1 TestList.Sample: 202 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 203 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 203 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 204 Block: 1 DelDur: NullDur: Word: BRIEF ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 98 Running: TestList TestList.Cycle: 1 TestList.Sample: 204 TrialCount: 54 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 421686 TestWord.DurationError: 99 TestWord.RTTime: 422520 TestWord.ACC: 1 TestWord.RT: 834 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 422435 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 422521 Keyrelease: 424182 ResponseTime: 1661 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 205 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 205 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 206 Block: 1 DelDur: NullDur: Word: BELGIAN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 191 Running: TestList TestList.Cycle: 1 TestList.Sample: 206 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 207 Block: 1 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 207 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 208 Block: 1 DelDur: NullDur: Word: PERFUMED ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 57 Running: TestList TestList.Cycle: 1 TestList.Sample: 208 TrialCount: 55 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 429766 TestWord.DurationError: 100 TestWord.RTTime: 431121 TestWord.ACC: 0 TestWord.RT: 1355 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 430516 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 431049 Keyrelease: 432255 ResponseTime: 1206 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 209 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 209 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 210 Block: 1 DelDur: NullDur: Word: ORIENTAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 91 Running: TestList TestList.Cycle: 1 TestList.Sample: 210 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 211 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 211 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 212 Block: 1 DelDur: NullDur: Word: ATYPICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 154 Running: TestList TestList.Cycle: 1 TestList.Sample: 212 TrialCount: 56 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 438830 TestWord.DurationError: 100 TestWord.RTTime: 440777 TestWord.ACC: 0 TestWord.RT: 1947 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 439580 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 440777 Keyrelease: 441326 ResponseTime: 549 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 213 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 213 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 214 Block: 1 DelDur: NullDur: Word: UNCIVIL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 129 Running: TestList TestList.Cycle: 1 TestList.Sample: 214 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 215 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 215 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 216 Block: 1 DelDur: NullDur: Word: COMICAL ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 27 Running: TestList TestList.Cycle: 1 TestList.Sample: 216 TrialCount: 57 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 450910 TestWord.DurationError: 99 TestWord.RTTime: 452585 TestWord.ACC: 1 TestWord.RT: 1675 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 451659 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 452585 Keyrelease: 453402 ResponseTime: 817 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 217 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 217 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 218 Block: 1 DelDur: NullDur: Word: TECHY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 101 Running: TestList TestList.Cycle: 1 TestList.Sample: 218 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 219 Block: 1 DelDur: NullDur: 4500 Running: TestList TestList.Cycle: 1 TestList.Sample: 219 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 220 Block: 1 DelDur: NullDur: Word: UNIVERSAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 20 Running: TestList TestList.Cycle: 1 TestList.Sample: 220 TrialCount: 58 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 459474 TestWord.DurationError: 99 TestWord.RTTime: 460289 TestWord.ACC: 1 TestWord.RT: 815 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 460223 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 460289 Keyrelease: 461962 ResponseTime: 1673 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 221 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 221 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 222 Block: 1 DelDur: NullDur: Word: FUNKY ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 153 Running: TestList TestList.Cycle: 1 TestList.Sample: 222 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 223 Block: 1 DelDur: NullDur: PlaceList: 34 Word: EXPENSIVE ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 223 TrialCount: 59 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 464522 TestWord.DurationError: 99 TestWord.RTTime: 466057 TestWord.ACC: 0 TestWord.RT: 1535 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 465272 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 466057 Keyrelease: 467020 ResponseTime: 963 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 224 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 224 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 225 Block: 1 DelDur: NullDur: PlaceList: 35 Word: LEGAL ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 225 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 226 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 226 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 227 Block: 1 DelDur: NullDur: PlaceList: 6 Word: CLERICAL ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 227 TrialCount: 60 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 476602 TestWord.DurationError: 99 TestWord.RTTime: 477649 TestWord.ACC: 0 TestWord.RT: 1047 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 477351 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 477521 Keyrelease: 479090 ResponseTime: 1569 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 228 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 228 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 229 Block: 1 DelDur: NullDur: PlaceList: 80 Word: MALODOROUS ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 229 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 230 Block: 1 DelDur: NullDur: 4500 Running: TestList TestList.Cycle: 1 TestList.Sample: 230 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 231 Block: 1 DelDur: NullDur: Word: BOVINE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 81 Running: TestList TestList.Cycle: 1 TestList.Sample: 231 TrialCount: 61 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 485166 TestWord.DurationError: 99 TestWord.RTTime: 486033 TestWord.ACC: 1 TestWord.RT: 867 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 485915 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 486034 Keyrelease: 487655 ResponseTime: 1621 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 232 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 232 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 233 Block: 1 DelDur: NullDur: Word: UNPLEASANT ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 141 Running: TestList TestList.Cycle: 1 TestList.Sample: 233 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 234 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 234 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 235 Block: 1 DelDur: NullDur: PlaceList: 46 Word: UNFRIENDLY ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 235 TrialCount: 62 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 493729 TestWord.DurationError: 100 TestWord.RTTime: 494873 TestWord.ACC: 0 TestWord.RT: 1144 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 494479 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 494874 Keyrelease: 496227 ResponseTime: 1353 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 236 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 236 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 237 Block: 1 DelDur: NullDur: PlaceList: 63 Word: DECADENT ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 237 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 238 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 238 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 239 Block: 1 DelDur: NullDur: Word: TERRIBLE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 21 Running: TestList TestList.Cycle: 1 TestList.Sample: 239 TrialCount: 63 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 502310 TestWord.DurationError: 100 TestWord.RTTime: 503474 TestWord.ACC: 0 TestWord.RT: 1164 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 503060 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 503474 Keyrelease: 504798 ResponseTime: 1325 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 240 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 240 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 241 Block: 1 DelDur: NullDur: Word: FAVOURABLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 51 Running: TestList TestList.Cycle: 1 TestList.Sample: 241 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 242 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 242 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 243 Block: 1 DelDur: NullDur: Word: FELINE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 157 Running: TestList TestList.Cycle: 1 TestList.Sample: 243 TrialCount: 64 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 508375 TestWord.DurationError: 100 TestWord.RTTime: 509116 TestWord.ACC: 1 TestWord.RT: 741 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 509125 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 509129 Keyrelease: 510871 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 244 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 244 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 245 Block: 1 DelDur: NullDur: Word: INDECENT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 160 Running: TestList TestList.Cycle: 1 TestList.Sample: 245 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 246 Block: 1 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 246 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 247 Block: 1 DelDur: NullDur: PlaceList: 99 Word: IRISH ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 247 TrialCount: 65 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 515456 TestWord.DurationError: 99 TestWord.RTTime: 516530 TestWord.ACC: 1 TestWord.RT: 1074 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 516206 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 516530 Keyrelease: 517947 ResponseTime: 1417 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 248 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 248 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 249 Block: 1 DelDur: NullDur: PlaceList: 91 Word: GAY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 249 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 250 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 250 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 251 Block: 1 DelDur: NullDur: Word: GOTHIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 33 Running: TestList TestList.Cycle: 1 TestList.Sample: 251 TrialCount: 66 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 522520 TestWord.DurationError: 100 TestWord.RTTime: 523330 TestWord.ACC: 1 TestWord.RT: 810 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 523270 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 523330 Keyrelease: 525019 ResponseTime: 1689 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 252 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 252 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 253 Block: 1 DelDur: NullDur: Word: LITERARY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 198 Running: TestList TestList.Cycle: 1 TestList.Sample: 253 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 254 Block: 1 DelDur: NullDur: Word: CLASSY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 24 Running: TestList TestList.Cycle: 1 TestList.Sample: 254 TrialCount: 67 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 526586 TestWord.DurationError: 99 TestWord.RTTime: 527570 TestWord.ACC: 0 TestWord.RT: 984 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 527336 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 527570 Keyrelease: 529082 ResponseTime: 1512 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 255 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 255 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 256 Block: 1 DelDur: NullDur: Word: OFFICIAL ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 56 Running: TestList TestList.Cycle: 1 TestList.Sample: 256 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 257 Block: 1 DelDur: NullDur: PlaceList: 74 Word: AFRICAN ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 257 TrialCount: 68 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 536649 TestWord.DurationError: 100 TestWord.RTTime: 538370 TestWord.ACC: 1 TestWord.RT: 1721 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 537399 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 538370 Keyrelease: 539146 ResponseTime: 776 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 258 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 258 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 259 Block: 1 DelDur: NullDur: PlaceList: 97 Word: LONELY ListOrigin: List3A Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 259 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 260 Block: 1 DelDur: NullDur: Word: NATIVE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 46 Running: TestList TestList.Cycle: 1 TestList.Sample: 260 TrialCount: 69 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 545713 TestWord.DurationError: 100 TestWord.RTTime: 546394 TestWord.ACC: 1 TestWord.RT: 681 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 546463 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 546467 Keyrelease: 548208 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 261 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 261 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 262 Block: 1 DelDur: NullDur: Word: ORNATE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 155 Running: TestList TestList.Cycle: 1 TestList.Sample: 262 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 263 Block: 1 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 263 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 264 Block: 1 DelDur: NullDur: Word: FEUDAL ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 38 Running: TestList TestList.Cycle: 1 TestList.Sample: 264 TrialCount: 70 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 553777 TestWord.DurationError: 100 TestWord.RTTime: 554402 TestWord.ACC: 1 TestWord.RT: 625 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 554527 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 554531 Keyrelease: 556271 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 265 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 265 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 266 Block: 1 DelDur: NullDur: Word: AQUATIC ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 177 Running: TestList TestList.Cycle: 1 TestList.Sample: 266 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 267 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 267 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 268 Block: 1 DelDur: NullDur: Word: BRAVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 168 Running: TestList TestList.Cycle: 1 TestList.Sample: 268 TrialCount: 71 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 561342 TestWord.DurationError: 99 TestWord.RTTime: 562074 TestWord.ACC: 1 TestWord.RT: 732 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 562091 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 562095 Keyrelease: 563834 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 269 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 269 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 270 Block: 1 DelDur: NullDur: Word: SPIRITUAL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 147 Running: TestList TestList.Cycle: 1 TestList.Sample: 270 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 271 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 271 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 272 Block: 1 DelDur: NullDur: Word: ROTTEN ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 44 Running: TestList TestList.Cycle: 1 TestList.Sample: 272 TrialCount: 72 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 569906 TestWord.DurationError: 99 TestWord.RTTime: 571098 TestWord.ACC: 1 TestWord.RT: 1192 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 570655 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 571099 Keyrelease: 572397 ResponseTime: 1298 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 273 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 273 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 274 Block: 1 DelDur: NullDur: Word: WOMANLIKE ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 3 Running: TestList TestList.Cycle: 1 TestList.Sample: 274 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 275 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 275 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 276 Block: 1 DelDur: NullDur: Word: ALGEBRAIC ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 6 Running: TestList TestList.Cycle: 1 TestList.Sample: 276 TrialCount: 73 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 579969 TestWord.DurationError: 99 TestWord.RTTime: 582123 TestWord.ACC: 0 TestWord.RT: 2154 TestWord.RESP: 3{-3} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 580719 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 580723 Keyrelease: 582457 ResponseTime: 1734 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 277 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 277 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 278 Block: 1 DelDur: NullDur: Word: ROUGH ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 58 Running: TestList TestList.Cycle: 1 TestList.Sample: 278 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 279 Block: 1 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 279 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 280 Block: 1 DelDur: NullDur: PlaceList: 93 Word: DUSK ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 280 TrialCount: 74 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 593531 TestWord.DurationError: 100 TestWord.RTTime: 594715 TestWord.ACC: 1 TestWord.RT: 1184 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 594281 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 594715 Keyrelease: 596028 ResponseTime: 1313 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 281 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 281 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 282 Block: 1 DelDur: NullDur: PlaceList: 79 Word: AMORPHOUS ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 282 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 283 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 283 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 284 Block: 1 DelDur: NullDur: PlaceList: 18 Word: BLIND ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 284 TrialCount: 75 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 599113 TestWord.DurationError: 99 TestWord.RTTime: 600507 TestWord.ACC: 0 TestWord.RT: 1394 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 599863 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 600507 Keyrelease: 601604 ResponseTime: 1097 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 285 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 285 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 286 Block: 1 DelDur: NullDur: PlaceList: 61 Word: SEEDY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 286 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 287 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 287 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 288 Block: 1 DelDur: NullDur: Word: LAZY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 40 Running: TestList TestList.Cycle: 1 TestList.Sample: 288 TrialCount: 76 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 604678 TestWord.DurationError: 99 TestWord.RTTime: 606363 TestWord.ACC: 1 TestWord.RT: 1685 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 605428 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 606363 Keyrelease: 607167 ResponseTime: 804 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 289 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 289 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 290 Block: 1 DelDur: NullDur: Word: ELEGANT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 166 Running: TestList TestList.Cycle: 1 TestList.Sample: 290 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 291 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 291 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 292 Block: 1 DelDur: NullDur: Word: BOHEMIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 55 Running: TestList TestList.Cycle: 1 TestList.Sample: 292 TrialCount: 77 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 610743 TestWord.DurationError: 99 TestWord.RTTime: 611811 TestWord.ACC: 0 TestWord.RT: 1068 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 611492 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 611811 Keyrelease: 613244 ResponseTime: 1433 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 293 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 293 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 294 Block: 1 DelDur: NullDur: Word: ATTRACTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 170 Running: TestList TestList.Cycle: 1 TestList.Sample: 294 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 295 Block: 1 DelDur: NullDur: Word: MEDICAL ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 21 Running: TestList TestList.Cycle: 1 TestList.Sample: 295 TrialCount: 78 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 619806 TestWord.DurationError: 100 TestWord.RTTime: 622067 TestWord.ACC: 1 TestWord.RT: 2261 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 620556 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 622067 Keyrelease: 622295 ResponseTime: 228 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 296 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 296 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 297 Block: 1 DelDur: NullDur: Word: CLINICAL ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 32 Running: TestList TestList.Cycle: 1 TestList.Sample: 297 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 298 Block: 1 DelDur: NullDur: 7500 Running: TestList TestList.Cycle: 1 TestList.Sample: 298 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 299 Block: 1 DelDur: NullDur: Word: CAUTIOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 139 Running: TestList TestList.Cycle: 1 TestList.Sample: 299 TrialCount: 79 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 636368 TestWord.DurationError: 99 TestWord.RTTime: 637555 TestWord.ACC: 0 TestWord.RT: 1187 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 637118 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 637556 Keyrelease: 638866 ResponseTime: 1310 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 300 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 300 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 301 Block: 1 DelDur: NullDur: Word: SIMPLE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 49 Running: TestList TestList.Cycle: 1 TestList.Sample: 301 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 302 Block: 1 DelDur: NullDur: Word: ADMIRABLE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 189 Running: TestList TestList.Cycle: 1 TestList.Sample: 302 TrialCount: 80 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 641433 TestWord.DurationError: 99 TestWord.RTTime: 642851 TestWord.ACC: 1 TestWord.RT: 1418 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 642183 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 642852 Keyrelease: 643924 ResponseTime: 1073 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 303 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 303 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 304 Block: 1 DelDur: NullDur: Word: CREATIVE ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 146 Running: TestList TestList.Cycle: 1 TestList.Sample: 304 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 305 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 305 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 306 Block: 1 DelDur: NullDur: Word: DRAMATIC ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 197 Running: TestList TestList.Cycle: 1 TestList.Sample: 306 TrialCount: 81 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 650997 TestWord.DurationError: 99 TestWord.RTTime: 652076 TestWord.ACC: 1 TestWord.RT: 1079 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 651746 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 652076 Keyrelease: 653496 ResponseTime: 1420 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 307 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 307 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 308 Block: 1 DelDur: NullDur: Word: BOYISH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 60 Running: TestList TestList.Cycle: 1 TestList.Sample: 308 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 309 Block: 1 DelDur: NullDur: Word: HYPNOTIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 54 Running: TestList TestList.Cycle: 1 TestList.Sample: 309 TrialCount: 82 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 661060 TestWord.DurationError: 100 TestWord.RTTime: 661884 TestWord.ACC: 1 TestWord.RT: 824 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 661810 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 661884 Keyrelease: 663560 ResponseTime: 1676 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 310 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 310 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 311 Block: 1 DelDur: NullDur: Word: ETHICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 119 Running: TestList TestList.Cycle: 1 TestList.Sample: 311 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 312 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 312 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 313 Block: 1 DelDur: NullDur: PlaceList: 72 Word: SQUARE ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 313 TrialCount: 83 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 666142 TestWord.DurationError: 100 TestWord.RTTime: 668438 TestWord.ACC: 0 TestWord.RT: 2296 TestWord.RESP: z{-z} TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 666892 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 667244 Keyrelease: 668630 ResponseTime: 1386 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 314 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 314 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 315 Block: 1 DelDur: NullDur: PlaceList: 81 Word: AFFLUENT ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 315 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 316 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 316 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 317 Block: 1 DelDur: NullDur: Word: EXCLUSIVE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 94 Running: TestList TestList.Cycle: 1 TestList.Sample: 317 TrialCount: 84 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 672706 TestWord.DurationError: 100 TestWord.RTTime: 673516 TestWord.ACC: 1 TestWord.RT: 810 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 673456 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 673516 Keyrelease: 675203 ResponseTime: 1688 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 318 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 318 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 319 Block: 1 DelDur: NullDur: Word: DISORDERLY ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 159 Running: TestList TestList.Cycle: 1 TestList.Sample: 319 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 320 Block: 1 DelDur: NullDur: Word: PERSONABLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 52 Running: TestList TestList.Cycle: 1 TestList.Sample: 320 TrialCount: 85 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 681770 TestWord.DurationError: 100 TestWord.RTTime: 683204 TestWord.ACC: 1 TestWord.RT: 1434 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 682520 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 683204 Keyrelease: 684262 ResponseTime: 1058 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 321 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 321 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 322 Block: 1 DelDur: NullDur: Word: PLAIN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 71 Running: TestList TestList.Cycle: 1 TestList.Sample: 322 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 323 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 323 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 324 Block: 1 DelDur: NullDur: Word: PRECIOUS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 194 Running: TestList TestList.Cycle: 1 TestList.Sample: 324 TrialCount: 86 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 687335 TestWord.DurationError: 100 TestWord.RTTime: 688828 TestWord.ACC: 0 TestWord.RT: 1493 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 688085 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 688828 Keyrelease: 689834 ResponseTime: 1006 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 325 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 325 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 326 Block: 1 DelDur: NullDur: Word: VAIN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 190 Running: TestList TestList.Cycle: 1 TestList.Sample: 326 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 327 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 327 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 328 Block: 1 DelDur: NullDur: Word: PROMINENT ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 79 Running: TestList TestList.Cycle: 1 TestList.Sample: 328 TrialCount: 87 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 698915 TestWord.DurationError: 99 TestWord.RTTime: 700188 TestWord.ACC: 0 TestWord.RT: 1273 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 699665 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 700189 Keyrelease: 701406 ResponseTime: 1217 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 329 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 329 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 330 Block: 1 DelDur: NullDur: Word: SOGGY ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 65 Running: TestList TestList.Cycle: 1 TestList.Sample: 330 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 331 Block: 1 DelDur: NullDur: PlaceList: 60 Word: OUTDOOR ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 331 TrialCount: 88 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 703963 TestWord.DurationError: 100 TestWord.RTTime: 705284 TestWord.ACC: 1 TestWord.RT: 1321 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 704713 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 705285 Keyrelease: 706464 ResponseTime: 1179 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 332 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 332 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 333 Block: 1 DelDur: NullDur: PlaceList: 32 Word: FAIRY ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 333 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 334 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 334 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 335 Block: 1 DelDur: NullDur: Word: EXTINCT ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 29 Running: TestList TestList.Cycle: 1 TestList.Sample: 335 TrialCount: 89 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 713544 TestWord.DurationError: 99 TestWord.RTTime: 714251 TestWord.ACC: 1 TestWord.RT: 707 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 714293 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 714297 Keyrelease: 716036 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 336 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 336 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 337 Block: 1 DelDur: NullDur: Word: JAMAICAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 5 Running: TestList TestList.Cycle: 1 TestList.Sample: 337 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 338 Block: 1 DelDur: NullDur: Word: BLEAK ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 26 Running: TestList TestList.Cycle: 1 TestList.Sample: 338 TrialCount: 90 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 717592 TestWord.DurationError: 100 TestWord.RTTime: 718572 TestWord.ACC: 0 TestWord.RT: 980 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 718342 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 718573 Keyrelease: 720086 ResponseTime: 1513 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 339 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 339 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 340 Block: 1 DelDur: NullDur: Word: NEEDY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 35 Running: TestList TestList.Cycle: 1 TestList.Sample: 340 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 341 Block: 1 DelDur: NullDur: Word: AFLOAT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 163 Running: TestList TestList.Cycle: 1 TestList.Sample: 341 TrialCount: 91 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 725640 TestWord.DurationError: 99 TestWord.RTTime: 726717 TestWord.ACC: 1 TestWord.RT: 1077 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 726390 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 726717 Keyrelease: 728135 ResponseTime: 1418 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 342 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 342 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 343 Block: 1 DelDur: NullDur: Word: SWEET ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 47 Running: TestList TestList.Cycle: 1 TestList.Sample: 343 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 344 Block: 1 DelDur: NullDur: Word: DEFICIENT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 158 Running: TestList TestList.Cycle: 1 TestList.Sample: 344 TrialCount: 92 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 735703 TestWord.DurationError: 100 TestWord.RTTime: 736501 TestWord.ACC: 1 TestWord.RT: 798 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 736453 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 736501 Keyrelease: 738203 ResponseTime: 1702 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 345 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 345 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 346 Block: 1 DelDur: NullDur: Word: MILITARY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 125 Running: TestList TestList.Cycle: 1 TestList.Sample: 346 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 347 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 347 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 348 Block: 1 DelDur: NullDur: Word: ABYSMAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 182 Running: TestList TestList.Cycle: 1 TestList.Sample: 348 TrialCount: 93 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 741285 TestWord.DurationError: 99 TestWord.RTTime: 742325 TestWord.ACC: 0 TestWord.RT: 1040 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 742035 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 742325 Keyrelease: 743784 ResponseTime: 1459 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 349 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 349 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 350 Block: 1 DelDur: NullDur: Word: CHRISTIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 74 Running: TestList TestList.Cycle: 1 TestList.Sample: 350 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 351 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 351 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 352 Block: 1 DelDur: NullDur: Word: ZEALOUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 19 Running: TestList TestList.Cycle: 1 TestList.Sample: 352 TrialCount: 94 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 747366 TestWord.DurationError: 100 TestWord.RTTime: 748525 TestWord.ACC: 1 TestWord.RT: 1159 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 748116 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 748525 Keyrelease: 749865 ResponseTime: 1340 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 353 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 353 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 354 Block: 1 DelDur: NullDur: Word: ENDURABLE ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 91 Running: TestList TestList.Cycle: 1 TestList.Sample: 354 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 355 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 355 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 356 Block: 1 DelDur: NullDur: Word: BEAUTIFUL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 174 Running: TestList TestList.Cycle: 1 TestList.Sample: 356 TrialCount: 95 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 751948 TestWord.DurationError: 100 TestWord.RTTime: 752741 TestWord.ACC: 1 TestWord.RT: 793 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 752698 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 752741 Keyrelease: 754441 ResponseTime: 1700 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 357 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 357 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 358 Block: 1 DelDur: NullDur: Word: DWARFISH ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 151 Running: TestList TestList.Cycle: 1 TestList.Sample: 358 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 359 Block: 1 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 359 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 360 Block: 1 DelDur: NullDur: Word: BIBLICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 167 Running: TestList TestList.Cycle: 1 TestList.Sample: 360 TrialCount: 96 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 761012 TestWord.DurationError: 99 TestWord.RTTime: 761997 TestWord.ACC: 1 TestWord.RT: 985 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 761762 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 761997 Keyrelease: 763510 ResponseTime: 1513 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 361 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 361 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 362 Block: 1 DelDur: NullDur: Word: DELICATE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 19 Running: TestList TestList.Cycle: 1 TestList.Sample: 362 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 363 Block: 1 DelDur: NullDur: PlaceList: 78 Word: STYLISH ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 363 TrialCount: 97 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 765077 TestWord.DurationError: 100 TestWord.RTTime: 766093 TestWord.ACC: 1 TestWord.RT: 1016 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 765827 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 766093 Keyrelease: 767567 ResponseTime: 1474 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 364 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 364 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 365 Block: 1 DelDur: NullDur: PlaceList: 45 Word: VILE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 365 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 366 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 366 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 367 Block: 1 DelDur: NullDur: Word: DIDACTIC ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 1 Running: TestList TestList.Cycle: 1 TestList.Sample: 367 TrialCount: 98 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 771642 TestWord.DurationError: 100 TestWord.RTTime: 772469 TestWord.ACC: 1 TestWord.RT: 827 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 772392 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 772470 Keyrelease: 774143 ResponseTime: 1673 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 368 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 368 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 369 Block: 1 DelDur: NullDur: Word: CHEAP ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 193 Running: TestList TestList.Cycle: 1 TestList.Sample: 369 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 370 Block: 1 DelDur: NullDur: 4500 Running: TestList TestList.Cycle: 1 TestList.Sample: 370 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 371 Block: 1 DelDur: NullDur: Word: CULINARY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 126 Running: TestList TestList.Cycle: 1 TestList.Sample: 371 TrialCount: 99 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 780223 TestWord.DurationError: 99 TestWord.RTTime: 780976 TestWord.ACC: 1 TestWord.RT: 753 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 780972 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 780977 Keyrelease: 782715 ResponseTime: 1738 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 372 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 372 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 373 Block: 1 DelDur: NullDur: Word: ALIEN ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 116 Running: TestList TestList.Cycle: 1 TestList.Sample: 373 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 374 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 374 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 375 Block: 1 DelDur: NullDur: PlaceList: 54 Word: VICIOUS ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 375 TrialCount: 100 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 786287 TestWord.DurationError: 100 TestWord.RTTime: 787278 TestWord.ACC: 1 TestWord.RT: 991 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 787037 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 787278 Keyrelease: 788778 ResponseTime: 1500 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 376 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 376 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 377 Block: 1 DelDur: NullDur: PlaceList: 92 Word: TRIUMPHANT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 377 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 378 Block: 1 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 378 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: BreakProc TestList: 379 Block: 1 DelDur: NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 379 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 380 Block: 2 DelDur: NullDur: PlaceList: 77 Word: UNWOMANLY ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 380 TrialCount: 101 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 812446 TestWord.DurationError: 99 TestWord.RTTime: 813518 TestWord.ACC: 1 TestWord.RT: 1072 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 813196 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 813518 Keyrelease: 814936 ResponseTime: 1418 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 381 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 381 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 382 Block: 2 DelDur: NullDur: PlaceList: 29 Word: SMOOTH ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 382 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 383 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 383 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 384 Block: 2 DelDur: NullDur: Word: MYSTICAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 185 Running: TestList TestList.Cycle: 1 TestList.Sample: 384 TrialCount: 102 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 817011 TestWord.DurationError: 100 TestWord.RTTime: 818350 TestWord.ACC: 0 TestWord.RT: 1339 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 817761 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 818350 Keyrelease: 819503 ResponseTime: 1153 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 385 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 385 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 386 Block: 2 DelDur: NullDur: Word: GENTLE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 44 Running: TestList TestList.Cycle: 1 TestList.Sample: 386 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 387 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 387 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 388 Block: 2 DelDur: NullDur: Word: UNCULTURED ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 103 Running: TestList TestList.Cycle: 1 TestList.Sample: 388 TrialCount: 103 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 829074 TestWord.DurationError: 99 TestWord.RTTime: 829870 TestWord.ACC: 1 TestWord.RT: 796 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 829824 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 829870 Keyrelease: 831571 ResponseTime: 1701 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 389 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 389 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 390 Block: 2 DelDur: NullDur: Word: BOURGEOIS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 183 Running: TestList TestList.Cycle: 1 TestList.Sample: 390 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 391 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 391 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 392 Block: 2 DelDur: NullDur: PlaceList: 13 Word: AIRBORNE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 392 TrialCount: 104 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 834156 TestWord.DurationError: 99 TestWord.RTTime: 835478 TestWord.ACC: 1 TestWord.RT: 1322 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 834905 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 835478 Keyrelease: 836656 ResponseTime: 1178 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 393 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 393 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 394 Block: 2 DelDur: NullDur: PlaceList: 71 Word: HORRID ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 394 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 395 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 395 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 396 Block: 2 DelDur: NullDur: Word: DIPLOMATIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 69 Running: TestList TestList.Cycle: 1 TestList.Sample: 396 TrialCount: 105 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 844236 TestWord.DurationError: 99 TestWord.RTTime: 845062 TestWord.ACC: 1 TestWord.RT: 826 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 844986 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 845063 Keyrelease: 846724 ResponseTime: 1661 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 397 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 397 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 398 Block: 2 DelDur: NullDur: Word: UNCLEAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 58 Running: TestList TestList.Cycle: 1 TestList.Sample: 398 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 399 Block: 2 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 399 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 400 Block: 2 DelDur: NullDur: Word: UNKEPT ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 78 Running: TestList TestList.Cycle: 1 TestList.Sample: 400 TrialCount: 106 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 858298 TestWord.DurationError: 100 TestWord.RTTime: 859119 TestWord.ACC: 1 TestWord.RT: 821 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 859048 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 859119 Keyrelease: 860792 ResponseTime: 1673 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 401 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 401 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 402 Block: 2 DelDur: NullDur: Word: AGED ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 192 Running: TestList TestList.Cycle: 1 TestList.Sample: 402 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 403 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 403 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 404 Block: 2 DelDur: NullDur: Word: LUNAR ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 165 Running: TestList TestList.Cycle: 1 TestList.Sample: 404 TrialCount: 107 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 869861 TestWord.DurationError: 100 TestWord.RTTime: 870551 TestWord.ACC: 1 TestWord.RT: 690 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 870611 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 870615 Keyrelease: 872355 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 405 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 405 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 406 Block: 2 DelDur: NullDur: Word: SERBIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 26 Running: TestList TestList.Cycle: 1 TestList.Sample: 406 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 407 Block: 2 DelDur: NullDur: Word: HAWAIIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 37 Running: TestList TestList.Cycle: 1 TestList.Sample: 407 TrialCount: 108 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 874910 TestWord.DurationError: 99 TestWord.RTTime: 875583 TestWord.ACC: 1 TestWord.RT: 673 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 875659 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 875664 Keyrelease: 877405 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 408 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 408 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 409 Block: 2 DelDur: NullDur: Word: PATRIOTIC ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 164 Running: TestList TestList.Cycle: 1 TestList.Sample: 409 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 410 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 410 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 411 Block: 2 DelDur: NullDur: PlaceList: 24 Word: PUPAL ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 411 TrialCount: 109 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 885973 TestWord.DurationError: 99 TestWord.RTTime: 887655 TestWord.ACC: 1 TestWord.RT: 1682 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 886722 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 887655 Keyrelease: 888472 ResponseTime: 817 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 412 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 412 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 413 Block: 2 DelDur: NullDur: PlaceList: 15 Word: TIDY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 413 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 414 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 414 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 415 Block: 2 DelDur: NullDur: Word: FULL ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 15 Running: TestList TestList.Cycle: 1 TestList.Sample: 415 TrialCount: 110 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 892054 TestWord.DurationError: 100 TestWord.RTTime: 894335 TestWord.ACC: 0 TestWord.RT: 2281 TestWord.RESP: z{-z} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 892804 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 893351 Keyrelease: 894542 ResponseTime: 1191 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 416 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 416 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 417 Block: 2 DelDur: NullDur: Word: FLOWERY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 17 Running: TestList TestList.Cycle: 1 TestList.Sample: 417 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 418 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 418 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 419 Block: 2 DelDur: NullDur: Word: ITALIAN ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 96 Running: TestList TestList.Cycle: 1 TestList.Sample: 419 TrialCount: 111 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 897619 TestWord.DurationError: 99 TestWord.RTTime: 898607 TestWord.ACC: 1 TestWord.RT: 988 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 898369 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 898607 Keyrelease: 900107 ResponseTime: 1500 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 420 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 420 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 421 Block: 2 DelDur: NullDur: Word: FAMILIAR ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 48 Running: TestList TestList.Cycle: 1 TestList.Sample: 421 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 422 Block: 2 DelDur: NullDur: PlaceList: 47 Word: SICK ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 422 TrialCount: 112 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 901668 TestWord.DurationError: 99 TestWord.RTTime: 902983 TestWord.ACC: 0 TestWord.RT: 1315 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 902418 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 902983 Keyrelease: 904161 ResponseTime: 1178 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 423 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 423 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 424 Block: 2 DelDur: NullDur: PlaceList: 4 Word: DOMESTIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 424 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 425 Block: 2 DelDur: NullDur: Word: COLLEGIATE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 36 Running: TestList TestList.Cycle: 1 TestList.Sample: 425 TrialCount: 113 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 911715 TestWord.DurationError: 99 TestWord.RTTime: 912431 TestWord.ACC: 1 TestWord.RT: 716 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 912464 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 912469 Keyrelease: 914211 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 426 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 426 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 427 Block: 2 DelDur: NullDur: Word: ACROBATIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 56 Running: TestList TestList.Cycle: 1 TestList.Sample: 427 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 428 Block: 2 DelDur: NullDur: PlaceList: 98 Word: DEATHLY ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 428 TrialCount: 114 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 915780 TestWord.DurationError: 100 TestWord.RTTime: 916927 TestWord.ACC: 1 TestWord.RT: 1147 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 916530 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 916928 Keyrelease: 918278 ResponseTime: 1350 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 429 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 429 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 430 Block: 2 DelDur: NullDur: PlaceList: 20 Word: CONCRETE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 430 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 431 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 431 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 432 Block: 2 DelDur: NullDur: Word: AFLAME ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 184 Running: TestList TestList.Cycle: 1 TestList.Sample: 432 TrialCount: 115 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 922361 TestWord.DurationError: 100 TestWord.RTTime: 923688 TestWord.ACC: 0 TestWord.RT: 1327 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 923111 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 923688 Keyrelease: 924855 ResponseTime: 1167 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 433 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 433 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 434 Block: 2 DelDur: NullDur: Word: ROWDY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 8 Running: TestList TestList.Cycle: 1 TestList.Sample: 434 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 435 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 435 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 436 Block: 2 DelDur: NullDur: Word: ACCESSIBLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 61 Running: TestList TestList.Cycle: 1 TestList.Sample: 436 TrialCount: 116 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 926926 TestWord.DurationError: 100 TestWord.RTTime: 928280 TestWord.ACC: 0 TestWord.RT: 1354 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 927676 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 928280 Keyrelease: 929417 ResponseTime: 1137 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 437 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 437 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 438 Block: 2 DelDur: NullDur: Word: BUFF ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 110 Running: TestList TestList.Cycle: 1 TestList.Sample: 438 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 439 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 439 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 440 Block: 2 DelDur: NullDur: Word: SHOWY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 130 Running: TestList TestList.Cycle: 1 TestList.Sample: 440 TrialCount: 117 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 932991 TestWord.DurationError: 100 TestWord.RTTime: 933840 TestWord.ACC: 1 TestWord.RT: 849 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 933741 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 933840 Keyrelease: 935485 ResponseTime: 1645 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 441 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 441 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 442 Block: 2 DelDur: NullDur: Word: SANITARY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 35 Running: TestList TestList.Cycle: 1 TestList.Sample: 442 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 443 Block: 2 DelDur: NullDur: 6500 Running: TestList TestList.Cycle: 1 TestList.Sample: 443 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 444 Block: 2 DelDur: NullDur: Word: HISTORICAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 22 Running: TestList TestList.Cycle: 1 TestList.Sample: 444 TrialCount: 118 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 947553 TestWord.DurationError: 100 TestWord.RTTime: 948240 TestWord.ACC: 1 TestWord.RT: 687 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 948303 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 948307 Keyrelease: 950048 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 445 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 445 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 446 Block: 2 DelDur: NullDur: Word: TRASHY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 178 Running: TestList TestList.Cycle: 1 TestList.Sample: 446 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 447 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 447 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 448 Block: 2 DelDur: NullDur: PlaceList: 66 Word: BEASTLY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 448 TrialCount: 119 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 953618 TestWord.DurationError: 100 TestWord.RTTime: 954848 TestWord.ACC: 1 TestWord.RT: 1230 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 954368 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 954848 Keyrelease: 956107 ResponseTime: 1259 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 449 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 449 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 450 Block: 2 DelDur: NullDur: PlaceList: 8 Word: WARM ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 450 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 451 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 451 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 452 Block: 2 DelDur: NullDur: PlaceList: 49 Word: EMOTIONAL ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 452 TrialCount: 120 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 960183 TestWord.DurationError: 99 TestWord.RTTime: 961128 TestWord.ACC: 1 TestWord.RT: 945 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 960932 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 961128 Keyrelease: 962683 ResponseTime: 1555 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 453 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 453 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 454 Block: 2 DelDur: NullDur: PlaceList: 3 Word: CLIMACTIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 454 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 455 Block: 2 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 455 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 456 Block: 2 DelDur: NullDur: Word: ACOUSTIC ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 29 Running: TestList TestList.Cycle: 1 TestList.Sample: 456 TrialCount: 121 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 968263 TestWord.DurationError: 100 TestWord.RTTime: 969856 TestWord.ACC: 1 TestWord.RT: 1593 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 969013 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 969856 Keyrelease: 970754 ResponseTime: 899 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 457 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 457 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 458 Block: 2 DelDur: NullDur: Word: BRILLIANT ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 62 Running: TestList TestList.Cycle: 1 TestList.Sample: 458 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 459 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 459 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 460 Block: 2 DelDur: NullDur: Word: ADOPTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 152 Running: TestList TestList.Cycle: 1 TestList.Sample: 460 TrialCount: 122 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 978827 TestWord.DurationError: 99 TestWord.RTTime: 980648 TestWord.ACC: 1 TestWord.RT: 1821 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 979577 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 980649 Keyrelease: 981318 ResponseTime: 669 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 461 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 461 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 462 Block: 2 DelDur: NullDur: Word: DELICIOUS ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 109 Running: TestList TestList.Cycle: 1 TestList.Sample: 462 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 463 Block: 2 DelDur: NullDur: Word: BANKRUPT ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 14 Running: TestList TestList.Cycle: 1 TestList.Sample: 463 TrialCount: 123 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 987874 TestWord.DurationError: 99 TestWord.RTTime: 990184 TestWord.ACC: 0 TestWord.RT: 2310 TestWord.RESP: 3{-3} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 988624 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 989761 Keyrelease: 990362 ResponseTime: 601 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 464 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 464 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 465 Block: 2 DelDur: NullDur: Word: SUBTLE ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 11 Running: TestList TestList.Cycle: 1 TestList.Sample: 465 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 466 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 466 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 467 Block: 2 DelDur: NullDur: Word: BRIDAL ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 12 Running: TestList TestList.Cycle: 1 TestList.Sample: 467 TrialCount: 124 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 999437 TestWord.DurationError: 99 TestWord.RTTime: 1001689 TestWord.ACC: 0 TestWord.RT: 2252 TestWord.RESP: x{-x} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1000187 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1000481 Keyrelease: 1001925 ResponseTime: 1444 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 468 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 468 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 469 Block: 2 DelDur: NullDur: Word: PERSIAN ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 88 Running: TestList TestList.Cycle: 1 TestList.Sample: 469 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 470 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 470 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 471 Block: 2 DelDur: NullDur: Word: FLAT ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 72 Running: TestList TestList.Cycle: 1 TestList.Sample: 471 TrialCount: 125 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1011000 TestWord.DurationError: 99 TestWord.RTTime: 1012281 TestWord.ACC: 1 TestWord.RT: 1281 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1011750 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1012281 Keyrelease: 1013499 ResponseTime: 1218 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 472 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 472 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 473 Block: 2 DelDur: NullDur: Word: YIDDISH ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 85 Running: TestList TestList.Cycle: 1 TestList.Sample: 473 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 474 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 474 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 475 Block: 2 DelDur: NullDur: Word: DRIZZLY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 30 Running: TestList TestList.Cycle: 1 TestList.Sample: 475 TrialCount: 126 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1016582 TestWord.DurationError: 99 TestWord.RTTime: 1017681 TestWord.ACC: 1 TestWord.RT: 1099 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1017331 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1017681 Keyrelease: 1019075 ResponseTime: 1394 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 476 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 476 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 477 Block: 2 DelDur: NullDur: Word: POSTAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 187 Running: TestList TestList.Cycle: 1 TestList.Sample: 477 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 478 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 478 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 479 Block: 2 DelDur: NullDur: Word: MALICIOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 82 Running: TestList TestList.Cycle: 1 TestList.Sample: 479 TrialCount: 127 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1027145 TestWord.DurationError: 99 TestWord.RTTime: 1028257 TestWord.ACC: 1 TestWord.RT: 1112 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1027895 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1028257 Keyrelease: 1029635 ResponseTime: 1378 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 480 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 480 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 481 Block: 2 DelDur: NullDur: Word: ARTIFICIAL ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 67 Running: TestList TestList.Cycle: 1 TestList.Sample: 481 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 482 Block: 2 DelDur: NullDur: Word: CARIBBEAN ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 137 Running: TestList TestList.Cycle: 1 TestList.Sample: 482 TrialCount: 128 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1031194 TestWord.DurationError: 99 TestWord.RTTime: 1031993 TestWord.ACC: 1 TestWord.RT: 799 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1031943 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1031993 Keyrelease: 1033693 ResponseTime: 1700 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 483 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 483 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 484 Block: 2 DelDur: NullDur: Word: ARCTIC ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 10 Running: TestList TestList.Cycle: 1 TestList.Sample: 484 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 485 Block: 2 DelDur: NullDur: Word: DULL ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 34 Running: TestList TestList.Cycle: 1 TestList.Sample: 485 TrialCount: 129 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1035259 TestWord.DurationError: 99 TestWord.RTTime: 1036649 TestWord.ACC: 0 TestWord.RT: 1390 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1036009 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1036649 Keyrelease: 1037747 ResponseTime: 1098 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 486 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 486 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 487 Block: 2 DelDur: NullDur: Word: SHALLOW ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 16 Running: TestList TestList.Cycle: 1 TestList.Sample: 487 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 488 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 488 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 489 Block: 2 DelDur: NullDur: Word: IMMIGRANT ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 39 Running: TestList TestList.Cycle: 1 TestList.Sample: 489 TrialCount: 130 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1040324 TestWord.DurationError: 100 TestWord.RTTime: 1041169 TestWord.ACC: 0 TestWord.RT: 845 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1041074 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1041169 Keyrelease: 1042818 ResponseTime: 1649 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 490 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 490 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 491 Block: 2 DelDur: NullDur: Word: FAST ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 59 Running: TestList TestList.Cycle: 1 TestList.Sample: 491 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 492 Block: 2 DelDur: NullDur: Word: RUDE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 12 Running: TestList TestList.Cycle: 1 TestList.Sample: 492 TrialCount: 131 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1050371 TestWord.DurationError: 99 TestWord.RTTime: 1051145 TestWord.ACC: 1 TestWord.RT: 774 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1051121 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1051146 Keyrelease: 1052872 ResponseTime: 1726 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 493 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 493 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 494 Block: 2 DelDur: NullDur: Word: FUTURE ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 150 Running: TestList TestList.Cycle: 1 TestList.Sample: 494 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 495 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 495 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 496 Block: 2 DelDur: NullDur: Word: EVIL ListOrigin: List1B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 100 Running: TestList TestList.Cycle: 1 TestList.Sample: 496 TrialCount: 132 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1060951 TestWord.DurationError: 99 TestWord.RTTime: 1062545 TestWord.ACC: 0 TestWord.RT: 1594 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1061701 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1062546 Keyrelease: 1063444 ResponseTime: 898 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 497 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 497 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 498 Block: 2 DelDur: NullDur: Word: FABULOUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 48 Running: TestList TestList.Cycle: 1 TestList.Sample: 498 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 499 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 499 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 500 Block: 2 DelDur: NullDur: Word: FORMAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 121 Running: TestList TestList.Cycle: 1 TestList.Sample: 500 TrialCount: 133 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1066516 TestWord.DurationError: 99 TestWord.RTTime: 1067305 TestWord.ACC: 1 TestWord.RT: 789 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1067266 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1067306 Keyrelease: 1069007 ResponseTime: 1701 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 501 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 501 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 502 Block: 2 DelDur: NullDur: Word: COSMIC ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 142 Running: TestList TestList.Cycle: 1 TestList.Sample: 502 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 503 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 503 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 504 Block: 2 DelDur: NullDur: Word: VIVID ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 41 Running: TestList TestList.Cycle: 1 TestList.Sample: 504 TrialCount: 134 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1075080 TestWord.DurationError: 99 TestWord.RTTime: 1076906 TestWord.ACC: 0 TestWord.RT: 1826 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1075830 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1076906 Keyrelease: 1077575 ResponseTime: 669 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 505 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 505 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 506 Block: 2 DelDur: NullDur: Word: SECULAR ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 47 Running: TestList TestList.Cycle: 1 TestList.Sample: 506 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 507 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 507 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 508 Block: 2 DelDur: NullDur: PlaceList: 9 Word: CLEVER ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 508 TrialCount: 135 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1084644 TestWord.DurationError: 99 TestWord.RTTime: 1085818 TestWord.ACC: 1 TestWord.RT: 1174 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1085393 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1085818 Keyrelease: 1087142 ResponseTime: 1325 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 509 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 509 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 510 Block: 2 DelDur: NullDur: PlaceList: 82 Word: PLACID ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 510 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 511 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 511 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 512 Block: 2 DelDur: NullDur: Word: HOMELY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 39 Running: TestList TestList.Cycle: 1 TestList.Sample: 512 TrialCount: 136 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1094224 TestWord.DurationError: 99 TestWord.RTTime: 1095226 TestWord.ACC: 1 TestWord.RT: 1002 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1094974 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1095226 Keyrelease: 1096714 ResponseTime: 1488 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 513 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 513 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 514 Block: 2 DelDur: NullDur: Word: EGYPTIAN ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 161 Running: TestList TestList.Cycle: 1 TestList.Sample: 514 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 515 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 515 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 516 Block: 2 DelDur: NullDur: Word: TYPICAL ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 4 Running: TestList TestList.Cycle: 1 TestList.Sample: 516 TrialCount: 137 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1105787 TestWord.DurationError: 99 TestWord.RTTime: 1107018 TestWord.ACC: 1 TestWord.RT: 1231 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1106537 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1107018 Keyrelease: 1108278 ResponseTime: 1260 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 517 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 517 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 518 Block: 2 DelDur: NullDur: Word: JUVENILE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 36 Running: TestList TestList.Cycle: 1 TestList.Sample: 518 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 519 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 519 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 520 Block: 2 DelDur: NullDur: Word: INTACT ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 53 Running: TestList TestList.Cycle: 1 TestList.Sample: 520 TrialCount: 138 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1116850 TestWord.DurationError: 99 TestWord.RTTime: 1119314 TestWord.ACC: 0 TestWord.RT: 2464 TestWord.RESP: 3x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1117600 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1117605 Keyrelease: 1119338 ResponseTime: 1733 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 521 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 521 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 522 Block: 2 DelDur: NullDur: Word: RIGHTEOUS ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 13 Running: TestList TestList.Cycle: 1 TestList.Sample: 522 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 523 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 523 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 524 Block: 2 DelDur: NullDur: Word: GROTESQUE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 64 Running: TestList TestList.Cycle: 1 TestList.Sample: 524 TrialCount: 139 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1122415 TestWord.DurationError: 99 TestWord.RTTime: 1124714 TestWord.ACC: 1 TestWord.RT: 2299 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1123165 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1124715 Keyrelease: 1124916 ResponseTime: 201 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 525 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 525 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 526 Block: 2 DelDur: NullDur: Word: ANGRY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 45 Running: TestList TestList.Cycle: 1 TestList.Sample: 526 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 527 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 527 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 528 Block: 2 DelDur: NullDur: Word: PECULIAR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 18 Running: TestList TestList.Cycle: 1 TestList.Sample: 528 TrialCount: 140 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1128496 TestWord.DurationError: 100 TestWord.RTTime: 1130586 TestWord.ACC: 1 TestWord.RT: 2090 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1129246 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1130587 Keyrelease: 1130989 ResponseTime: 402 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 529 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 529 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 530 Block: 2 DelDur: NullDur: Word: SEASONAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 14 Running: TestList TestList.Cycle: 1 TestList.Sample: 530 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 531 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 531 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 532 Block: 2 DelDur: NullDur: Word: POMPOUS ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 49 Running: TestList TestList.Cycle: 1 TestList.Sample: 532 TrialCount: 141 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1139060 TestWord.DurationError: 99 TestWord.RTTime: 1140379 TestWord.ACC: 1 TestWord.RT: 1319 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1139809 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1140379 Keyrelease: 1141557 ResponseTime: 1178 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 533 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 533 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 534 Block: 2 DelDur: NullDur: Word: GRASSY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 1 Running: TestList TestList.Cycle: 1 TestList.Sample: 534 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 535 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 535 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 536 Block: 2 DelDur: NullDur: Word: VALUABLE ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 84 Running: TestList TestList.Cycle: 1 TestList.Sample: 536 TrialCount: 142 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1143642 TestWord.DurationError: 99 TestWord.RTTime: 1144843 TestWord.ACC: 1 TestWord.RT: 1201 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1144391 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1144843 Keyrelease: 1146142 ResponseTime: 1299 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 537 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 537 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 538 Block: 2 DelDur: NullDur: Word: BROWN ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 23 Running: TestList TestList.Cycle: 1 TestList.Sample: 538 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 539 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 539 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 540 Block: 2 DelDur: NullDur: PlaceList: 67 Word: RIGID ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 540 TrialCount: 143 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1150223 TestWord.DurationError: 99 TestWord.RTTime: 1151083 TestWord.ACC: 1 TestWord.RT: 860 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1150973 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1151083 Keyrelease: 1152714 ResponseTime: 1631 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 541 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 541 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 542 Block: 2 DelDur: NullDur: PlaceList: 69 Word: ABUSIVE ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 542 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 543 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 543 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 544 Block: 2 DelDur: NullDur: PlaceList: 84 Word: ALONE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 544 TrialCount: 144 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1155288 TestWord.DurationError: 99 TestWord.RTTime: 1156155 TestWord.ACC: 1 TestWord.RT: 867 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1156038 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1156155 Keyrelease: 1157776 ResponseTime: 1622 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 545 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 545 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 546 Block: 2 DelDur: NullDur: PlaceList: 17 Word: DORMANT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 546 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 547 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 547 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 548 Block: 2 DelDur: NullDur: PlaceList: 5 Word: REPULSIVE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 548 TrialCount: 145 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1161353 TestWord.DurationError: 99 TestWord.RTTime: 1162435 TestWord.ACC: 1 TestWord.RT: 1082 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1162102 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1162435 Keyrelease: 1163853 ResponseTime: 1418 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 549 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 549 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 550 Block: 2 DelDur: NullDur: PlaceList: 57 Word: STERILE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 550 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 551 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 551 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 552 Block: 2 DelDur: NullDur: Word: WESTERN ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 85 Running: TestList TestList.Cycle: 1 TestList.Sample: 552 TrialCount: 146 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1173932 TestWord.DurationError: 100 TestWord.RTTime: 1175155 TestWord.ACC: 1 TestWord.RT: 1223 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1174682 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1175155 Keyrelease: 1176426 ResponseTime: 1271 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 553 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 553 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 554 Block: 2 DelDur: NullDur: Word: NERVOUS ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 76 Running: TestList TestList.Cycle: 1 TestList.Sample: 554 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 555 Block: 2 DelDur: NullDur: Word: CAUCASIAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 4 Running: TestList TestList.Cycle: 1 TestList.Sample: 555 TrialCount: 147 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1181980 TestWord.DurationError: 99 TestWord.RTTime: 1182771 TestWord.ACC: 1 TestWord.RT: 791 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1182729 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1182771 Keyrelease: 1184470 ResponseTime: 1699 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 556 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 556 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 557 Block: 2 DelDur: NullDur: Word: DISASTROUS ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 42 Running: TestList TestList.Cycle: 1 TestList.Sample: 557 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 558 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 558 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 559 Block: 2 DelDur: NullDur: PlaceList: 94 Word: ANGULAR ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 559 TrialCount: 148 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1187045 TestWord.DurationError: 99 TestWord.RTTime: 1188043 TestWord.ACC: 1 TestWord.RT: 998 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1187794 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1188043 Keyrelease: 1189542 ResponseTime: 1498 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 560 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 560 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 561 Block: 2 DelDur: NullDur: PlaceList: 62 Word: ILLUSORY ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 561 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 562 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 562 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 563 Block: 2 DelDur: NullDur: Word: UNREFINED ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 57 Running: TestList TestList.Cycle: 1 TestList.Sample: 563 TrialCount: 149 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1196625 TestWord.DurationError: 99 TestWord.RTTime: 1197899 TestWord.ACC: 1 TestWord.RT: 1274 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1197375 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1197900 Keyrelease: 1199118 ResponseTime: 1219 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 564 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 564 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 565 Block: 2 DelDur: NullDur: Word: FILTHY ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 40 Running: TestList TestList.Cycle: 1 TestList.Sample: 565 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 566 Block: 2 DelDur: NullDur: 7500 Running: TestList TestList.Cycle: 1 TestList.Sample: 566 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 567 Block: 2 DelDur: NullDur: Word: OMNIPOTENT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 102 Running: TestList TestList.Cycle: 1 TestList.Sample: 567 TrialCount: 150 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1208188 TestWord.DurationError: 99 TestWord.RTTime: 1209763 TestWord.ACC: 0 TestWord.RT: 1575 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1208938 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1209764 Keyrelease: 1210687 ResponseTime: 923 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 568 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 568 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 569 Block: 2 DelDur: NullDur: Word: CLOSE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 200 Running: TestList TestList.Cycle: 1 TestList.Sample: 569 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 570 Block: 2 DelDur: NullDur: Word: URBAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 70 Running: TestList TestList.Cycle: 1 TestList.Sample: 570 TrialCount: 151 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1216252 TestWord.DurationError: 100 TestWord.RTTime: 1217668 TestWord.ACC: 1 TestWord.RT: 1416 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1217002 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1217668 Keyrelease: 1218741 ResponseTime: 1073 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 571 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 571 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 572 Block: 2 DelDur: NullDur: Word: OUTRAGEOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 131 Running: TestList TestList.Cycle: 1 TestList.Sample: 572 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 573 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 573 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 574 Block: 2 DelDur: NullDur: Word: NORMAL ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 10 Running: TestList TestList.Cycle: 1 TestList.Sample: 574 TrialCount: 152 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1221817 TestWord.DurationError: 99 TestWord.RTTime: 1223108 TestWord.ACC: 1 TestWord.RT: 1291 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1222567 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1223108 Keyrelease: 1224313 ResponseTime: 1205 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 575 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 575 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 576 Block: 2 DelDur: NullDur: Word: ALOOF ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 89 Running: TestList TestList.Cycle: 1 TestList.Sample: 576 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 577 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 577 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 578 Block: 2 DelDur: NullDur: Word: SHABBY ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 94 Running: TestList TestList.Cycle: 1 TestList.Sample: 578 TrialCount: 153 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1226899 TestWord.DurationError: 99 TestWord.RTTime: 1228340 TestWord.ACC: 0 TestWord.RT: 1441 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1227648 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1228340 Keyrelease: 1229398 ResponseTime: 1058 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 579 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 579 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 580 Block: 2 DelDur: NullDur: Word: MORTAL ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 68 Running: TestList TestList.Cycle: 1 TestList.Sample: 580 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 581 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 581 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 582 Block: 2 DelDur: NullDur: Word: OBSCURE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 92 Running: TestList TestList.Cycle: 1 TestList.Sample: 582 TrialCount: 154 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1231980 TestWord.DurationError: 100 TestWord.RTTime: 1232868 TestWord.ACC: 1 TestWord.RT: 888 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1232730 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1232868 Keyrelease: 1234474 ResponseTime: 1606 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 583 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 583 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 584 Block: 2 DelDur: NullDur: Word: SOUTHERN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 199 Running: TestList TestList.Cycle: 1 TestList.Sample: 584 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 585 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 585 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 586 Block: 2 DelDur: NullDur: Word: FANCY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 66 Running: TestList TestList.Cycle: 1 TestList.Sample: 586 TrialCount: 155 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1243044 TestWord.DurationError: 99 TestWord.RTTime: 1243588 TestWord.ACC: 1 TestWord.RT: 544 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1243793 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1243797 Keyrelease: 1245537 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 587 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 587 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 588 Block: 2 DelDur: NullDur: Word: QUIET ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 148 Running: TestList TestList.Cycle: 1 TestList.Sample: 588 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 589 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 589 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 590 Block: 2 DelDur: NullDur: Word: SKETCHY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 128 Running: TestList TestList.Cycle: 1 TestList.Sample: 590 TrialCount: 156 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1250608 TestWord.DurationError: 99 TestWord.RTTime: 1251140 TestWord.ACC: 1 TestWord.RT: 532 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1251358 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1251362 Keyrelease: 1253101 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 591 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 591 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 592 Block: 2 DelDur: NullDur: Word: POLITICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 175 Running: TestList TestList.Cycle: 1 TestList.Sample: 592 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 593 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 593 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 594 Block: 2 DelDur: NullDur: PlaceList: 38 Word: BUOYANT ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 594 TrialCount: 157 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1255173 TestWord.DurationError: 100 TestWord.RTTime: 1256132 TestWord.ACC: 0 TestWord.RT: 959 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1255923 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1256132 Keyrelease: 1257672 ResponseTime: 1540 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 595 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 595 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 596 Block: 2 DelDur: NullDur: PlaceList: 90 Word: IMPURE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 596 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 597 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 597 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 598 Block: 2 DelDur: NullDur: PlaceList: 89 Word: ABUNDANT ListOrigin: List2B Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 598 TrialCount: 158 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1264753 TestWord.DurationError: 100 TestWord.RTTime: 1265876 TestWord.ACC: 0 TestWord.RT: 1123 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1265503 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1265877 Keyrelease: 1267244 ResponseTime: 1367 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 599 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 599 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 600 Block: 2 DelDur: NullDur: PlaceList: 51 Word: FISHY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 600 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 601 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 601 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 602 Block: 2 DelDur: NullDur: PlaceList: 41 Word: ALPINE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 602 TrialCount: 159 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1272318 TestWord.DurationError: 99 TestWord.RTTime: 1273356 TestWord.ACC: 1 TestWord.RT: 1038 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1273068 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1273357 Keyrelease: 1274816 ResponseTime: 1459 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 603 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 603 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 604 Block: 2 DelDur: NullDur: PlaceList: 70 Word: HOT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 604 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 605 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 605 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 606 Block: 2 DelDur: NullDur: Word: SOPHISTIC ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 127 Running: TestList TestList.Cycle: 1 TestList.Sample: 606 TrialCount: 160 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1282898 TestWord.DurationError: 99 TestWord.RTTime: 1283781 TestWord.ACC: 1 TestWord.RT: 883 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1283648 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1283781 Keyrelease: 1285388 ResponseTime: 1607 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 607 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 607 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 608 Block: 2 DelDur: NullDur: Word: MUSCULAR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 17 Running: TestList TestList.Cycle: 1 TestList.Sample: 608 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 609 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 609 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 610 Block: 2 DelDur: NullDur: Word: ABOMINABLE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 76 Running: TestList TestList.Cycle: 1 TestList.Sample: 610 TrialCount: 161 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1288963 TestWord.DurationError: 99 TestWord.RTTime: 1290141 TestWord.ACC: 0 TestWord.RT: 1178 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1289712 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1290141 Keyrelease: 1291452 ResponseTime: 1311 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 611 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 611 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 612 Block: 2 DelDur: NullDur: Word: INTENSE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 195 Running: TestList TestList.Cycle: 1 TestList.Sample: 612 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 613 Block: 2 DelDur: NullDur: PlaceList: 25 Word: CHEESY ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 613 TrialCount: 162 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1293011 TestWord.DurationError: 100 TestWord.RTTime: 1294461 TestWord.ACC: 0 TestWord.RT: 1450 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1293761 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1294461 Keyrelease: 1295505 ResponseTime: 1044 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 614 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 614 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 615 Block: 2 DelDur: NullDur: PlaceList: 64 Word: GEOMETRIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 615 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 616 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 616 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 617 Block: 2 DelDur: NullDur: Word: ALBANIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 32 Running: TestList TestList.Cycle: 1 TestList.Sample: 617 TrialCount: 163 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1298576 TestWord.DurationError: 100 TestWord.RTTime: 1299493 TestWord.ACC: 1 TestWord.RT: 917 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1299326 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1299493 Keyrelease: 1301072 ResponseTime: 1579 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 618 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 618 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 619 Block: 2 DelDur: NullDur: Word: DEAD ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 25 Running: TestList TestList.Cycle: 1 TestList.Sample: 619 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 620 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 620 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 621 Block: 2 DelDur: NullDur: Word: HUMOROUS ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 20 Running: TestList TestList.Cycle: 1 TestList.Sample: 621 TrialCount: 164 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1303158 TestWord.DurationError: 99 TestWord.RTTime: 1304317 TestWord.ACC: 1 TestWord.RT: 1159 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1303908 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1304317 Keyrelease: 1305657 ResponseTime: 1340 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 622 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 622 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 623 Block: 2 DelDur: NullDur: Word: MUNDANE ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 46 Running: TestList TestList.Cycle: 1 TestList.Sample: 623 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 624 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 624 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 625 Block: 2 DelDur: NullDur: PlaceList: 88 Word: ATHLETIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 625 TrialCount: 165 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1313238 TestWord.DurationError: 100 TestWord.RTTime: 1314517 TestWord.ACC: 1 TestWord.RT: 1279 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1313988 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1314517 Keyrelease: 1315734 ResponseTime: 1217 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 626 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 626 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 627 Block: 2 DelDur: NullDur: PlaceList: 43 Word: CLOUDY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 627 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 628 Block: 2 DelDur: NullDur: 8000 Running: TestList TestList.Cycle: 1 TestList.Sample: 628 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 629 Block: 2 DelDur: NullDur: Word: RIOTOUS ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 107 Running: TestList TestList.Cycle: 1 TestList.Sample: 629 TrialCount: 166 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1331316 TestWord.DurationError: 100 TestWord.RTTime: 1332157 TestWord.ACC: 1 TestWord.RT: 841 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1332066 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1332157 Keyrelease: 1333816 ResponseTime: 1658 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 630 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 630 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 631 Block: 2 DelDur: NullDur: Word: DUMPY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 53 Running: TestList TestList.Cycle: 1 TestList.Sample: 631 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 632 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 632 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 633 Block: 2 DelDur: NullDur: Word: DEVILISH ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 73 Running: TestList TestList.Cycle: 1 TestList.Sample: 633 TrialCount: 167 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1342396 TestWord.DurationError: 99 TestWord.RTTime: 1343637 TestWord.ACC: 1 TestWord.RT: 1241 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1343145 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1343638 Keyrelease: 1344897 ResponseTime: 1259 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 634 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 634 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 635 Block: 2 DelDur: NullDur: Word: CANADIAN ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 33 Running: TestList TestList.Cycle: 1 TestList.Sample: 635 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 636 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 636 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 637 Block: 2 DelDur: NullDur: PlaceList: 2 Word: LIQUID ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 637 TrialCount: 168 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1346978 TestWord.DurationError: 99 TestWord.RTTime: 1347797 TestWord.ACC: 1 TestWord.RT: 819 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1347727 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1347798 Keyrelease: 1349473 ResponseTime: 1675 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 638 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 638 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 639 Block: 2 DelDur: NullDur: PlaceList: 83 Word: HANDSOME ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 639 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 640 Block: 2 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 640 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 641 Block: 2 DelDur: NullDur: Word: CHORAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 156 Running: TestList TestList.Cycle: 1 TestList.Sample: 641 TrialCount: 169 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1356041 TestWord.DurationError: 100 TestWord.RTTime: 1356774 TestWord.ACC: 1 TestWord.RT: 733 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1356791 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1356795 Keyrelease: 1358536 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 642 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 642 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 643 Block: 2 DelDur: NullDur: Word: MONUMENTAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 186 Running: TestList TestList.Cycle: 1 TestList.Sample: 643 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 644 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 644 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 645 Block: 2 DelDur: NullDur: PlaceList: 26 Word: SPECIAL ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 645 TrialCount: 170 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1365105 TestWord.DurationError: 100 TestWord.RTTime: 1366134 TestWord.ACC: 1 TestWord.RT: 1029 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1365855 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1366134 Keyrelease: 1367594 ResponseTime: 1460 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 646 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 646 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 647 Block: 2 DelDur: NullDur: PlaceList: 58 Word: AROMATIC ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 647 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 648 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 648 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 649 Block: 2 DelDur: NullDur: Word: PROUD ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 196 Running: TestList TestList.Cycle: 1 TestList.Sample: 649 TrialCount: 171 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1375169 TestWord.DurationError: 99 TestWord.RTTime: 1376190 TestWord.ACC: 0 TestWord.RT: 1021 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1375918 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1376190 Keyrelease: 1377662 ResponseTime: 1472 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 650 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 650 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 651 Block: 2 DelDur: NullDur: Word: TUNISIAN ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 134 Running: TestList TestList.Cycle: 1 TestList.Sample: 651 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 652 Block: 2 DelDur: NullDur: Word: ARABIC ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 88 Running: TestList TestList.Cycle: 1 TestList.Sample: 652 TrialCount: 172 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1379217 TestWord.DurationError: 100 TestWord.RTTime: 1380462 TestWord.ACC: 0 TestWord.RT: 1245 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1379967 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1380462 Keyrelease: 1381707 ResponseTime: 1245 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 653 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 653 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 654 Block: 2 DelDur: NullDur: Word: RAINY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 111 Running: TestList TestList.Cycle: 1 TestList.Sample: 654 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 655 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 655 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 656 Block: 2 DelDur: NullDur: Word: FEDERAL ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 92 Running: TestList TestList.Cycle: 1 TestList.Sample: 656 TrialCount: 173 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1388281 TestWord.DurationError: 100 TestWord.RTTime: 1388910 TestWord.ACC: 0 TestWord.RT: 629 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1389031 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1389035 Keyrelease: 1390775 ResponseTime: 1740 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 657 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 657 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 658 Block: 2 DelDur: NullDur: Word: BROTHERLY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 90 Running: TestList TestList.Cycle: 1 TestList.Sample: 658 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 659 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 659 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 660 Block: 2 DelDur: NullDur: Word: COURAGEOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 83 Running: TestList TestList.Cycle: 1 TestList.Sample: 660 TrialCount: 174 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1394346 TestWord.DurationError: 99 TestWord.RTTime: 1395198 TestWord.ACC: 1 TestWord.RT: 852 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1395096 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1395198 Keyrelease: 1396846 ResponseTime: 1648 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 661 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 661 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 662 Block: 2 DelDur: NullDur: Word: SAMOAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 3 Running: TestList TestList.Cycle: 1 TestList.Sample: 662 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 663 Block: 2 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 663 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 664 Block: 2 DelDur: NullDur: Word: DESOLATE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 62 Running: TestList TestList.Cycle: 1 TestList.Sample: 664 TrialCount: 175 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1401927 TestWord.DurationError: 99 TestWord.RTTime: 1402758 TestWord.ACC: 1 TestWord.RT: 831 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1402677 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1402758 Keyrelease: 1404418 ResponseTime: 1659 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 665 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 665 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 666 Block: 2 DelDur: NullDur: Word: WICKED ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 90 Running: TestList TestList.Cycle: 1 TestList.Sample: 666 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 667 Block: 2 DelDur: NullDur: PlaceList: 96 Word: GOLDEN ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 667 TrialCount: 176 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1406975 TestWord.DurationError: 100 TestWord.RTTime: 1407974 TestWord.ACC: 1 TestWord.RT: 999 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1407725 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1407975 Keyrelease: 1409473 ResponseTime: 1498 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 668 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 668 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 669 Block: 2 DelDur: NullDur: PlaceList: 28 Word: HOSPITABLE ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 669 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 670 Block: 2 DelDur: NullDur: Word: FUZZY ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 52 Running: TestList TestList.Cycle: 1 TestList.Sample: 670 TrialCount: 177 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1411041 TestWord.DurationError: 99 TestWord.RTTime: 1412118 TestWord.ACC: 1 TestWord.RT: 1077 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1411791 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1412119 Keyrelease: 1413540 ResponseTime: 1421 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 671 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 671 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 672 Block: 2 DelDur: NullDur: Word: WELCOME ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 60 Running: TestList TestList.Cycle: 1 TestList.Sample: 672 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 673 Block: 2 DelDur: NullDur: 5500 Running: TestList TestList.Cycle: 1 TestList.Sample: 673 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 674 Block: 2 DelDur: NullDur: Word: RAW ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 95 Running: TestList TestList.Cycle: 1 TestList.Sample: 674 TrialCount: 178 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1424620 TestWord.DurationError: 99 TestWord.RTTime: 1425239 TestWord.ACC: 1 TestWord.RT: 619 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1425370 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1425373 Keyrelease: 1427113 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 675 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 675 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 676 Block: 2 DelDur: NullDur: Word: ADULT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 118 Running: TestList TestList.Cycle: 1 TestList.Sample: 676 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 677 Block: 2 DelDur: NullDur: PlaceList: 52 Word: SCHOLASTIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 677 TrialCount: 179 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1433667 TestWord.DurationError: 99 TestWord.RTTime: 1434399 TestWord.ACC: 0 TestWord.RT: 732 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1434417 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1434421 Keyrelease: 1436161 ResponseTime: 1741 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 678 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 678 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 679 Block: 2 DelDur: NullDur: PlaceList: 59 Word: OPPRESSIVE ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 679 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 680 Block: 2 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 680 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 681 Block: 2 DelDur: NullDur: Word: HILARIOUS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 181 Running: TestList TestList.Cycle: 1 TestList.Sample: 681 TrialCount: 180 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1443730 TestWord.DurationError: 100 TestWord.RTTime: 1444527 TestWord.ACC: 1 TestWord.RT: 797 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1444480 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1444527 Keyrelease: 1446225 ResponseTime: 1698 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 682 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 682 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 683 Block: 2 DelDur: NullDur: Word: DOCILE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 34 Running: TestList TestList.Cycle: 1 TestList.Sample: 683 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 684 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 684 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 685 Block: 2 DelDur: NullDur: Word: BAD ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 149 Running: TestList TestList.Cycle: 1 TestList.Sample: 685 TrialCount: 181 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1449795 TestWord.DurationError: 100 TestWord.RTTime: 1452191 TestWord.ACC: 0 TestWord.RT: 2396 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1450545 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1450575 Keyrelease: 1452283 ResponseTime: 1708 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 686 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 686 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 687 Block: 2 DelDur: NullDur: Word: MURDEROUS ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 59 Running: TestList TestList.Cycle: 1 TestList.Sample: 687 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 688 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 688 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 689 Block: 2 DelDur: NullDur: Word: FLUFFY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 180 Running: TestList TestList.Cycle: 1 TestList.Sample: 689 TrialCount: 182 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1458859 TestWord.DurationError: 99 TestWord.RTTime: 1459903 TestWord.ACC: 1 TestWord.RT: 1044 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1459609 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1459903 Keyrelease: 1461351 ResponseTime: 1448 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 690 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 690 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 691 Block: 2 DelDur: NullDur: Word: DISTINCT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 120 Running: TestList TestList.Cycle: 1 TestList.Sample: 691 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 692 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 692 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 693 Block: 2 DelDur: NullDur: PlaceList: 22 Word: FOREIGN ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 693 TrialCount: 183 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1464424 TestWord.DurationError: 99 TestWord.RTTime: 1465511 TestWord.ACC: 1 TestWord.RT: 1087 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1465174 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1465512 Keyrelease: 1466918 ResponseTime: 1406 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 694 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 694 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 695 Block: 2 DelDur: NullDur: PlaceList: 21 Word: LIVELY ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 695 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 696 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 696 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 697 Block: 2 DelDur: NullDur: Word: BANAL ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 70 Running: TestList TestList.Cycle: 1 TestList.Sample: 697 TrialCount: 184 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1469489 TestWord.DurationError: 99 TestWord.RTTime: 1470543 TestWord.ACC: 1 TestWord.RT: 1054 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1470239 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1470544 Keyrelease: 1471990 ResponseTime: 1446 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 698 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 698 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 699 Block: 2 DelDur: NullDur: Word: VILLAINOUS ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 96 Running: TestList TestList.Cycle: 1 TestList.Sample: 699 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 700 Block: 2 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 700 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 701 Block: 2 DelDur: NullDur: Word: UNTIDY ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 99 Running: TestList TestList.Cycle: 1 TestList.Sample: 701 TrialCount: 185 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1477070 TestWord.DurationError: 100 TestWord.RTTime: 1478335 TestWord.ACC: 0 TestWord.RT: 1265 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1477820 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1478336 Keyrelease: 1479567 ResponseTime: 1231 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 702 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 702 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 703 Block: 2 DelDur: NullDur: Word: MEDIEVAL ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 97 Running: TestList TestList.Cycle: 1 TestList.Sample: 703 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 704 Block: 2 DelDur: NullDur: PlaceList: 86 Word: STATELY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 704 TrialCount: 186 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1487133 TestWord.DurationError: 100 TestWord.RTTime: 1489128 TestWord.ACC: 1 TestWord.RT: 1995 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1487883 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1489128 Keyrelease: 1489623 ResponseTime: 495 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 705 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 705 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 706 Block: 2 DelDur: NullDur: PlaceList: 100 Word: IDYLLIC ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 706 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 707 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 707 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 708 Block: 2 DelDur: NullDur: Word: RUSSIAN ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 173 Running: TestList TestList.Cycle: 1 TestList.Sample: 708 TrialCount: 187 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1492698 TestWord.DurationError: 100 TestWord.RTTime: 1494176 TestWord.ACC: 1 TestWord.RT: 1478 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1493448 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1494176 Keyrelease: 1495193 ResponseTime: 1017 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 709 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 709 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 710 Block: 2 DelDur: NullDur: Word: LATE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 50 Running: TestList TestList.Cycle: 1 TestList.Sample: 710 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 711 Block: 2 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 711 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 712 Block: 2 DelDur: NullDur: Word: FUNNY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 145 Running: TestList TestList.Cycle: 1 TestList.Sample: 712 TrialCount: 188 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1500263 TestWord.DurationError: 99 TestWord.RTTime: 1501712 TestWord.ACC: 1 TestWord.RT: 1449 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1501012 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1501712 Keyrelease: 1502756 ResponseTime: 1044 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 713 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 713 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 714 Block: 2 DelDur: NullDur: Word: BLUE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 124 Running: TestList TestList.Cycle: 1 TestList.Sample: 714 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 715 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 715 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 716 Block: 2 DelDur: NullDur: Word: MELLOW ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 179 Running: TestList TestList.Cycle: 1 TestList.Sample: 716 TrialCount: 189 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1507327 TestWord.DurationError: 100 TestWord.RTTime: 1508320 TestWord.ACC: 1 TestWord.RT: 993 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1508077 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1508320 Keyrelease: 1509819 ResponseTime: 1499 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 717 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 717 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 718 Block: 2 DelDur: NullDur: Word: ARID ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 6 Running: TestList TestList.Cycle: 1 TestList.Sample: 718 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 719 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 719 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 720 Block: 2 DelDur: NullDur: Word: NICE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 123 Running: TestList TestList.Cycle: 1 TestList.Sample: 720 TrialCount: 190 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1513892 TestWord.DurationError: 99 TestWord.RTTime: 1514768 TestWord.ACC: 1 TestWord.RT: 876 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1514641 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1514768 Keyrelease: 1516387 ResponseTime: 1619 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 721 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 721 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 722 Block: 2 DelDur: NullDur: Word: POIGNANT ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 13 Running: TestList TestList.Cycle: 1 TestList.Sample: 722 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 723 Block: 2 DelDur: NullDur: Word: FOGGY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 135 Running: TestList TestList.Cycle: 1 TestList.Sample: 723 TrialCount: 191 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1518940 TestWord.DurationError: 100 TestWord.RTTime: 1519600 TestWord.ACC: 1 TestWord.RT: 660 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1519690 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1519695 Keyrelease: 1521435 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 724 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 724 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 725 Block: 2 DelDur: NullDur: Word: MANIACAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 79 Running: TestList TestList.Cycle: 1 TestList.Sample: 725 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 726 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 726 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 727 Block: 2 DelDur: NullDur: Word: NOISY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 63 Running: TestList TestList.Cycle: 1 TestList.Sample: 727 TrialCount: 192 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1523505 TestWord.DurationError: 100 TestWord.RTTime: 1524456 TestWord.ACC: 1 TestWord.RT: 951 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1524255 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1524456 Keyrelease: 1525994 ResponseTime: 1539 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 728 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 728 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 729 Block: 2 DelDur: NullDur: Word: ENGLISH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 75 Running: TestList TestList.Cycle: 1 TestList.Sample: 729 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 730 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 730 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 731 Block: 2 DelDur: NullDur: Word: FAIR ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 7 Running: TestList TestList.Cycle: 1 TestList.Sample: 731 TrialCount: 193 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1535068 TestWord.DurationError: 100 TestWord.RTTime: 1536312 TestWord.ACC: 0 TestWord.RT: 1244 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1535818 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1536312 Keyrelease: 1537571 ResponseTime: 1258 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 732 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 732 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 733 Block: 2 DelDur: NullDur: Word: BRAWNY ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 37 Running: TestList TestList.Cycle: 1 TestList.Sample: 733 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 734 Block: 2 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 734 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 735 Block: 2 DelDur: NullDur: PlaceList: 31 Word: TACKY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 735 TrialCount: 194 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1545149 TestWord.DurationError: 99 TestWord.RTTime: 1546816 TestWord.ACC: 0 TestWord.RT: 1667 TestWord.RESP: 3z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1545898 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1546153 Keyrelease: 1547638 ResponseTime: 1485 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 736 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 736 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 737 Block: 2 DelDur: NullDur: PlaceList: 1 Word: SWEATY ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 737 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 738 Block: 2 DelDur: NullDur: PlaceList: 39 Word: VETERINARY ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 738 TrialCount: 195 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1549197 TestWord.DurationError: 100 TestWord.RTTime: 1549984 TestWord.ACC: 1 TestWord.RT: 787 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1549947 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1549985 Keyrelease: 1551697 ResponseTime: 1712 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 739 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 739 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 740 Block: 2 DelDur: NullDur: PlaceList: 16 Word: CENTENNIAL ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 740 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 741 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 741 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 742 Block: 2 DelDur: NullDur: Word: RICH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 73 Running: TestList TestList.Cycle: 1 TestList.Sample: 742 TrialCount: 196 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1561777 TestWord.DurationError: 99 TestWord.RTTime: 1562769 TestWord.ACC: 0 TestWord.RT: 992 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1562526 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1562769 Keyrelease: 1564269 ResponseTime: 1500 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 743 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 743 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 744 Block: 2 DelDur: NullDur: Word: SHARP ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 23 Running: TestList TestList.Cycle: 1 TestList.Sample: 744 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 745 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 745 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 746 Block: 2 DelDur: NullDur: Word: BARE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 98 Running: TestList TestList.Cycle: 1 TestList.Sample: 746 TrialCount: 197 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1568341 TestWord.DurationError: 100 TestWord.RTTime: 1569345 TestWord.ACC: 0 TestWord.RT: 1004 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1569091 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1569345 Keyrelease: 1570831 ResponseTime: 1486 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 747 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 747 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 748 Block: 2 DelDur: NullDur: Word: BARBARIC ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 69 Running: TestList TestList.Cycle: 1 TestList.Sample: 748 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 749 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 749 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 750 Block: 2 DelDur: NullDur: Word: RAGGED ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 115 Running: TestList TestList.Cycle: 1 TestList.Sample: 750 TrialCount: 198 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1573906 TestWord.DurationError: 100 TestWord.RTTime: 1576299 TestWord.ACC: 0 TestWord.RT: 2393 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1574656 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1575801 Keyrelease: 1576395 ResponseTime: 594 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 751 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 751 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 752 Block: 2 DelDur: NullDur: Word: VAGUE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 68 Running: TestList TestList.Cycle: 1 TestList.Sample: 752 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 753 Block: 2 DelDur: NullDur: Word: AWESOME ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 9 Running: TestList TestList.Cycle: 1 TestList.Sample: 753 TrialCount: 199 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1577955 TestWord.DurationError: 100 TestWord.RTTime: 1580105 TestWord.ACC: 0 TestWord.RT: 2150 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1578705 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1580105 Keyrelease: 1580453 ResponseTime: 348 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 754 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 754 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 755 Block: 2 DelDur: NullDur: Word: CHIC ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 162 Running: TestList TestList.Cycle: 1 TestList.Sample: 755 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 756 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 756 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 757 Block: 2 DelDur: NullDur: Word: CLEAR ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 8 Running: TestList TestList.Cycle: 1 TestList.Sample: 757 TrialCount: 200 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1583037 TestWord.DurationError: 99 TestWord.RTTime: 1584241 TestWord.ACC: 0 TestWord.RT: 1204 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1583786 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1584241 Keyrelease: 1585526 ResponseTime: 1285 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 758 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 758 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 759 Block: 2 DelDur: NullDur: Word: SECRETIVE ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 50 Running: TestList TestList.Cycle: 1 TestList.Sample: 759 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: BreakProc TestList: 760 Block: 2 DelDur: NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 760 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 761 Block: 3 DelDur: NullDur: PlaceList: 8 Word: WARM ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 761 TrialCount: 201 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1591167 TestWord.DurationError: 100 TestWord.RTTime: 1592097 TestWord.ACC: 0 TestWord.RT: 930 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1591917 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1592097 Keyrelease: 1593664 ResponseTime: 1567 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 762 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 762 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 763 Block: 3 DelDur: NullDur: PlaceList: 19 Word: FRAGILE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 763 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 764 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 764 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 765 Block: 3 DelDur: NullDur: Word: FABULOUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 48 Running: TestList TestList.Cycle: 1 TestList.Sample: 765 TrialCount: 202 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1598765 TestWord.DurationError: 100 TestWord.RTTime: 1599777 TestWord.ACC: 0 TestWord.RT: 1012 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1599515 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1599777 Keyrelease: 1601263 ResponseTime: 1486 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 766 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 766 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 767 Block: 3 DelDur: NullDur: Word: CANADIAN ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 33 Running: TestList TestList.Cycle: 1 TestList.Sample: 767 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 768 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 768 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 769 Block: 3 DelDur: NullDur: Word: VAGRANT ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 31 Running: TestList TestList.Cycle: 1 TestList.Sample: 769 TrialCount: 203 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1609845 TestWord.DurationError: 99 TestWord.RTTime: 1610833 TestWord.ACC: 0 TestWord.RT: 988 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1610595 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1610834 Keyrelease: 1612334 ResponseTime: 1500 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 770 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 770 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 771 Block: 3 DelDur: NullDur: Word: BLEAK ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 26 Running: TestList TestList.Cycle: 1 TestList.Sample: 771 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 772 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 772 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 773 Block: 3 DelDur: NullDur: PlaceList: 86 Word: STATELY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 773 TrialCount: 204 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1620408 TestWord.DurationError: 100 TestWord.RTTime: 1621057 TestWord.ACC: 1 TestWord.RT: 649 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1621158 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1621162 Keyrelease: 1622902 ResponseTime: 1740 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 774 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 774 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 775 Block: 3 DelDur: NullDur: PlaceList: 12 Word: LOVABLE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 775 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 776 Block: 3 DelDur: NullDur: Word: CHEERY ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 30 Running: TestList TestList.Cycle: 1 TestList.Sample: 776 TrialCount: 205 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1624457 TestWord.DurationError: 100 TestWord.RTTime: 1625929 TestWord.ACC: 0 TestWord.RT: 1472 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1625207 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1625930 Keyrelease: 1626947 ResponseTime: 1017 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 777 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 777 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 778 Block: 3 DelDur: NullDur: Word: UNREFINED ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 57 Running: TestList TestList.Cycle: 1 TestList.Sample: 778 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 779 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 779 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 780 Block: 3 DelDur: NullDur: PlaceList: 47 Word: SICK ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 780 TrialCount: 206 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1629022 TestWord.DurationError: 100 TestWord.RTTime: 1629810 TestWord.ACC: 1 TestWord.RT: 788 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1629772 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1629810 Keyrelease: 1631510 ResponseTime: 1700 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 781 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 781 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 782 Block: 3 DelDur: NullDur: PlaceList: 66 Word: BEASTLY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 782 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 783 Block: 3 DelDur: NullDur: PlaceList: 64 Word: GEOMETRIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 783 TrialCount: 207 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1633071 TestWord.DurationError: 99 TestWord.RTTime: 1633938 TestWord.ACC: 1 TestWord.RT: 867 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1633821 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1633938 Keyrelease: 1635559 ResponseTime: 1621 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 784 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 784 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 785 Block: 3 DelDur: NullDur: PlaceList: 15 Word: TIDY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 785 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 786 Block: 3 DelDur: NullDur: Word: PECULIAR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 18 Running: TestList TestList.Cycle: 1 TestList.Sample: 786 TrialCount: 208 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1641135 TestWord.DurationError: 99 TestWord.RTTime: 1642634 TestWord.ACC: 0 TestWord.RT: 1499 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1641885 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1642634 Keyrelease: 1643623 ResponseTime: 989 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 787 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 787 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 788 Block: 3 DelDur: NullDur: Word: COSMIC ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 142 Running: TestList TestList.Cycle: 1 TestList.Sample: 788 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 789 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 789 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 790 Block: 3 DelDur: NullDur: Word: ROTTEN ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 44 Running: TestList TestList.Cycle: 1 TestList.Sample: 790 TrialCount: 209 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1651198 TestWord.DurationError: 100 TestWord.RTTime: 1652330 TestWord.ACC: 1 TestWord.RT: 1132 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1651948 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1652330 Keyrelease: 1653694 ResponseTime: 1364 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 791 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 791 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 792 Block: 3 DelDur: NullDur: Word: EPIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 81 Running: TestList TestList.Cycle: 1 TestList.Sample: 792 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 793 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 793 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 794 Block: 3 DelDur: NullDur: Word: COPIOUS ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 93 Running: TestList TestList.Cycle: 1 TestList.Sample: 794 TrialCount: 210 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1657780 TestWord.DurationError: 99 TestWord.RTTime: 1659050 TestWord.ACC: 1 TestWord.RT: 1270 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1658530 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1659050 Keyrelease: 1660280 ResponseTime: 1230 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 795 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 795 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 796 Block: 3 DelDur: NullDur: Word: CLINICAL ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 32 Running: TestList TestList.Cycle: 1 TestList.Sample: 796 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 797 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 797 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 798 Block: 3 DelDur: NullDur: Word: UNCULTURED ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 103 Running: TestList TestList.Cycle: 1 TestList.Sample: 798 TrialCount: 211 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1667360 TestWord.DurationError: 100 TestWord.RTTime: 1668554 TestWord.ACC: 1 TestWord.RT: 1194 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1668110 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1668554 Keyrelease: 1669852 ResponseTime: 1298 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 799 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 799 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 800 Block: 3 DelDur: NullDur: Word: CYNICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 114 Running: TestList TestList.Cycle: 1 TestList.Sample: 800 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 801 Block: 3 DelDur: NullDur: Word: NORMAL ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 10 Running: TestList TestList.Cycle: 1 TestList.Sample: 801 TrialCount: 212 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1676407 TestWord.DurationError: 100 TestWord.RTTime: 1677082 TestWord.ACC: 1 TestWord.RT: 675 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1677157 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1677161 Keyrelease: 1678901 ResponseTime: 1741 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 802 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 802 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 803 Block: 3 DelDur: NullDur: Word: GRASSY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 1 Running: TestList TestList.Cycle: 1 TestList.Sample: 803 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 804 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 804 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 805 Block: 3 DelDur: NullDur: Word: BABYISH ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 72 Running: TestList TestList.Cycle: 1 TestList.Sample: 805 TrialCount: 213 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1684471 TestWord.DurationError: 100 TestWord.RTTime: 1685858 TestWord.ACC: 1 TestWord.RT: 1387 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1685221 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1685859 Keyrelease: 1686969 ResponseTime: 1110 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 806 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 806 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 807 Block: 3 DelDur: NullDur: Word: DROLL ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 2 Running: TestList TestList.Cycle: 1 TestList.Sample: 807 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 808 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 808 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 809 Block: 3 DelDur: NullDur: Word: VAGUE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 68 Running: TestList TestList.Cycle: 1 TestList.Sample: 809 TrialCount: 214 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1690553 TestWord.DurationError: 99 TestWord.RTTime: 1691442 TestWord.ACC: 1 TestWord.RT: 889 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1691303 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1691443 Keyrelease: 1693050 ResponseTime: 1607 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 810 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 810 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 811 Block: 3 DelDur: NullDur: Word: QUIET ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 148 Running: TestList TestList.Cycle: 1 TestList.Sample: 811 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 812 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 812 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 813 Block: 3 DelDur: NullDur: Word: CANINE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 105 Running: TestList TestList.Cycle: 1 TestList.Sample: 813 TrialCount: 215 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1695135 TestWord.DurationError: 99 TestWord.RTTime: 1696058 TestWord.ACC: 1 TestWord.RT: 923 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1695884 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1696059 Keyrelease: 1697626 ResponseTime: 1567 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 814 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 814 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 815 Block: 3 DelDur: NullDur: Word: UNPLEASANT ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 141 Running: TestList TestList.Cycle: 1 TestList.Sample: 815 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 816 Block: 3 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 816 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 817 Block: 3 DelDur: NullDur: Word: ATYPICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 154 Running: TestList TestList.Cycle: 1 TestList.Sample: 817 TrialCount: 216 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1703699 TestWord.DurationError: 99 TestWord.RTTime: 1704571 TestWord.ACC: 1 TestWord.RT: 872 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1704448 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1704571 Keyrelease: 1706189 ResponseTime: 1618 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 818 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 818 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 819 Block: 3 DelDur: NullDur: Word: WINTRY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 7 Running: TestList TestList.Cycle: 1 TestList.Sample: 819 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 820 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 820 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 821 Block: 3 DelDur: NullDur: Word: ORNATE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 155 Running: TestList TestList.Cycle: 1 TestList.Sample: 821 TrialCount: 217 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1712263 TestWord.DurationError: 99 TestWord.RTTime: 1713699 TestWord.ACC: 1 TestWord.RT: 1436 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1713012 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1713699 Keyrelease: 1714756 ResponseTime: 1057 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 822 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 822 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 823 Block: 3 DelDur: NullDur: Word: SKETCHY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 128 Running: TestList TestList.Cycle: 1 TestList.Sample: 823 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 824 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 824 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 825 Block: 3 DelDur: NullDur: Word: MELLOW ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 179 Running: TestList TestList.Cycle: 1 TestList.Sample: 825 TrialCount: 218 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1718327 TestWord.DurationError: 100 TestWord.RTTime: 1719011 TestWord.ACC: 1 TestWord.RT: 684 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1719077 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1719081 Keyrelease: 1720819 ResponseTime: 1738 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 826 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 826 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 827 Block: 3 DelDur: NullDur: Word: UNCLEAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 58 Running: TestList TestList.Cycle: 1 TestList.Sample: 827 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 828 Block: 3 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 828 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 829 Block: 3 DelDur: NullDur: PlaceList: 2 Word: LIQUID ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 829 TrialCount: 219 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1725892 TestWord.DurationError: 99 TestWord.RTTime: 1726531 TestWord.ACC: 1 TestWord.RT: 639 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1726641 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1726646 Keyrelease: 1728387 ResponseTime: 1741 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 830 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 830 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 831 Block: 3 DelDur: NullDur: PlaceList: 24 Word: PUPAL ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 831 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 832 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 832 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 833 Block: 3 DelDur: NullDur: Word: PIOUS ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 71 Running: TestList TestList.Cycle: 1 TestList.Sample: 833 TrialCount: 220 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1731457 TestWord.DurationError: 99 TestWord.RTTime: 1732291 TestWord.ACC: 1 TestWord.RT: 834 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1732206 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1732291 Keyrelease: 1733950 ResponseTime: 1659 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 834 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 834 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 835 Block: 3 DelDur: NullDur: Word: VIVID ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 41 Running: TestList TestList.Cycle: 1 TestList.Sample: 835 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 836 Block: 3 DelDur: NullDur: Word: ENDURABLE ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 91 Running: TestList TestList.Cycle: 1 TestList.Sample: 836 TrialCount: 221 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1735505 TestWord.DurationError: 100 TestWord.RTTime: 1736163 TestWord.ACC: 0 TestWord.RT: 658 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1736255 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1736259 Keyrelease: 1738000 ResponseTime: 1741 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 837 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 837 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 838 Block: 3 DelDur: NullDur: Word: WELCOME ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 60 Running: TestList TestList.Cycle: 1 TestList.Sample: 838 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 839 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 839 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 840 Block: 3 DelDur: NullDur: PlaceList: 93 Word: DUSK ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 840 TrialCount: 222 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1742070 TestWord.DurationError: 99 TestWord.RTTime: 1742715 TestWord.ACC: 1 TestWord.RT: 645 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1742820 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1742824 Keyrelease: 1744562 ResponseTime: 1739 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 841 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 841 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 842 Block: 3 DelDur: NullDur: PlaceList: 30 Word: MODERN ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 842 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 843 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 843 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 844 Block: 3 DelDur: NullDur: Word: CARIBBEAN ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 137 Running: TestList TestList.Cycle: 1 TestList.Sample: 844 TrialCount: 223 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1747135 TestWord.DurationError: 99 TestWord.RTTime: 1747819 TestWord.ACC: 1 TestWord.RT: 684 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1747885 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1747889 Keyrelease: 1749629 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 845 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 845 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 846 Block: 3 DelDur: NullDur: Word: FUTURE ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 150 Running: TestList TestList.Cycle: 1 TestList.Sample: 846 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 847 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 847 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 848 Block: 3 DelDur: NullDur: PlaceList: 68 Word: VIETNAMESE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 848 TrialCount: 224 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1753700 TestWord.DurationError: 99 TestWord.RTTime: 1754739 TestWord.ACC: 1 TestWord.RT: 1039 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1754449 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1754740 Keyrelease: 1756196 ResponseTime: 1457 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 849 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 849 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 850 Block: 3 DelDur: NullDur: PlaceList: 27 Word: DELINQUENT ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 850 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 851 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 851 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 852 Block: 3 DelDur: NullDur: Word: CAUTIONARY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 2 Running: TestList TestList.Cycle: 1 TestList.Sample: 852 TrialCount: 225 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1761780 TestWord.DurationError: 100 TestWord.RTTime: 1762635 TestWord.ACC: 1 TestWord.RT: 855 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1762530 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1762636 Keyrelease: 1764269 ResponseTime: 1633 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 853 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 853 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 854 Block: 3 DelDur: NullDur: Word: ADULT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 118 Running: TestList TestList.Cycle: 1 TestList.Sample: 854 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 855 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 855 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 856 Block: 3 DelDur: NullDur: Word: BRAVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 168 Running: TestList TestList.Cycle: 1 TestList.Sample: 856 TrialCount: 226 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1766346 TestWord.DurationError: 99 TestWord.RTTime: 1767235 TestWord.ACC: 1 TestWord.RT: 889 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1767095 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1767236 Keyrelease: 1768841 ResponseTime: 1605 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 857 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 857 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 858 Block: 3 DelDur: NullDur: Word: DOCILE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 34 Running: TestList TestList.Cycle: 1 TestList.Sample: 858 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 859 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 859 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 860 Block: 3 DelDur: NullDur: Word: LEWD ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 78 Running: TestList TestList.Cycle: 1 TestList.Sample: 860 TrialCount: 227 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1771910 TestWord.DurationError: 100 TestWord.RTTime: 1772980 TestWord.ACC: 0 TestWord.RT: 1070 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1772660 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1772980 Keyrelease: 1774413 ResponseTime: 1433 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 861 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 861 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 862 Block: 3 DelDur: NullDur: Word: TENSE ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 82 Running: TestList TestList.Cycle: 1 TestList.Sample: 862 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 863 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 863 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 864 Block: 3 DelDur: NullDur: Word: AQUATIC ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 177 Running: TestList TestList.Cycle: 1 TestList.Sample: 864 TrialCount: 228 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1781491 TestWord.DurationError: 99 TestWord.RTTime: 1782420 TestWord.ACC: 1 TestWord.RT: 929 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1782241 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1782420 Keyrelease: 1783984 ResponseTime: 1564 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 865 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 865 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 866 Block: 3 DelDur: NullDur: Word: BOHEMIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 55 Running: TestList TestList.Cycle: 1 TestList.Sample: 866 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 867 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 867 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 868 Block: 3 DelDur: NullDur: Word: RUDE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 12 Running: TestList TestList.Cycle: 1 TestList.Sample: 868 TrialCount: 229 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1788055 TestWord.DurationError: 100 TestWord.RTTime: 1789812 TestWord.ACC: 0 TestWord.RT: 1757 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1788805 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1789812 Keyrelease: 1790547 ResponseTime: 735 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 869 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 869 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 870 Block: 3 DelDur: NullDur: Word: HAWAIIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 37 Running: TestList TestList.Cycle: 1 TestList.Sample: 870 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 871 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 871 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 872 Block: 3 DelDur: NullDur: Word: OBSCURE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 92 Running: TestList TestList.Cycle: 1 TestList.Sample: 872 TrialCount: 230 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1792621 TestWord.DurationError: 99 TestWord.RTTime: 1793436 TestWord.ACC: 1 TestWord.RT: 815 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1793370 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1793436 Keyrelease: 1795110 ResponseTime: 1674 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 873 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 873 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 874 Block: 3 DelDur: NullDur: Word: RAW ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 95 Running: TestList TestList.Cycle: 1 TestList.Sample: 874 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 875 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 875 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 876 Block: 3 DelDur: NullDur: Word: LATE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 50 Running: TestList TestList.Cycle: 1 TestList.Sample: 876 TrialCount: 231 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1804684 TestWord.DurationError: 99 TestWord.RTTime: 1805468 TestWord.ACC: 1 TestWord.RT: 784 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1805433 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1805468 Keyrelease: 1807183 ResponseTime: 1715 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 877 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 877 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 878 Block: 3 DelDur: NullDur: Word: ADMIRABLE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 189 Running: TestList TestList.Cycle: 1 TestList.Sample: 878 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 879 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 879 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 880 Block: 3 DelDur: NullDur: Word: BROWN ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 23 Running: TestList TestList.Cycle: 1 TestList.Sample: 880 TrialCount: 232 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1809765 TestWord.DurationError: 100 TestWord.RTTime: 1811196 TestWord.ACC: 1 TestWord.RT: 1431 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1810515 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1811196 Keyrelease: 1812254 ResponseTime: 1058 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 881 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 881 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 882 Block: 3 DelDur: NullDur: Word: FILTHY ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 40 Running: TestList TestList.Cycle: 1 TestList.Sample: 882 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 883 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 883 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 884 Block: 3 DelDur: NullDur: PlaceList: 80 Word: MALODOROUS ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 884 TrialCount: 233 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1821328 TestWord.DurationError: 100 TestWord.RTTime: 1822652 TestWord.ACC: 1 TestWord.RT: 1324 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1822078 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1822653 Keyrelease: 1823818 ResponseTime: 1165 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 885 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 885 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 886 Block: 3 DelDur: NullDur: PlaceList: 3 Word: CLIMACTIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 886 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 887 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 887 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 888 Block: 3 DelDur: NullDur: PlaceList: 32 Word: FAIRY ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 888 TrialCount: 234 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1833391 TestWord.DurationError: 100 TestWord.RTTime: 1834252 TestWord.ACC: 1 TestWord.RT: 861 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1834141 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1834253 Keyrelease: 1835886 ResponseTime: 1633 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 889 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 889 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 890 Block: 3 DelDur: NullDur: PlaceList: 29 Word: SMOOTH ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 890 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 891 Block: 3 DelDur: NullDur: 10500 Running: TestList TestList.Cycle: 1 TestList.Sample: 891 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 892 Block: 3 DelDur: NullDur: PlaceList: 89 Word: ABUNDANT ListOrigin: List2B Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 892 TrialCount: 235 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1853951 TestWord.DurationError: 100 TestWord.RTTime: 1855413 TestWord.ACC: 0 TestWord.RT: 1462 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1854701 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1855413 Keyrelease: 1856445 ResponseTime: 1032 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 893 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 893 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 894 Block: 3 DelDur: NullDur: PlaceList: 99 Word: IRISH ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 894 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 895 Block: 3 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 895 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 896 Block: 3 DelDur: NullDur: Word: ALIEN ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 116 Running: TestList TestList.Cycle: 1 TestList.Sample: 896 TrialCount: 236 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1868014 TestWord.DurationError: 99 TestWord.RTTime: 1868629 TestWord.ACC: 1 TestWord.RT: 615 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1868763 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1868767 Keyrelease: 1870508 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 897 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 897 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 898 Block: 3 DelDur: NullDur: Word: DEFICIENT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 158 Running: TestList TestList.Cycle: 1 TestList.Sample: 898 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 899 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 899 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 900 Block: 3 DelDur: NullDur: Word: SOUTHERN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 199 Running: TestList TestList.Cycle: 1 TestList.Sample: 900 TrialCount: 237 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1879577 TestWord.DurationError: 99 TestWord.RTTime: 1880301 TestWord.ACC: 1 TestWord.RT: 724 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1880326 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1880330 Keyrelease: 1882072 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 901 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 901 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 902 Block: 3 DelDur: NullDur: Word: FINAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 99 Running: TestList TestList.Cycle: 1 TestList.Sample: 902 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 903 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 903 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 904 Block: 3 DelDur: NullDur: Word: TYPICAL ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 4 Running: TestList TestList.Cycle: 1 TestList.Sample: 904 TrialCount: 238 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1885142 TestWord.DurationError: 99 TestWord.RTTime: 1886693 TestWord.ACC: 0 TestWord.RT: 1551 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1885891 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1886693 Keyrelease: 1887630 ResponseTime: 937 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 905 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 905 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 906 Block: 3 DelDur: NullDur: Word: SHALLOW ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 16 Running: TestList TestList.Cycle: 1 TestList.Sample: 906 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 907 Block: 3 DelDur: NullDur: Word: LUNAR ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 165 Running: TestList TestList.Cycle: 1 TestList.Sample: 907 TrialCount: 239 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1889190 TestWord.DurationError: 100 TestWord.RTTime: 1890085 TestWord.ACC: 1 TestWord.RT: 895 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1889940 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1890085 Keyrelease: 1891679 ResponseTime: 1594 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 908 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 908 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 909 Block: 3 DelDur: NullDur: Word: DREARY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 112 Running: TestList TestList.Cycle: 1 TestList.Sample: 909 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 910 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 910 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 911 Block: 3 DelDur: NullDur: PlaceList: 78 Word: STYLISH ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 911 TrialCount: 240 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1894755 TestWord.DurationError: 100 TestWord.RTTime: 1895733 TestWord.ACC: 1 TestWord.RT: 978 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1895505 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1895734 Keyrelease: 1897247 ResponseTime: 1513 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 912 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 912 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 913 Block: 3 DelDur: NullDur: PlaceList: 53 Word: SLUMMY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 913 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 914 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 914 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 915 Block: 3 DelDur: NullDur: Word: HYSTERICAL ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 87 Running: TestList TestList.Cycle: 1 TestList.Sample: 915 TrialCount: 241 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1904819 TestWord.DurationError: 99 TestWord.RTTime: 1906669 TestWord.ACC: 0 TestWord.RT: 1850 TestWord.RESP: z{-z} TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1905568 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1906598 Keyrelease: 1907307 ResponseTime: 709 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 916 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 916 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 917 Block: 3 DelDur: NullDur: Word: ACOUSTIC ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 29 Running: TestList TestList.Cycle: 1 TestList.Sample: 917 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 918 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 918 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 919 Block: 3 DelDur: NullDur: Word: ROUGH ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 58 Running: TestList TestList.Cycle: 1 TestList.Sample: 919 TrialCount: 242 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1917381 TestWord.DurationError: 100 TestWord.RTTime: 1918374 TestWord.ACC: 0 TestWord.RT: 993 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1918131 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1918374 Keyrelease: 1919874 ResponseTime: 1500 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 920 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 920 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 921 Block: 3 DelDur: NullDur: Word: MUNDANE ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 46 Running: TestList TestList.Cycle: 1 TestList.Sample: 921 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 922 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 922 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 923 Block: 3 DelDur: NullDur: Word: HILARIOUS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 181 Running: TestList TestList.Cycle: 1 TestList.Sample: 923 TrialCount: 243 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1923446 TestWord.DurationError: 100 TestWord.RTTime: 1924710 TestWord.ACC: 1 TestWord.RT: 1264 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1924196 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1924710 Keyrelease: 1925941 ResponseTime: 1231 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 924 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 924 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 925 Block: 3 DelDur: NullDur: Word: ARCTIC ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 10 Running: TestList TestList.Cycle: 1 TestList.Sample: 925 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 926 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 926 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 927 Block: 3 DelDur: NullDur: Word: HUMOROUS ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 20 Running: TestList TestList.Cycle: 1 TestList.Sample: 927 TrialCount: 244 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1932510 TestWord.DurationError: 99 TestWord.RTTime: 1933998 TestWord.ACC: 1 TestWord.RT: 1488 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1933260 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1933998 Keyrelease: 1935000 ResponseTime: 1002 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 928 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 928 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 929 Block: 3 DelDur: NullDur: Word: NERVOUS ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 76 Running: TestList TestList.Cycle: 1 TestList.Sample: 929 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 930 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 930 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 931 Block: 3 DelDur: NullDur: PlaceList: 46 Word: UNFRIENDLY ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 931 TrialCount: 245 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1941074 TestWord.DurationError: 99 TestWord.RTTime: 1941926 TestWord.ACC: 0 TestWord.RT: 852 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1941824 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1941926 Keyrelease: 1943571 ResponseTime: 1645 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 932 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 932 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 933 Block: 3 DelDur: NullDur: PlaceList: 50 Word: DOGMATIC ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 933 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 934 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 934 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 935 Block: 3 DelDur: NullDur: Word: SIMPLE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 49 Running: TestList TestList.Cycle: 1 TestList.Sample: 935 TrialCount: 246 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1947155 TestWord.DurationError: 100 TestWord.RTTime: 1949000 TestWord.ACC: 0 TestWord.RT: 1845 TestWord.RESP: x{-x} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1947905 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1948942 Keyrelease: 1949643 ResponseTime: 701 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 936 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 936 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 937 Block: 3 DelDur: NullDur: Word: CLOSE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 200 Running: TestList TestList.Cycle: 1 TestList.Sample: 937 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 938 Block: 3 DelDur: NullDur: Word: MALICIOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 82 Running: TestList TestList.Cycle: 1 TestList.Sample: 938 TrialCount: 247 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1952204 TestWord.DurationError: 99 TestWord.RTTime: 1953342 TestWord.ACC: 0 TestWord.RT: 1138 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1952954 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1953342 Keyrelease: 1954693 ResponseTime: 1351 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 939 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 939 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 940 Block: 3 DelDur: NullDur: Word: PRECIOUS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 194 Running: TestList TestList.Cycle: 1 TestList.Sample: 940 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 941 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 941 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 942 Block: 3 DelDur: NullDur: Word: MORTAL ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 68 Running: TestList TestList.Cycle: 1 TestList.Sample: 942 TrialCount: 248 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1962267 TestWord.DurationError: 100 TestWord.RTTime: 1963646 TestWord.ACC: 1 TestWord.RT: 1379 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1963017 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1963647 Keyrelease: 1964756 ResponseTime: 1109 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 943 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 943 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 944 Block: 3 DelDur: NullDur: Word: EMPTY ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 54 Running: TestList TestList.Cycle: 1 TestList.Sample: 944 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 945 Block: 3 DelDur: NullDur: Word: WICKED ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 90 Running: TestList TestList.Cycle: 1 TestList.Sample: 945 TrialCount: 249 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1966316 TestWord.DurationError: 99 TestWord.RTTime: 1967198 TestWord.ACC: 1 TestWord.RT: 882 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1967066 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1967199 Keyrelease: 1968805 ResponseTime: 1606 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 946 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 946 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 947 Block: 3 DelDur: NullDur: Word: SNOWY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 11 Running: TestList TestList.Cycle: 1 TestList.Sample: 947 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 948 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 948 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 949 Block: 3 DelDur: NullDur: Word: PROMINENT ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 79 Running: TestList TestList.Cycle: 1 TestList.Sample: 949 TrialCount: 250 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1978379 TestWord.DurationError: 99 TestWord.RTTime: 1979599 TestWord.ACC: 0 TestWord.RT: 1220 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1979129 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1979599 Keyrelease: 1980869 ResponseTime: 1270 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 950 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 950 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 951 Block: 3 DelDur: NullDur: Word: SANDY ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 75 Running: TestList TestList.Cycle: 1 TestList.Sample: 951 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 952 Block: 3 DelDur: NullDur: Word: ARID ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 6 Running: TestList TestList.Cycle: 1 TestList.Sample: 952 TrialCount: 251 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1983427 TestWord.DurationError: 100 TestWord.RTTime: 1984302 TestWord.ACC: 1 TestWord.RT: 875 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1984177 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1984303 Keyrelease: 1985923 ResponseTime: 1620 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 953 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 953 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 954 Block: 3 DelDur: NullDur: Word: FAVOURABLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 51 Running: TestList TestList.Cycle: 1 TestList.Sample: 954 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 955 Block: 3 DelDur: NullDur: Word: FAMILIAR ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 48 Running: TestList TestList.Cycle: 1 TestList.Sample: 955 TrialCount: 252 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1992474 TestWord.DurationError: 100 TestWord.RTTime: 1993487 TestWord.ACC: 1 TestWord.RT: 1013 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1993224 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1993487 Keyrelease: 1994972 ResponseTime: 1485 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 956 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 956 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 957 Block: 3 DelDur: NullDur: Word: BOTHERSOME ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 80 Running: TestList TestList.Cycle: 1 TestList.Sample: 957 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 958 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 958 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 959 Block: 3 DelDur: NullDur: PlaceList: 57 Word: STERILE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 959 TrialCount: 253 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2001555 TestWord.DurationError: 99 TestWord.RTTime: 2002623 TestWord.ACC: 1 TestWord.RT: 1068 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2002305 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2002623 Keyrelease: 2004053 ResponseTime: 1431 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 960 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 960 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 961 Block: 3 DelDur: NullDur: PlaceList: 41 Word: ALPINE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 961 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 962 Block: 3 DelDur: NullDur: Word: INTENSE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 195 Running: TestList TestList.Cycle: 1 TestList.Sample: 962 TrialCount: 254 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2005620 TestWord.DurationError: 100 TestWord.RTTime: 2006367 TestWord.ACC: 1 TestWord.RT: 747 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2006370 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2006374 Keyrelease: 2008116 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 963 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 963 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 964 Block: 3 DelDur: NullDur: Word: ORIENTAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 91 Running: TestList TestList.Cycle: 1 TestList.Sample: 964 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 965 Block: 3 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 965 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 966 Block: 3 DelDur: NullDur: Word: SANITARY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 35 Running: TestList TestList.Cycle: 1 TestList.Sample: 966 TrialCount: 255 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2013701 TestWord.DurationError: 100 TestWord.RTTime: 2014631 TestWord.ACC: 1 TestWord.RT: 930 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2014451 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2014631 Keyrelease: 2016197 ResponseTime: 1566 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 967 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 967 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 968 Block: 3 DelDur: NullDur: Word: BAD ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 149 Running: TestList TestList.Cycle: 1 TestList.Sample: 968 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 969 Block: 3 DelDur: NullDur: Word: BRAINY ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 27 Running: TestList TestList.Cycle: 1 TestList.Sample: 969 TrialCount: 256 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2017766 TestWord.DurationError: 100 TestWord.RTTime: 2018943 TestWord.ACC: 1 TestWord.RT: 1177 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2018516 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2018943 Keyrelease: 2020255 ResponseTime: 1312 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 970 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 970 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 971 Block: 3 DelDur: NullDur: Word: CHERUBIC ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 5 Running: TestList TestList.Cycle: 1 TestList.Sample: 971 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 972 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 972 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 973 Block: 3 DelDur: NullDur: Word: UNCIVIL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 129 Running: TestList TestList.Cycle: 1 TestList.Sample: 973 TrialCount: 257 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2022832 TestWord.DurationError: 99 TestWord.RTTime: 2024343 TestWord.ACC: 1 TestWord.RT: 1511 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2023581 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2024343 Keyrelease: 2025319 ResponseTime: 976 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 974 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 974 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 975 Block: 3 DelDur: NullDur: Word: MYSTERIOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 93 Running: TestList TestList.Cycle: 1 TestList.Sample: 975 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 976 Block: 3 DelDur: NullDur: PlaceList: 69 Word: ABUSIVE ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 976 TrialCount: 258 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2026880 TestWord.DurationError: 100 TestWord.RTTime: 2028231 TestWord.ACC: 1 TestWord.RT: 1351 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2027630 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2028231 Keyrelease: 2029368 ResponseTime: 1137 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 977 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 977 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 978 Block: 3 DelDur: NullDur: PlaceList: 23 Word: WORLDLY ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 978 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 979 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 979 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 980 Block: 3 DelDur: NullDur: PlaceList: 33 Word: ASIAN ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 980 TrialCount: 259 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2036444 TestWord.DurationError: 99 TestWord.RTTime: 2037231 TestWord.ACC: 1 TestWord.RT: 787 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2037194 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2037231 Keyrelease: 2038944 ResponseTime: 1712 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 981 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 981 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 982 Block: 3 DelDur: NullDur: PlaceList: 84 Word: ALONE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 982 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 983 Block: 3 DelDur: NullDur: Word: DWARFISH ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 151 Running: TestList TestList.Cycle: 1 TestList.Sample: 983 TrialCount: 260 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2040509 TestWord.DurationError: 100 TestWord.RTTime: 2042047 TestWord.ACC: 1 TestWord.RT: 1538 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2041259 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2042048 Keyrelease: 2042998 ResponseTime: 950 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 984 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 984 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 985 Block: 3 DelDur: NullDur: Word: DRY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 97 Running: TestList TestList.Cycle: 1 TestList.Sample: 985 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 986 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 986 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 987 Block: 3 DelDur: NullDur: Word: IMMIGRANT ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 39 Running: TestList TestList.Cycle: 1 TestList.Sample: 987 TrialCount: 261 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2045574 TestWord.DurationError: 100 TestWord.RTTime: 2046863 TestWord.ACC: 1 TestWord.RT: 1289 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2046324 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2046864 Keyrelease: 2048070 ResponseTime: 1206 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 988 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 988 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 989 Block: 3 DelDur: NullDur: Word: SECULAR ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 47 Running: TestList TestList.Cycle: 1 TestList.Sample: 989 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 990 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 990 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 991 Block: 3 DelDur: NullDur: Word: CLEAN ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 86 Running: TestList TestList.Cycle: 1 TestList.Sample: 991 TrialCount: 262 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2056138 TestWord.DurationError: 99 TestWord.RTTime: 2057200 TestWord.ACC: 0 TestWord.RT: 1062 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2056887 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2057200 Keyrelease: 2058633 ResponseTime: 1433 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 992 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 992 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 993 Block: 3 DelDur: NullDur: Word: AGRARIAN ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 66 Running: TestList TestList.Cycle: 1 TestList.Sample: 993 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 994 Block: 3 DelDur: NullDur: 7500 Running: TestList TestList.Cycle: 1 TestList.Sample: 994 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 995 Block: 3 DelDur: NullDur: Word: DELICATE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 19 Running: TestList TestList.Cycle: 1 TestList.Sample: 995 TrialCount: 263 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2073699 TestWord.DurationError: 99 TestWord.RTTime: 2074576 TestWord.ACC: 1 TestWord.RT: 877 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2074449 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2074576 Keyrelease: 2076197 ResponseTime: 1621 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 996 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 996 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 997 Block: 3 DelDur: NullDur: Word: DUSTY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 41 Running: TestList TestList.Cycle: 1 TestList.Sample: 997 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 998 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 998 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 999 Block: 3 DelDur: NullDur: Word: FEUDAL ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 38 Running: TestList TestList.Cycle: 1 TestList.Sample: 999 TrialCount: 264 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2079280 TestWord.DurationError: 100 TestWord.RTTime: 2080544 TestWord.ACC: 1 TestWord.RT: 1264 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2080030 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2080544 Keyrelease: 2081777 ResponseTime: 1233 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1000 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1000 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1001 Block: 3 DelDur: NullDur: Word: ETHICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 119 Running: TestList TestList.Cycle: 1 TestList.Sample: 1001 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1002 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1002 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1003 Block: 3 DelDur: NullDur: Word: COLLEGIATE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 36 Running: TestList TestList.Cycle: 1 TestList.Sample: 1003 TrialCount: 265 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2087861 TestWord.DurationError: 100 TestWord.RTTime: 2089088 TestWord.ACC: 1 TestWord.RT: 1227 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2088611 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2089088 Keyrelease: 2090359 ResponseTime: 1271 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1004 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1004 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1005 Block: 3 DelDur: NullDur: Word: CAUTIOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 139 Running: TestList TestList.Cycle: 1 TestList.Sample: 1005 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1006 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1006 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1007 Block: 3 DelDur: NullDur: Word: SEASONAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 14 Running: TestList TestList.Cycle: 1 TestList.Sample: 1007 TrialCount: 266 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2098941 TestWord.DurationError: 99 TestWord.RTTime: 2099824 TestWord.ACC: 1 TestWord.RT: 883 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2099691 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2099824 Keyrelease: 2101430 ResponseTime: 1606 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1008 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1008 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1009 Block: 3 DelDur: NullDur: Word: SOPHISTIC ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 127 Running: TestList TestList.Cycle: 1 TestList.Sample: 1009 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1010 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1010 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1011 Block: 3 DelDur: NullDur: PlaceList: 34 Word: EXPENSIVE ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1011 TrialCount: 267 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2105006 TestWord.DurationError: 99 TestWord.RTTime: 2106032 TestWord.ACC: 1 TestWord.RT: 1026 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2105755 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2106033 Keyrelease: 2107507 ResponseTime: 1474 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1012 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1012 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1013 Block: 3 DelDur: NullDur: PlaceList: 75 Word: MYTHICAL ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1013 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1014 Block: 3 DelDur: NullDur: 7500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1014 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1015 Block: 3 DelDur: NullDur: Word: SPIRITUAL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 147 Running: TestList TestList.Cycle: 1 TestList.Sample: 1015 TrialCount: 268 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2117585 TestWord.DurationError: 99 TestWord.RTTime: 2118425 TestWord.ACC: 1 TestWord.RT: 840 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2118335 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2118425 Keyrelease: 2120083 ResponseTime: 1658 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1016 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1016 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1017 Block: 3 DelDur: NullDur: Word: OUTRAGEOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 131 Running: TestList TestList.Cycle: 1 TestList.Sample: 1017 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1018 Block: 3 DelDur: NullDur: Word: PATRIOTIC ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 164 Running: TestList TestList.Cycle: 1 TestList.Sample: 1018 TrialCount: 269 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2121650 TestWord.DurationError: 100 TestWord.RTTime: 2122601 TestWord.ACC: 1 TestWord.RT: 951 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2122400 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2122601 Keyrelease: 2124142 ResponseTime: 1541 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1019 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1019 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1020 Block: 3 DelDur: NullDur: Word: REGAL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 132 Running: TestList TestList.Cycle: 1 TestList.Sample: 1020 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1021 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1021 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1022 Block: 3 DelDur: NullDur: Word: TUNISIAN ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 134 Running: TestList TestList.Cycle: 1 TestList.Sample: 1022 TrialCount: 270 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2132214 TestWord.DurationError: 99 TestWord.RTTime: 2133337 TestWord.ACC: 1 TestWord.RT: 1123 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2132963 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2133337 Keyrelease: 2134714 ResponseTime: 1377 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1023 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1023 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1024 Block: 3 DelDur: NullDur: Word: DRIZZLY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 30 Running: TestList TestList.Cycle: 1 TestList.Sample: 1024 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1025 Block: 3 DelDur: NullDur: Word: DULL ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 34 Running: TestList TestList.Cycle: 1 TestList.Sample: 1025 TrialCount: 271 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2136279 TestWord.DurationError: 100 TestWord.RTTime: 2137449 TestWord.ACC: 1 TestWord.RT: 1170 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2137029 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2137449 Keyrelease: 2138772 ResponseTime: 1323 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1026 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1026 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1027 Block: 3 DelDur: NullDur: Word: INDUSTRIAL ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 45 Running: TestList TestList.Cycle: 1 TestList.Sample: 1027 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1028 Block: 3 DelDur: NullDur: PlaceList: 54 Word: VICIOUS ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1028 TrialCount: 272 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2140328 TestWord.DurationError: 99 TestWord.RTTime: 2142081 TestWord.ACC: 0 TestWord.RT: 1753 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2141078 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2142081 Keyrelease: 2142817 ResponseTime: 736 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1029 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1029 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1030 Block: 3 DelDur: NullDur: PlaceList: 35 Word: LEGAL ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1030 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1031 Block: 3 DelDur: NullDur: 6500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1031 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1032 Block: 3 DelDur: NullDur: Word: SLEEPY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 87 Running: TestList TestList.Cycle: 1 TestList.Sample: 1032 TrialCount: 273 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2150891 TestWord.DurationError: 100 TestWord.RTTime: 2151929 TestWord.ACC: 0 TestWord.RT: 1038 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2151641 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2151929 Keyrelease: 2153390 ResponseTime: 1461 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1033 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1033 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1034 Block: 3 DelDur: NullDur: Word: ARTIFICIAL ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 67 Running: TestList TestList.Cycle: 1 TestList.Sample: 1034 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1035 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1035 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1036 Block: 3 DelDur: NullDur: Word: EGYPTIAN ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 161 Running: TestList TestList.Cycle: 1 TestList.Sample: 1036 TrialCount: 274 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2156473 TestWord.DurationError: 99 TestWord.RTTime: 2157537 TestWord.ACC: 1 TestWord.RT: 1064 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2157223 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2157537 Keyrelease: 2158970 ResponseTime: 1433 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1037 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1037 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1038 Block: 3 DelDur: NullDur: Word: DRAMATIC ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 197 Running: TestList TestList.Cycle: 1 TestList.Sample: 1038 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1039 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1039 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1040 Block: 3 DelDur: NullDur: Word: PERFUMED ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 57 Running: TestList TestList.Cycle: 1 TestList.Sample: 1040 TrialCount: 275 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2161555 TestWord.DurationError: 99 TestWord.RTTime: 2162857 TestWord.ACC: 0 TestWord.RT: 1302 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2162304 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2162857 Keyrelease: 2164047 ResponseTime: 1190 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1041 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1041 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1042 Block: 3 DelDur: NullDur: Word: UNKEPT ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 78 Running: TestList TestList.Cycle: 1 TestList.Sample: 1042 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1043 Block: 3 DelDur: NullDur: Word: ELEGANT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 166 Running: TestList TestList.Cycle: 1 TestList.Sample: 1043 TrialCount: 276 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2171601 TestWord.DurationError: 100 TestWord.RTTime: 2173145 TestWord.ACC: 1 TestWord.RT: 1544 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2172351 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2173145 Keyrelease: 2174096 ResponseTime: 950 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1044 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1044 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1045 Block: 3 DelDur: NullDur: Word: EXTERIOR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 15 Running: TestList TestList.Cycle: 1 TestList.Sample: 1045 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1046 Block: 3 DelDur: NullDur: Word: MYSTICAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 185 Running: TestList TestList.Cycle: 1 TestList.Sample: 1046 TrialCount: 277 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2175650 TestWord.DurationError: 100 TestWord.RTTime: 2176793 TestWord.ACC: 1 TestWord.RT: 1143 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2176400 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2176794 Keyrelease: 2178145 ResponseTime: 1351 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1047 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1047 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1048 Block: 3 DelDur: NullDur: Word: NOISY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 63 Running: TestList TestList.Cycle: 1 TestList.Sample: 1048 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1049 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1049 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1050 Block: 3 DelDur: NullDur: PlaceList: 95 Word: AMPHIBIOUS ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1050 TrialCount: 278 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2182215 TestWord.DurationError: 99 TestWord.RTTime: 2183393 TestWord.ACC: 1 TestWord.RT: 1178 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2182964 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2183394 Keyrelease: 2184704 ResponseTime: 1310 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1051 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1051 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1052 Block: 3 DelDur: NullDur: PlaceList: 17 Word: DORMANT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1052 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1053 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1053 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1054 Block: 3 DelDur: NullDur: Word: MONUMENTAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 186 Running: TestList TestList.Cycle: 1 TestList.Sample: 1054 TrialCount: 279 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2194278 TestWord.DurationError: 99 TestWord.RTTime: 2196042 TestWord.ACC: 1 TestWord.RT: 1764 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2195027 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2196042 Keyrelease: 2196777 ResponseTime: 736 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1055 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1055 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1056 Block: 3 DelDur: NullDur: Word: NICE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 123 Running: TestList TestList.Cycle: 1 TestList.Sample: 1056 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1057 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1057 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1058 Block: 3 DelDur: NullDur: Word: POIGNANT ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 13 Running: TestList TestList.Cycle: 1 TestList.Sample: 1058 TrialCount: 280 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2206857 TestWord.DurationError: 99 TestWord.RTTime: 2208034 TestWord.ACC: 0 TestWord.RT: 1177 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2207607 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2208034 Keyrelease: 2209358 ResponseTime: 1324 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1059 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1059 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1060 Block: 3 DelDur: NullDur: Word: RADICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 169 Running: TestList TestList.Cycle: 1 TestList.Sample: 1060 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1061 Block: 3 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1061 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1062 Block: 3 DelDur: NullDur: PlaceList: 70 Word: HOT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1062 TrialCount: 281 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2214438 TestWord.DurationError: 99 TestWord.RTTime: 2216370 TestWord.ACC: 0 TestWord.RT: 1932 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2215188 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2216266 Keyrelease: 2216926 ResponseTime: 660 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1063 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1063 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1064 Block: 3 DelDur: NullDur: PlaceList: 77 Word: UNWOMANLY ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1064 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1065 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1065 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1066 Block: 3 DelDur: NullDur: PlaceList: 83 Word: HANDSOME ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1066 TrialCount: 282 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2219003 TestWord.DurationError: 100 TestWord.RTTime: 2220530 TestWord.ACC: 1 TestWord.RT: 1527 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2219753 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2220530 Keyrelease: 2221493 ResponseTime: 963 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1067 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1067 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1068 Block: 3 DelDur: NullDur: PlaceList: 11 Word: JEWISH ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1068 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1069 Block: 3 DelDur: NullDur: PlaceList: 22 Word: FOREIGN ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1069 TrialCount: 283 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2224052 TestWord.DurationError: 99 TestWord.RTTime: 2225890 TestWord.ACC: 1 TestWord.RT: 1838 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2224801 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2225890 Keyrelease: 2226546 ResponseTime: 656 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1070 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1070 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1071 Block: 3 DelDur: NullDur: PlaceList: 63 Word: DECADENT ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1071 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1072 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1072 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1073 Block: 3 DelDur: NullDur: Word: ROWDY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 8 Running: TestList TestList.Cycle: 1 TestList.Sample: 1073 TrialCount: 284 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2229616 TestWord.DurationError: 100 TestWord.RTTime: 2230746 TestWord.ACC: 1 TestWord.RT: 1130 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2230366 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2230746 Keyrelease: 2232110 ResponseTime: 1364 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1074 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1074 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1075 Block: 3 DelDur: NullDur: Word: BRIEF ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 98 Running: TestList TestList.Cycle: 1 TestList.Sample: 1075 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1076 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1076 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1077 Block: 3 DelDur: NullDur: Word: NOTORIOUS ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 38 Running: TestList TestList.Cycle: 1 TestList.Sample: 1077 TrialCount: 285 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2241679 TestWord.DurationError: 100 TestWord.RTTime: 2242898 TestWord.ACC: 1 TestWord.RT: 1219 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2242429 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2242898 Keyrelease: 2244168 ResponseTime: 1270 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1078 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1078 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1079 Block: 3 DelDur: NullDur: Word: OFFICIAL ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 56 Running: TestList TestList.Cycle: 1 TestList.Sample: 1079 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1080 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1080 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1081 Block: 3 DelDur: NullDur: Word: COMICAL ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 27 Running: TestList TestList.Cycle: 1 TestList.Sample: 1081 TrialCount: 286 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2248244 TestWord.DurationError: 100 TestWord.RTTime: 2250458 TestWord.ACC: 0 TestWord.RT: 2214 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2248994 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2249259 Keyrelease: 2250732 ResponseTime: 1473 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1082 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1082 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1083 Block: 3 DelDur: NullDur: Word: ANXIOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 144 Running: TestList TestList.Cycle: 1 TestList.Sample: 1083 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1084 Block: 3 DelDur: NullDur: Word: SNOBBISH ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 31 Running: TestList TestList.Cycle: 1 TestList.Sample: 1084 TrialCount: 287 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2252293 TestWord.DurationError: 99 TestWord.RTTime: 2253922 TestWord.ACC: 0 TestWord.RT: 1629 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2253042 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2253923 Keyrelease: 2254793 ResponseTime: 870 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1085 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1085 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1086 Block: 3 DelDur: NullDur: Word: BOYISH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 60 Running: TestList TestList.Cycle: 1 TestList.Sample: 1086 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1087 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1087 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1088 Block: 3 DelDur: NullDur: Word: GAUDY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 138 Running: TestList TestList.Cycle: 1 TestList.Sample: 1088 TrialCount: 288 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2262373 TestWord.DurationError: 99 TestWord.RTTime: 2264779 TestWord.ACC: 0 TestWord.RT: 2406 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2263123 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2263299 Keyrelease: 2264861 ResponseTime: 1562 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1089 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1089 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1090 Block: 3 DelDur: NullDur: Word: FORMAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 121 Running: TestList TestList.Cycle: 1 TestList.Sample: 1090 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1091 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1091 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1092 Block: 3 DelDur: NullDur: PlaceList: 10 Word: AMATEURISH ListOrigin: List7B Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1092 TrialCount: 289 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2274935 TestWord.DurationError: 100 TestWord.RTTime: 2276547 TestWord.ACC: 0 TestWord.RT: 1612 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2275685 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2276547 Keyrelease: 2277429 ResponseTime: 882 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1093 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1093 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1094 Block: 3 DelDur: NullDur: PlaceList: 16 Word: CENTENNIAL ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1094 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1095 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1095 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1096 Block: 3 DelDur: NullDur: Word: FLAT ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 72 Running: TestList TestList.Cycle: 1 TestList.Sample: 1096 TrialCount: 290 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2285499 TestWord.DurationError: 99 TestWord.RTTime: 2286867 TestWord.ACC: 1 TestWord.RT: 1368 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2286249 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2286867 Keyrelease: 2287992 ResponseTime: 1125 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1097 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1097 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1098 Block: 3 DelDur: NullDur: Word: GOTHIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 33 Running: TestList TestList.Cycle: 1 TestList.Sample: 1098 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1099 Block: 3 DelDur: NullDur: PlaceList: 79 Word: AMORPHOUS ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1099 TrialCount: 291 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2293546 TestWord.DurationError: 100 TestWord.RTTime: 2295659 TestWord.ACC: 1 TestWord.RT: 2113 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2294296 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2295659 Keyrelease: 2296034 ResponseTime: 375 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1100 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1100 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1101 Block: 3 DelDur: NullDur: PlaceList: 1 Word: SWEATY ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1101 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1102 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1102 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1103 Block: 3 DelDur: NullDur: Word: RARE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 42 Running: TestList TestList.Cycle: 1 TestList.Sample: 1103 TrialCount: 292 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2303610 TestWord.DurationError: 99 TestWord.RTTime: 2304923 TestWord.ACC: 1 TestWord.RT: 1313 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2304360 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2304923 Keyrelease: 2306101 ResponseTime: 1178 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1104 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1104 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1105 Block: 3 DelDur: NullDur: Word: SUBTLE ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 11 Running: TestList TestList.Cycle: 1 TestList.Sample: 1105 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1106 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1106 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1107 Block: 3 DelDur: NullDur: Word: MESSY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 133 Running: TestList TestList.Cycle: 1 TestList.Sample: 1107 TrialCount: 293 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2310174 TestWord.DurationError: 100 TestWord.RTTime: 2311955 TestWord.ACC: 0 TestWord.RT: 1781 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2310924 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2311955 Keyrelease: 2312664 ResponseTime: 709 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1108 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1108 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1109 Block: 3 DelDur: NullDur: Word: DOMINANT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 122 Running: TestList TestList.Cycle: 1 TestList.Sample: 1109 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1110 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1110 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1111 Block: 3 DelDur: NullDur: Word: PERSONABLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 52 Running: TestList TestList.Cycle: 1 TestList.Sample: 1111 TrialCount: 294 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2317739 TestWord.DurationError: 99 TestWord.RTTime: 2318939 TestWord.ACC: 1 TestWord.RT: 1200 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2318488 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2318940 Keyrelease: 2320235 ResponseTime: 1295 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1112 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1112 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1113 Block: 3 DelDur: NullDur: Word: SALTY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 86 Running: TestList TestList.Cycle: 1 TestList.Sample: 1113 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1114 Block: 3 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1114 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1115 Block: 3 DelDur: NullDur: PlaceList: 71 Word: HORRID ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1115 TrialCount: 295 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2326819 TestWord.DurationError: 100 TestWord.RTTime: 2327803 TestWord.ACC: 0 TestWord.RT: 984 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2327569 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2327804 Keyrelease: 2329317 ResponseTime: 1513 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1116 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1116 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1117 Block: 3 DelDur: NullDur: PlaceList: 18 Word: BLIND ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1117 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1118 Block: 3 DelDur: NullDur: Word: JOYOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 136 Running: TestList TestList.Cycle: 1 TestList.Sample: 1118 TrialCount: 296 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2330885 TestWord.DurationError: 99 TestWord.RTTime: 2332235 TestWord.ACC: 1 TestWord.RT: 1350 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2331634 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2332236 Keyrelease: 2333375 ResponseTime: 1139 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1119 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1119 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1120 Block: 3 DelDur: NullDur: Word: CULINARY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 126 Running: TestList TestList.Cycle: 1 TestList.Sample: 1120 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1121 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1121 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1122 Block: 3 DelDur: NullDur: Word: UNHEALTHY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 9 Running: TestList TestList.Cycle: 1 TestList.Sample: 1122 TrialCount: 297 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2335450 TestWord.DurationError: 99 TestWord.RTTime: 2336868 TestWord.ACC: 1 TestWord.RT: 1418 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2336200 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2336868 Keyrelease: 2337951 ResponseTime: 1083 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1123 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1123 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1124 Block: 3 DelDur: NullDur: Word: ASYMMETRIC ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 80 Running: TestList TestList.Cycle: 1 TestList.Sample: 1124 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1125 Block: 3 DelDur: NullDur: Word: GROTESQUE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 64 Running: TestList TestList.Cycle: 1 TestList.Sample: 1125 TrialCount: 298 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2345513 TestWord.DurationError: 100 TestWord.RTTime: 2346756 TestWord.ACC: 1 TestWord.RT: 1243 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2346263 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2346756 Keyrelease: 2348015 ResponseTime: 1259 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1126 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1126 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1127 Block: 3 DelDur: NullDur: Word: MANLY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 106 Running: TestList TestList.Cycle: 1 TestList.Sample: 1127 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1128 Block: 3 DelDur: NullDur: PlaceList: 94 Word: ANGULAR ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1128 TrialCount: 299 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2349579 TestWord.DurationError: 99 TestWord.RTTime: 2350260 TestWord.ACC: 1 TestWord.RT: 681 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2350328 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2350332 Keyrelease: 2352072 ResponseTime: 1740 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1129 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1129 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1130 Block: 3 DelDur: NullDur: PlaceList: 31 Word: TACKY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1130 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1131 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1131 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1132 Block: 3 DelDur: NullDur: Word: FORENSIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 55 Running: TestList TestList.Cycle: 1 TestList.Sample: 1132 TrialCount: 300 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2359642 TestWord.DurationError: 100 TestWord.RTTime: 2360268 TestWord.ACC: 0 TestWord.RT: 626 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2360392 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2360396 Keyrelease: 2362136 ResponseTime: 1740 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1133 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1133 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1134 Block: 3 DelDur: NullDur: Word: ADAPTABLE ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 64 Running: TestList TestList.Cycle: 1 TestList.Sample: 1134 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1135 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1135 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: BreakProc TestList: 1136 Block: 3 DelDur: NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1136 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1137 Block: 4 DelDur: NullDur: PlaceList: 45 Word: VILE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1137 TrialCount: 301 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2391382 TestWord.DurationError: 100 TestWord.RTTime: 2392716 TestWord.ACC: 1 TestWord.RT: 1334 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2392132 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2392717 Keyrelease: 2393880 ResponseTime: 1163 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1138 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1138 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1139 Block: 4 DelDur: NullDur: PlaceList: 87 Word: FOOLISH ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1139 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1140 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1140 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1141 Block: 4 DelDur: NullDur: PlaceList: 28 Word: HOSPITABLE ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1141 TrialCount: 302 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2396964 TestWord.DurationError: 99 TestWord.RTTime: 2398132 TestWord.ACC: 1 TestWord.RT: 1168 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2397714 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2398133 Keyrelease: 2399456 ResponseTime: 1323 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1142 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1142 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1143 Block: 4 DelDur: NullDur: PlaceList: 82 Word: PLACID ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1143 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1144 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1144 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1145 Block: 4 DelDur: NullDur: Word: FLOWERY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 17 Running: TestList TestList.Cycle: 1 TestList.Sample: 1145 TrialCount: 303 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2406028 TestWord.DurationError: 99 TestWord.RTTime: 2407021 TestWord.ACC: 0 TestWord.RT: 993 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2406777 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2407021 Keyrelease: 2408519 ResponseTime: 1498 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1146 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1146 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1147 Block: 4 DelDur: NullDur: Word: FULL ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 15 Running: TestList TestList.Cycle: 1 TestList.Sample: 1147 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1148 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1148 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1149 Block: 4 DelDur: NullDur: Word: MEDIEVAL ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 97 Running: TestList TestList.Cycle: 1 TestList.Sample: 1149 TrialCount: 304 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2418090 TestWord.DurationError: 100 TestWord.RTTime: 2419165 TestWord.ACC: 0 TestWord.RT: 1075 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2418840 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2419165 Keyrelease: 2420582 ResponseTime: 1417 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1150 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1150 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1151 Block: 4 DelDur: NullDur: Word: RIGHTEOUS ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 13 Running: TestList TestList.Cycle: 1 TestList.Sample: 1151 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1152 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1152 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1153 Block: 4 DelDur: NullDur: PlaceList: 88 Word: ATHLETIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1153 TrialCount: 305 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2424155 TestWord.DurationError: 100 TestWord.RTTime: 2425293 TestWord.ACC: 1 TestWord.RT: 1138 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2424905 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2425293 Keyrelease: 2426645 ResponseTime: 1352 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1154 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1154 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1155 Block: 4 DelDur: NullDur: PlaceList: 91 Word: GAY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1155 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1156 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1156 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1157 Block: 4 DelDur: NullDur: Word: POMPOUS ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 49 Running: TestList TestList.Cycle: 1 TestList.Sample: 1157 TrialCount: 306 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2429220 TestWord.DurationError: 100 TestWord.RTTime: 2430877 TestWord.ACC: 1 TestWord.RT: 1657 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2429970 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2430877 Keyrelease: 2431721 ResponseTime: 844 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1158 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1158 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1159 Block: 4 DelDur: NullDur: Word: EVIL ListOrigin: List1B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 100 Running: TestList TestList.Cycle: 1 TestList.Sample: 1159 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1160 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1160 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1161 Block: 4 DelDur: NullDur: Word: POLITICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 175 Running: TestList TestList.Cycle: 1 TestList.Sample: 1161 TrialCount: 307 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2437801 TestWord.DurationError: 99 TestWord.RTTime: 2438941 TestWord.ACC: 1 TestWord.RT: 1140 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2438551 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2438941 Keyrelease: 2440293 ResponseTime: 1352 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1162 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1162 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1163 Block: 4 DelDur: NullDur: Word: OMNIPOTENT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 102 Running: TestList TestList.Cycle: 1 TestList.Sample: 1163 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1164 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1164 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1165 Block: 4 DelDur: NullDur: Word: VILLAINOUS ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 96 Running: TestList TestList.Cycle: 1 TestList.Sample: 1165 TrialCount: 308 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2442366 TestWord.DurationError: 100 TestWord.RTTime: 2443549 TestWord.ACC: 1 TestWord.RT: 1183 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2443116 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2443549 Keyrelease: 2444861 ResponseTime: 1312 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1166 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1166 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1167 Block: 4 DelDur: NullDur: Word: MEDICAL ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 21 Running: TestList TestList.Cycle: 1 TestList.Sample: 1167 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1168 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1168 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1169 Block: 4 DelDur: NullDur: Word: BANKRUPT ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 14 Running: TestList TestList.Cycle: 1 TestList.Sample: 1169 TrialCount: 309 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2447431 TestWord.DurationError: 100 TestWord.RTTime: 2448253 TestWord.ACC: 1 TestWord.RT: 822 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2448181 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2448253 Keyrelease: 2449928 ResponseTime: 1675 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1170 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1170 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1171 Block: 4 DelDur: NullDur: Word: BARE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 98 Running: TestList TestList.Cycle: 1 TestList.Sample: 1171 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1172 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1172 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1173 Block: 4 DelDur: NullDur: PlaceList: 4 Word: DOMESTIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1173 TrialCount: 310 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2452013 TestWord.DurationError: 100 TestWord.RTTime: 2453757 TestWord.ACC: 0 TestWord.RT: 1744 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2452763 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2453717 Keyrelease: 2454501 ResponseTime: 783 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1174 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1174 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1175 Block: 4 DelDur: NullDur: PlaceList: 96 Word: GOLDEN ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1175 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1176 Block: 4 DelDur: NullDur: Word: JUVENILE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 36 Running: TestList TestList.Cycle: 1 TestList.Sample: 1176 TrialCount: 311 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2456062 TestWord.DurationError: 99 TestWord.RTTime: 2456957 TestWord.ACC: 0 TestWord.RT: 895 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2456812 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2456957 Keyrelease: 2458562 ResponseTime: 1604 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1177 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1177 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1178 Block: 4 DelDur: NullDur: Word: BRILLIANT ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 62 Running: TestList TestList.Cycle: 1 TestList.Sample: 1178 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1179 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1179 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1180 Block: 4 DelDur: NullDur: Word: ABOMINABLE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 76 Running: TestList TestList.Cycle: 1 TestList.Sample: 1180 TrialCount: 312 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2463143 TestWord.DurationError: 100 TestWord.RTTime: 2464173 TestWord.ACC: 1 TestWord.RT: 1030 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2463893 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2464174 Keyrelease: 2465634 ResponseTime: 1460 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1181 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1181 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1182 Block: 4 DelDur: NullDur: Word: ABYSMAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 182 Running: TestList TestList.Cycle: 1 TestList.Sample: 1182 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1183 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1183 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1184 Block: 4 DelDur: NullDur: PlaceList: 61 Word: SEEDY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1184 TrialCount: 313 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2467708 TestWord.DurationError: 100 TestWord.RTTime: 2468917 TestWord.ACC: 1 TestWord.RT: 1209 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2468458 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2468918 Keyrelease: 2470201 ResponseTime: 1283 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1185 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1185 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1186 Block: 4 DelDur: NullDur: PlaceList: 5 Word: REPULSIVE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1186 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1187 Block: 4 DelDur: NullDur: PlaceList: 81 Word: AFFLUENT ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1187 TrialCount: 314 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2471757 TestWord.DurationError: 99 TestWord.RTTime: 2472790 TestWord.ACC: 1 TestWord.RT: 1033 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2472507 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2472790 Keyrelease: 2474251 ResponseTime: 1461 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1188 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1188 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1189 Block: 4 DelDur: NullDur: PlaceList: 100 Word: IDYLLIC ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1189 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1190 Block: 4 DelDur: NullDur: Word: ALBANIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 32 Running: TestList TestList.Cycle: 1 TestList.Sample: 1190 TrialCount: 315 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2476805 TestWord.DurationError: 100 TestWord.RTTime: 2477486 TestWord.ACC: 1 TestWord.RT: 681 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2477555 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2477559 Keyrelease: 2479300 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1191 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1191 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1192 Block: 4 DelDur: NullDur: Word: FUNNY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 145 Running: TestList TestList.Cycle: 1 TestList.Sample: 1192 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1193 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1193 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1194 Block: 4 DelDur: NullDur: Word: DISTINCT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 120 Running: TestList TestList.Cycle: 1 TestList.Sample: 1194 TrialCount: 316 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2481371 TestWord.DurationError: 99 TestWord.RTTime: 2482638 TestWord.ACC: 1 TestWord.RT: 1267 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2482120 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2482638 Keyrelease: 2483867 ResponseTime: 1229 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1195 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1195 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1196 Block: 4 DelDur: NullDur: Word: CHEAP ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 193 Running: TestList TestList.Cycle: 1 TestList.Sample: 1196 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1197 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1197 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1198 Block: 4 DelDur: NullDur: Word: CREATIVE ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 146 Running: TestList TestList.Cycle: 1 TestList.Sample: 1198 TrialCount: 317 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2486952 TestWord.DurationError: 100 TestWord.RTTime: 2487566 TestWord.ACC: 1 TestWord.RT: 614 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2487702 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2487706 Keyrelease: 2489448 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1199 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1199 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1200 Block: 4 DelDur: NullDur: Word: VAIN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 190 Running: TestList TestList.Cycle: 1 TestList.Sample: 1200 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1201 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1201 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1202 Block: 4 DelDur: NullDur: Word: PATERNAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 176 Running: TestList TestList.Cycle: 1 TestList.Sample: 1202 TrialCount: 318 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2493034 TestWord.DurationError: 99 TestWord.RTTime: 2494054 TestWord.ACC: 1 TestWord.RT: 1020 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2493783 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2494054 Keyrelease: 2495525 ResponseTime: 1471 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1203 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1203 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1204 Block: 4 DelDur: NullDur: Word: DETECTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 171 Running: TestList TestList.Cycle: 1 TestList.Sample: 1204 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1205 Block: 4 DelDur: NullDur: Word: TRASHY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 178 Running: TestList TestList.Cycle: 1 TestList.Sample: 1205 TrialCount: 319 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2497082 TestWord.DurationError: 100 TestWord.RTTime: 2497814 TestWord.ACC: 1 TestWord.RT: 732 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2497832 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2497837 Keyrelease: 2499578 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1206 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1206 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1207 Block: 4 DelDur: NullDur: Word: DISASTROUS ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 42 Running: TestList TestList.Cycle: 1 TestList.Sample: 1207 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1208 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1208 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1209 Block: 4 DelDur: NullDur: Word: BOVINE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 81 Running: TestList TestList.Cycle: 1 TestList.Sample: 1209 TrialCount: 320 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2508662 TestWord.DurationError: 99 TestWord.RTTime: 2509678 TestWord.ACC: 1 TestWord.RT: 1016 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2509412 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2509678 Keyrelease: 2511151 ResponseTime: 1473 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1210 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1210 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1211 Block: 4 DelDur: NullDur: Word: WEIRD ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 140 Running: TestList TestList.Cycle: 1 TestList.Sample: 1211 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1212 Block: 4 DelDur: NullDur: Word: BLUE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 124 Running: TestList TestList.Cycle: 1 TestList.Sample: 1212 TrialCount: 321 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2513710 TestWord.DurationError: 100 TestWord.RTTime: 2514438 TestWord.ACC: 1 TestWord.RT: 728 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2514460 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2514465 Keyrelease: 2516205 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1213 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1213 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1214 Block: 4 DelDur: NullDur: Word: AMBITIOUS ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 16 Running: TestList TestList.Cycle: 1 TestList.Sample: 1214 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1215 Block: 4 DelDur: NullDur: Word: PERSIAN ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 88 Running: TestList TestList.Cycle: 1 TestList.Sample: 1215 TrialCount: 322 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2517759 TestWord.DurationError: 100 TestWord.RTTime: 2518774 TestWord.ACC: 0 TestWord.RT: 1015 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2518509 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2518774 Keyrelease: 2520258 ResponseTime: 1485 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1216 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1216 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1217 Block: 4 DelDur: NullDur: Word: BARBARIC ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 69 Running: TestList TestList.Cycle: 1 TestList.Sample: 1217 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1218 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1218 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1219 Block: 4 DelDur: NullDur: Word: DIPLOMATIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 69 Running: TestList TestList.Cycle: 1 TestList.Sample: 1219 TrialCount: 323 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2523840 TestWord.DurationError: 100 TestWord.RTTime: 2524622 TestWord.ACC: 1 TestWord.RT: 782 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2524590 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2524622 Keyrelease: 2526335 ResponseTime: 1713 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1220 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1220 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1221 Block: 4 DelDur: NullDur: Word: ATTRACTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 170 Running: TestList TestList.Cycle: 1 TestList.Sample: 1221 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1222 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1222 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1223 Block: 4 DelDur: NullDur: Word: FAST ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 59 Running: TestList TestList.Cycle: 1 TestList.Sample: 1223 TrialCount: 324 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2535903 TestWord.DurationError: 100 TestWord.RTTime: 2536622 TestWord.ACC: 0 TestWord.RT: 719 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2536653 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2536657 Keyrelease: 2538398 ResponseTime: 1741 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1224 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1224 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1225 Block: 4 DelDur: NullDur: Word: CLASSY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 24 Running: TestList TestList.Cycle: 1 TestList.Sample: 1225 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1226 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1226 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1227 Block: 4 DelDur: NullDur: Word: AUSTRALIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 65 Running: TestList TestList.Cycle: 1 TestList.Sample: 1227 TrialCount: 325 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2546967 TestWord.DurationError: 99 TestWord.RTTime: 2547743 TestWord.ACC: 1 TestWord.RT: 776 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2547716 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2547743 Keyrelease: 2549457 ResponseTime: 1714 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1228 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1228 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1229 Block: 4 DelDur: NullDur: Word: HISTORICAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 22 Running: TestList TestList.Cycle: 1 TestList.Sample: 1229 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1230 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1230 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1231 Block: 4 DelDur: NullDur: Word: GENEROUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 143 Running: TestList TestList.Cycle: 1 TestList.Sample: 1231 TrialCount: 326 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2556530 TestWord.DurationError: 100 TestWord.RTTime: 2558063 TestWord.ACC: 1 TestWord.RT: 1533 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2557280 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2558063 Keyrelease: 2559026 ResponseTime: 963 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1232 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1232 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1233 Block: 4 DelDur: NullDur: Word: EXCLUSIVE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 94 Running: TestList TestList.Cycle: 1 TestList.Sample: 1233 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1234 Block: 4 DelDur: NullDur: PlaceList: 97 Word: LONELY ListOrigin: List3A Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1234 TrialCount: 327 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2564578 TestWord.DurationError: 99 TestWord.RTTime: 2566215 TestWord.ACC: 0 TestWord.RT: 1637 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2565327 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2566215 Keyrelease: 2567071 ResponseTime: 856 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1235 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1235 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1236 Block: 4 DelDur: NullDur: PlaceList: 25 Word: CHEESY ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1236 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1237 Block: 4 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1237 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1238 Block: 4 DelDur: NullDur: Word: TECHY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 101 Running: TestList TestList.Cycle: 1 TestList.Sample: 1238 TrialCount: 328 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2577140 TestWord.DurationError: 100 TestWord.RTTime: 2577799 TestWord.ACC: 1 TestWord.RT: 659 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2577890 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2577895 Keyrelease: 2579633 ResponseTime: 1738 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1239 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1239 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1240 Block: 4 DelDur: NullDur: Word: INDECENT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 160 Running: TestList TestList.Cycle: 1 TestList.Sample: 1240 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1241 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1241 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1242 Block: 4 DelDur: NullDur: PlaceList: 48 Word: RECENT ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1242 TrialCount: 329 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2584205 TestWord.DurationError: 99 TestWord.RTTime: 2585175 TestWord.ACC: 1 TestWord.RT: 970 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2584955 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2585175 Keyrelease: 2586700 ResponseTime: 1525 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1243 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1243 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1244 Block: 4 DelDur: NullDur: PlaceList: 74 Word: AFRICAN ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1244 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1245 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1245 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1246 Block: 4 DelDur: NullDur: Word: SHARP ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 23 Running: TestList TestList.Cycle: 1 TestList.Sample: 1246 TrialCount: 330 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2589270 TestWord.DurationError: 100 TestWord.RTTime: 2590127 TestWord.ACC: 1 TestWord.RT: 857 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2590020 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2590127 Keyrelease: 2591759 ResponseTime: 1632 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1247 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1247 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1248 Block: 4 DelDur: NullDur: Word: BUFF ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 110 Running: TestList TestList.Cycle: 1 TestList.Sample: 1248 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1249 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1249 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1250 Block: 4 DelDur: NullDur: Word: ALGEBRAIC ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 6 Running: TestList TestList.Cycle: 1 TestList.Sample: 1250 TrialCount: 331 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2593835 TestWord.DurationError: 100 TestWord.RTTime: 2595303 TestWord.ACC: 1 TestWord.RT: 1468 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2594585 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2595303 Keyrelease: 2596335 ResponseTime: 1031 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1251 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1251 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1252 Block: 4 DelDur: NullDur: Word: BROTHERLY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 90 Running: TestList TestList.Cycle: 1 TestList.Sample: 1252 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1253 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1253 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1254 Block: 4 DelDur: NullDur: Word: ITALIAN ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 96 Running: TestList TestList.Cycle: 1 TestList.Sample: 1254 TrialCount: 332 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2605415 TestWord.DurationError: 99 TestWord.RTTime: 2606271 TestWord.ACC: 1 TestWord.RT: 856 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2606165 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2606272 Keyrelease: 2607916 ResponseTime: 1644 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1255 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1255 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1256 Block: 4 DelDur: NullDur: Word: AFLOAT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 163 Running: TestList TestList.Cycle: 1 TestList.Sample: 1256 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1257 Block: 4 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1257 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1258 Block: 4 DelDur: NullDur: Word: FLUFFY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 180 Running: TestList TestList.Cycle: 1 TestList.Sample: 1258 TrialCount: 333 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2613496 TestWord.DurationError: 99 TestWord.RTTime: 2614975 TestWord.ACC: 1 TestWord.RT: 1479 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2614245 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2614976 Keyrelease: 2615992 ResponseTime: 1017 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1259 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1259 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1260 Block: 4 DelDur: NullDur: Word: COLD ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 24 Running: TestList TestList.Cycle: 1 TestList.Sample: 1260 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1261 Block: 4 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1261 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1262 Block: 4 DelDur: NullDur: Word: LITERARY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 198 Running: TestList TestList.Cycle: 1 TestList.Sample: 1262 TrialCount: 334 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2627575 TestWord.DurationError: 99 TestWord.RTTime: 2628856 TestWord.ACC: 0 TestWord.RT: 1281 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2628324 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2628856 Keyrelease: 2630074 ResponseTime: 1218 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1263 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1263 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1264 Block: 4 DelDur: NullDur: Word: AWFUL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 117 Running: TestList TestList.Cycle: 1 TestList.Sample: 1264 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1265 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1265 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1266 Block: 4 DelDur: NullDur: Word: BOURGEOIS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 183 Running: TestList TestList.Cycle: 1 TestList.Sample: 1266 TrialCount: 335 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2633156 TestWord.DurationError: 100 TestWord.RTTime: 2634040 TestWord.ACC: 1 TestWord.RT: 884 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2633906 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2634040 Keyrelease: 2635646 ResponseTime: 1606 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1267 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1267 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1268 Block: 4 DelDur: NullDur: Word: PROUD ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 196 Running: TestList TestList.Cycle: 1 TestList.Sample: 1268 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1269 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1269 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1270 Block: 4 DelDur: NullDur: PlaceList: 51 Word: FISHY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1270 TrialCount: 336 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2638721 TestWord.DurationError: 99 TestWord.RTTime: 2639944 TestWord.ACC: 1 TestWord.RT: 1223 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2639471 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2639944 Keyrelease: 2641217 ResponseTime: 1273 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1271 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1271 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1272 Block: 4 DelDur: NullDur: PlaceList: 62 Word: ILLUSORY ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1272 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1273 Block: 4 DelDur: NullDur: Word: NEEDY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 35 Running: TestList TestList.Cycle: 1 TestList.Sample: 1273 TrialCount: 337 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2648784 TestWord.DurationError: 100 TestWord.RTTime: 2650176 TestWord.ACC: 1 TestWord.RT: 1392 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2649534 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2650176 Keyrelease: 2651273 ResponseTime: 1097 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1274 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1274 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1275 Block: 4 DelDur: NullDur: Word: VULGAR ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 28 Running: TestList TestList.Cycle: 1 TestList.Sample: 1275 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1276 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1276 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1277 Block: 4 DelDur: NullDur: Word: FUZZY ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 52 Running: TestList TestList.Cycle: 1 TestList.Sample: 1277 TrialCount: 338 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2659848 TestWord.DurationError: 100 TestWord.RTTime: 2660776 TestWord.ACC: 0 TestWord.RT: 928 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2660597 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2660776 Keyrelease: 2662344 ResponseTime: 1567 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1278 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1278 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1279 Block: 4 DelDur: NullDur: Word: INTACT ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 53 Running: TestList TestList.Cycle: 1 TestList.Sample: 1279 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1280 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1280 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1281 Block: 4 DelDur: NullDur: Word: HOLY ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 74 Running: TestList TestList.Cycle: 1 TestList.Sample: 1281 TrialCount: 339 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2665429 TestWord.DurationError: 100 TestWord.RTTime: 2667047 TestWord.ACC: 1 TestWord.RT: 1618 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2666179 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2667048 Keyrelease: 2667929 ResponseTime: 881 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1282 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1282 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1283 Block: 4 DelDur: NullDur: Word: DEVILISH ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 73 Running: TestList TestList.Cycle: 1 TestList.Sample: 1283 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1284 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1284 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1285 Block: 4 DelDur: NullDur: Word: GENTLE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 44 Running: TestList TestList.Cycle: 1 TestList.Sample: 1285 TrialCount: 340 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2670011 TestWord.DurationError: 100 TestWord.RTTime: 2671248 TestWord.ACC: 1 TestWord.RT: 1237 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2670761 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2671249 Keyrelease: 2672505 ResponseTime: 1257 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1286 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1286 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1287 Block: 4 DelDur: NullDur: Word: AGED ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 192 Running: TestList TestList.Cycle: 1 TestList.Sample: 1287 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1288 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1288 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1289 Block: 4 DelDur: NullDur: PlaceList: 44 Word: CONFIDENT ListOrigin: List4A Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1289 TrialCount: 341 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2675576 TestWord.DurationError: 99 TestWord.RTTime: 2676528 TestWord.ACC: 0 TestWord.RT: 952 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2676326 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2676529 Keyrelease: 2678068 ResponseTime: 1539 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1290 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1290 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1291 Block: 4 DelDur: NullDur: PlaceList: 92 Word: TRIUMPHANT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1291 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1292 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1292 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1293 Block: 4 DelDur: NullDur: Word: FANCY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 66 Running: TestList TestList.Cycle: 1 TestList.Sample: 1293 TrialCount: 342 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2686639 TestWord.DurationError: 100 TestWord.RTTime: 2687905 TestWord.ACC: 1 TestWord.RT: 1266 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2687389 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2687905 Keyrelease: 2689136 ResponseTime: 1231 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1294 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1294 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1295 Block: 4 DelDur: NullDur: Word: CHORAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 156 Running: TestList TestList.Cycle: 1 TestList.Sample: 1295 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1296 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1296 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1297 Block: 4 DelDur: NullDur: Word: FUNKY ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 153 Running: TestList TestList.Cycle: 1 TestList.Sample: 1297 TrialCount: 343 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2697719 TestWord.DurationError: 100 TestWord.RTTime: 2699489 TestWord.ACC: 0 TestWord.RT: 1770 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2698469 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2699489 Keyrelease: 2700213 ResponseTime: 724 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1298 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1298 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1299 Block: 4 DelDur: NullDur: Word: RICH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 73 Running: TestList TestList.Cycle: 1 TestList.Sample: 1299 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1300 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1300 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1301 Block: 4 DelDur: NullDur: PlaceList: 6 Word: CLERICAL ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1301 TrialCount: 344 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2702784 TestWord.DurationError: 100 TestWord.RTTime: 2703681 TestWord.ACC: 1 TestWord.RT: 897 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2703534 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2703681 Keyrelease: 2705276 ResponseTime: 1595 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1302 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1302 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1303 Block: 4 DelDur: NullDur: PlaceList: 9 Word: CLEVER ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1303 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1304 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1304 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1305 Block: 4 DelDur: NullDur: Word: AGLOW ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 77 Running: TestList TestList.Cycle: 1 TestList.Sample: 1305 TrialCount: 345 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2712348 TestWord.DurationError: 99 TestWord.RTTime: 2713249 TestWord.ACC: 1 TestWord.RT: 901 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2713098 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2713249 Keyrelease: 2714843 ResponseTime: 1594 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1306 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1306 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1307 Block: 4 DelDur: NullDur: Word: JAMAICAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 5 Running: TestList TestList.Cycle: 1 TestList.Sample: 1307 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1308 Block: 4 DelDur: NullDur: Word: BOTANICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 104 Running: TestList TestList.Cycle: 1 TestList.Sample: 1308 TrialCount: 346 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2716397 TestWord.DurationError: 99 TestWord.RTTime: 2717473 TestWord.ACC: 1 TestWord.RT: 1076 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2717146 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2717473 Keyrelease: 2718893 ResponseTime: 1420 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1309 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1309 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1310 Block: 4 DelDur: NullDur: Word: DARK ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 100 Running: TestList TestList.Cycle: 1 TestList.Sample: 1310 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1311 Block: 4 DelDur: NullDur: Word: SECRETIVE ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 50 Running: TestList TestList.Cycle: 1 TestList.Sample: 1311 TrialCount: 347 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2721462 TestWord.DurationError: 99 TestWord.RTTime: 2722329 TestWord.ACC: 0 TestWord.RT: 867 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2722211 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2722329 Keyrelease: 2723960 ResponseTime: 1631 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1312 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1312 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1313 Block: 4 DelDur: NullDur: Word: BRIDAL ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 12 Running: TestList TestList.Cycle: 1 TestList.Sample: 1313 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1314 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1314 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1315 Block: 4 DelDur: NullDur: PlaceList: 7 Word: PATHOLOGIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1315 TrialCount: 348 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2727543 TestWord.DurationError: 100 TestWord.RTTime: 2728193 TestWord.ACC: 0 TestWord.RT: 650 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2728293 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2728297 Keyrelease: 2730036 ResponseTime: 1739 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1316 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1316 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1317 Block: 4 DelDur: NullDur: PlaceList: 60 Word: OUTDOOR ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1317 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1318 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1318 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1319 Block: 4 DelDur: NullDur: PlaceList: 56 Word: ABLAZE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1319 TrialCount: 349 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2737607 TestWord.DurationError: 99 TestWord.RTTime: 2738769 TestWord.ACC: 1 TestWord.RT: 1162 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2738356 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2738769 Keyrelease: 2740095 ResponseTime: 1325 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1320 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1320 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1321 Block: 4 DelDur: NullDur: PlaceList: 40 Word: FAINT ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1321 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1322 Block: 4 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1322 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1323 Block: 4 DelDur: NullDur: Word: AFLAME ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 184 Running: TestList TestList.Cycle: 1 TestList.Sample: 1323 TrialCount: 350 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2746670 TestWord.DurationError: 100 TestWord.RTTime: 2747761 TestWord.ACC: 1 TestWord.RT: 1091 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2747420 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2747762 Keyrelease: 2749167 ResponseTime: 1405 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1324 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1324 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1325 Block: 4 DelDur: NullDur: Word: CERAMIC ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 89 Running: TestList TestList.Cycle: 1 TestList.Sample: 1325 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1326 Block: 4 DelDur: NullDur: PlaceList: 39 Word: VETERINARY ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1326 TrialCount: 351 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2754734 TestWord.DurationError: 100 TestWord.RTTime: 2755625 TestWord.ACC: 1 TestWord.RT: 891 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2755484 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2755626 Keyrelease: 2757234 ResponseTime: 1609 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1327 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1327 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1328 Block: 4 DelDur: NullDur: PlaceList: 38 Word: BUOYANT ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1328 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1329 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1329 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1330 Block: 4 DelDur: NullDur: PlaceList: 26 Word: SPECIAL ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1330 TrialCount: 352 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2765814 TestWord.DurationError: 100 TestWord.RTTime: 2766890 TestWord.ACC: 1 TestWord.RT: 1076 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2766564 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2766890 Keyrelease: 2768311 ResponseTime: 1421 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1331 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1331 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1332 Block: 4 DelDur: NullDur: PlaceList: 65 Word: ASSYRIAN ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1332 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1333 Block: 4 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1333 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1334 Block: 4 DelDur: NullDur: Word: AWESOME ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 9 Running: TestList TestList.Cycle: 1 TestList.Sample: 1334 TrialCount: 353 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2774895 TestWord.DurationError: 99 TestWord.RTTime: 2776082 TestWord.ACC: 0 TestWord.RT: 1187 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2775645 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2775970 Keyrelease: 2777383 ResponseTime: 1413 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1335 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1335 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1336 Block: 4 DelDur: NullDur: Word: POSTAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 187 Running: TestList TestList.Cycle: 1 TestList.Sample: 1336 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1337 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1337 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1338 Block: 4 DelDur: NullDur: Word: ANGRY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 45 Running: TestList TestList.Cycle: 1 TestList.Sample: 1338 TrialCount: 354 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2782459 TestWord.DurationError: 100 TestWord.RTTime: 2784002 TestWord.ACC: 0 TestWord.RT: 1543 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2783209 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2784002 Keyrelease: 2784952 ResponseTime: 950 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1339 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1339 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1340 Block: 4 DelDur: NullDur: Word: BIBLICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 167 Running: TestList TestList.Cycle: 1 TestList.Sample: 1340 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1341 Block: 4 DelDur: NullDur: Word: SWEET ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 47 Running: TestList TestList.Cycle: 1 TestList.Sample: 1341 TrialCount: 355 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2786508 TestWord.DurationError: 99 TestWord.RTTime: 2787498 TestWord.ACC: 1 TestWord.RT: 990 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2787258 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2787498 Keyrelease: 2788996 ResponseTime: 1498 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1342 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1342 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1343 Block: 4 DelDur: NullDur: Word: HECTIC ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 108 Running: TestList TestList.Cycle: 1 TestList.Sample: 1343 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1344 Block: 4 DelDur: NullDur: Word: HYPNOTIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 54 Running: TestList TestList.Cycle: 1 TestList.Sample: 1344 TrialCount: 356 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2795555 TestWord.DurationError: 99 TestWord.RTTime: 2796338 TestWord.ACC: 1 TestWord.RT: 783 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2796305 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2796338 Keyrelease: 2798050 ResponseTime: 1712 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1345 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1345 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1346 Block: 4 DelDur: NullDur: Word: DUMPY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 53 Running: TestList TestList.Cycle: 1 TestList.Sample: 1346 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1347 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1347 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1348 Block: 4 DelDur: NullDur: Word: CHIC ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 162 Running: TestList TestList.Cycle: 1 TestList.Sample: 1348 TrialCount: 357 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2804619 TestWord.DurationError: 99 TestWord.RTTime: 2805426 TestWord.ACC: 1 TestWord.RT: 807 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2805369 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2805426 Keyrelease: 2807113 ResponseTime: 1686 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1349 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1349 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1350 Block: 4 DelDur: NullDur: Word: URBAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 70 Running: TestList TestList.Cycle: 1 TestList.Sample: 1350 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1351 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1351 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1352 Block: 4 DelDur: NullDur: PlaceList: 98 Word: DEATHLY ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1352 TrialCount: 358 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2809184 TestWord.DurationError: 99 TestWord.RTTime: 2809890 TestWord.ACC: 1 TestWord.RT: 706 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2809934 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2809938 Keyrelease: 2811676 ResponseTime: 1738 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1353 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1353 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1354 Block: 4 DelDur: NullDur: PlaceList: 14 Word: SOLITARY ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1354 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1355 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1355 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1356 Block: 4 DelDur: NullDur: PlaceList: 13 Word: AIRBORNE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1356 TrialCount: 359 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2814249 TestWord.DurationError: 100 TestWord.RTTime: 2815090 TestWord.ACC: 1 TestWord.RT: 841 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2814999 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2815091 Keyrelease: 2816739 ResponseTime: 1648 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1357 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1357 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1358 Block: 4 DelDur: NullDur: PlaceList: 21 Word: LIVELY ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1358 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1359 Block: 4 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1359 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1360 Block: 4 DelDur: NullDur: Word: MURDEROUS ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 59 Running: TestList TestList.Cycle: 1 TestList.Sample: 1360 TrialCount: 360 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2822313 TestWord.DurationError: 100 TestWord.RTTime: 2823058 TestWord.ACC: 1 TestWord.RT: 745 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2823063 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2823067 Keyrelease: 2824806 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1361 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1361 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1362 Block: 4 DelDur: NullDur: Word: YIDDISH ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 85 Running: TestList TestList.Cycle: 1 TestList.Sample: 1362 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1363 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1363 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1364 Block: 4 DelDur: NullDur: Word: ZEALOUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 19 Running: TestList TestList.Cycle: 1 TestList.Sample: 1364 TrialCount: 361 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2832877 TestWord.DurationError: 99 TestWord.RTTime: 2834323 TestWord.ACC: 1 TestWord.RT: 1446 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2833626 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2834323 Keyrelease: 2835365 ResponseTime: 1042 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1365 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1365 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1366 Block: 4 DelDur: NullDur: Word: WOMANLIKE ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 3 Running: TestList TestList.Cycle: 1 TestList.Sample: 1366 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1367 Block: 4 DelDur: NullDur: PlaceList: 59 Word: OPPRESSIVE ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1367 TrialCount: 362 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2840924 TestWord.DurationError: 99 TestWord.RTTime: 2842043 TestWord.ACC: 1 TestWord.RT: 1119 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2841674 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2842043 Keyrelease: 2843423 ResponseTime: 1380 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1368 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1368 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1369 Block: 4 DelDur: NullDur: PlaceList: 76 Word: DREAMY ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1369 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1370 Block: 4 DelDur: NullDur: 7000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1370 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1371 Block: 4 DelDur: NullDur: PlaceList: 72 Word: SQUARE ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1371 TrialCount: 363 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2858002 TestWord.DurationError: 99 TestWord.RTTime: 2858579 TestWord.ACC: 1 TestWord.RT: 577 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2858752 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2858756 Keyrelease: 2860496 ResponseTime: 1740 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1372 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1372 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1373 Block: 4 DelDur: NullDur: PlaceList: 43 Word: CLOUDY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1373 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1374 Block: 4 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1374 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1375 Block: 4 DelDur: NullDur: Word: STATUESQUE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 43 Running: TestList TestList.Cycle: 1 TestList.Sample: 1375 TrialCount: 364 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2866566 TestWord.DurationError: 99 TestWord.RTTime: 2867411 TestWord.ACC: 0 TestWord.RT: 845 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2867316 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2867412 Keyrelease: 2869059 ResponseTime: 1647 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1376 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1376 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1377 Block: 4 DelDur: NullDur: Word: CUNNING ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 22 Running: TestList TestList.Cycle: 1 TestList.Sample: 1377 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1378 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1378 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1379 Block: 4 DelDur: NullDur: Word: ALOOF ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 89 Running: TestList TestList.Cycle: 1 TestList.Sample: 1379 TrialCount: 365 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2872631 TestWord.DurationError: 99 TestWord.RTTime: 2873915 TestWord.ACC: 1 TestWord.RT: 1284 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2873380 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2873915 Keyrelease: 2875122 ResponseTime: 1206 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1380 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1380 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1381 Block: 4 DelDur: NullDur: Word: WESTERN ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 85 Running: TestList TestList.Cycle: 1 TestList.Sample: 1381 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1382 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1382 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1383 Block: 4 DelDur: NullDur: Word: LAZY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 40 Running: TestList TestList.Cycle: 1 TestList.Sample: 1383 TrialCount: 366 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2877196 TestWord.DurationError: 99 TestWord.RTTime: 2878363 TestWord.ACC: 0 TestWord.RT: 1167 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2877946 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2878204 Keyrelease: 2879684 ResponseTime: 1480 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1384 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1384 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1385 Block: 4 DelDur: NullDur: Word: MILITARY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 125 Running: TestList TestList.Cycle: 1 TestList.Sample: 1385 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1386 Block: 4 DelDur: NullDur: Word: UNBECOMING ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 63 Running: TestList TestList.Cycle: 1 TestList.Sample: 1386 TrialCount: 367 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2882244 TestWord.DurationError: 100 TestWord.RTTime: 2883787 TestWord.ACC: 1 TestWord.RT: 1543 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2882994 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2883788 Keyrelease: 2884739 ResponseTime: 951 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1387 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1387 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1388 Block: 4 DelDur: NullDur: Word: FAIR ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 7 Running: TestList TestList.Cycle: 1 TestList.Sample: 1388 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1389 Block: 4 DelDur: NullDur: 6000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1389 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1390 Block: 4 DelDur: NullDur: PlaceList: 42 Word: INTERIOR ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1390 TrialCount: 368 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2892308 TestWord.DurationError: 99 TestWord.RTTime: 2893795 TestWord.ACC: 0 TestWord.RT: 1487 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2893058 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2893796 Keyrelease: 2894798 ResponseTime: 1002 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1391 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1391 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1392 Block: 4 DelDur: NullDur: PlaceList: 85 Word: CELTIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1392 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1393 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1393 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1394 Block: 4 DelDur: NullDur: Word: ETERNAL ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 95 Running: TestList TestList.Cycle: 1 TestList.Sample: 1394 TrialCount: 369 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2899372 TestWord.DurationError: 100 TestWord.RTTime: 2900948 TestWord.ACC: 1 TestWord.RT: 1576 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2900122 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2900948 Keyrelease: 2901870 ResponseTime: 922 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1395 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1395 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1396 Block: 4 DelDur: NullDur: Word: CLEAR ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 8 Running: TestList TestList.Cycle: 1 TestList.Sample: 1396 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1397 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1397 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1398 Block: 4 DelDur: NullDur: Word: BELGIAN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 191 Running: TestList TestList.Cycle: 1 TestList.Sample: 1398 TrialCount: 370 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2911452 TestWord.DurationError: 99 TestWord.RTTime: 2912444 TestWord.ACC: 1 TestWord.RT: 992 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2912202 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2912444 Keyrelease: 2913942 ResponseTime: 1498 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1399 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1399 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1400 Block: 4 DelDur: NullDur: Word: FOUL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 84 Running: TestList TestList.Cycle: 1 TestList.Sample: 1400 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1401 Block: 4 DelDur: NullDur: PlaceList: 36 Word: ANCIENT ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1401 TrialCount: 371 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2921499 TestWord.DurationError: 99 TestWord.RTTime: 2922628 TestWord.ACC: 1 TestWord.RT: 1129 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2922248 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2922628 Keyrelease: 2923991 ResponseTime: 1363 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1402 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1402 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1403 Block: 4 DelDur: NullDur: PlaceList: 58 Word: AROMATIC ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1403 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1404 Block: 4 DelDur: NullDur: Word: ADOPTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 152 Running: TestList TestList.Cycle: 1 TestList.Sample: 1404 TrialCount: 372 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2931545 TestWord.DurationError: 100 TestWord.RTTime: 2932428 TestWord.ACC: 1 TestWord.RT: 883 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2932295 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2932428 Keyrelease: 2934046 ResponseTime: 1618 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1405 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1405 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1406 Block: 4 DelDur: NullDur: Word: CHRISTIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 74 Running: TestList TestList.Cycle: 1 TestList.Sample: 1406 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1407 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1407 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1408 Block: 4 DelDur: NullDur: Word: FEDERAL ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 92 Running: TestList TestList.Cycle: 1 TestList.Sample: 1408 TrialCount: 373 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2937127 TestWord.DurationError: 100 TestWord.RTTime: 2938036 TestWord.ACC: 0 TestWord.RT: 909 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2937877 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2938036 Keyrelease: 2939618 ResponseTime: 1582 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1409 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1409 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1410 Block: 4 DelDur: NullDur: Word: UNTIDY ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 99 Running: TestList TestList.Cycle: 1 TestList.Sample: 1410 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1411 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1411 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1412 Block: 4 DelDur: NullDur: Word: DISORDERLY ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 159 Running: TestList TestList.Cycle: 1 TestList.Sample: 1412 TrialCount: 374 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2946691 TestWord.DurationError: 99 TestWord.RTTime: 2947724 TestWord.ACC: 1 TestWord.RT: 1033 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2947440 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2947725 Keyrelease: 2949185 ResponseTime: 1460 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1413 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1413 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1414 Block: 4 DelDur: NullDur: Word: COOL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 172 Running: TestList TestList.Cycle: 1 TestList.Sample: 1414 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1415 Block: 4 DelDur: NullDur: Word: UNIVERSAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 20 Running: TestList TestList.Cycle: 1 TestList.Sample: 1415 TrialCount: 375 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2954738 TestWord.DurationError: 100 TestWord.RTTime: 2955724 TestWord.ACC: 1 TestWord.RT: 986 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2955488 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2955725 Keyrelease: 2957226 ResponseTime: 1501 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1416 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1416 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1417 Block: 4 DelDur: NullDur: Word: NATIVE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 46 Running: TestList TestList.Cycle: 1 TestList.Sample: 1417 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1418 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1418 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1419 Block: 4 DelDur: NullDur: PlaceList: 90 Word: IMPURE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1419 TrialCount: 376 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2964302 TestWord.DurationError: 99 TestWord.RTTime: 2965653 TestWord.ACC: 1 TestWord.RT: 1351 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2965052 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2965653 Keyrelease: 2966803 ResponseTime: 1150 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1420 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1420 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1421 Block: 4 DelDur: NullDur: PlaceList: 37 Word: NATURAL ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1421 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1422 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1422 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1423 Block: 4 DelDur: NullDur: Word: ACCESSIBLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 61 Running: TestList TestList.Cycle: 1 TestList.Sample: 1423 TrialCount: 377 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2970383 TestWord.DurationError: 100 TestWord.RTTime: 2971245 TestWord.ACC: 1 TestWord.RT: 862 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2971133 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2971245 Keyrelease: 2972878 ResponseTime: 1633 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1424 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1424 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1425 Block: 4 DelDur: NullDur: Word: RAGGED ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 115 Running: TestList TestList.Cycle: 1 TestList.Sample: 1425 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1426 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1426 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1427 Block: 4 DelDur: NullDur: Word: AERONAUTIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 61 Running: TestList TestList.Cycle: 1 TestList.Sample: 1427 TrialCount: 378 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2982946 TestWord.DurationError: 99 TestWord.RTTime: 2984492 TestWord.ACC: 1 TestWord.RT: 1546 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2983696 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2984492 Keyrelease: 2985442 ResponseTime: 950 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1428 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1428 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1429 Block: 4 DelDur: NullDur: Word: SHABBY ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 94 Running: TestList TestList.Cycle: 1 TestList.Sample: 1429 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1430 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1430 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1431 Block: 4 DelDur: NullDur: PlaceList: 73 Word: GRAY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1431 TrialCount: 379 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2987511 TestWord.DurationError: 100 TestWord.RTTime: 2988245 TestWord.ACC: 1 TestWord.RT: 734 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2988261 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2988265 Keyrelease: 2990005 ResponseTime: 1740 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1432 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1432 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1433 Block: 4 DelDur: NullDur: PlaceList: 55 Word: HEINOUS ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1433 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1434 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1434 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1435 Block: 4 DelDur: NullDur: Word: DESOLATE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 62 Running: TestList TestList.Cycle: 1 TestList.Sample: 1435 TrialCount: 380 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2994576 TestWord.DurationError: 99 TestWord.RTTime: 2995589 TestWord.ACC: 1 TestWord.RT: 1013 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2995325 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2995589 Keyrelease: 2997076 ResponseTime: 1487 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1436 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1436 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1437 Block: 4 DelDur: NullDur: Word: IMPECCABLE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 113 Running: TestList TestList.Cycle: 1 TestList.Sample: 1437 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1438 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1438 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1439 Block: 4 DelDur: NullDur: Word: SHOWY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 130 Running: TestList TestList.Cycle: 1 TestList.Sample: 1439 TrialCount: 381 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3001657 TestWord.DurationError: 99 TestWord.RTTime: 3002501 TestWord.ACC: 1 TestWord.RT: 844 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3002406 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3002501 Keyrelease: 3004149 ResponseTime: 1648 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1440 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1440 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1441 Block: 4 DelDur: NullDur: Word: RIOTOUS ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 107 Running: TestList TestList.Cycle: 1 TestList.Sample: 1441 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1442 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1442 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1443 Block: 4 DelDur: NullDur: Word: FOGGY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 135 Running: TestList TestList.Cycle: 1 TestList.Sample: 1443 TrialCount: 382 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3011220 TestWord.DurationError: 100 TestWord.RTTime: 3011925 TestWord.ACC: 1 TestWord.RT: 705 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3011970 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3011974 Keyrelease: 3013712 ResponseTime: 1738 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1444 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1444 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1445 Block: 4 DelDur: NullDur: Word: RUSSIAN ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 173 Running: TestList TestList.Cycle: 1 TestList.Sample: 1445 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1446 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1446 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1447 Block: 4 DelDur: NullDur: Word: IMPOSING ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 188 Running: TestList TestList.Cycle: 1 TestList.Sample: 1447 TrialCount: 383 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3017285 TestWord.DurationError: 100 TestWord.RTTime: 3018229 TestWord.ACC: 1 TestWord.RT: 944 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3018035 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3018230 Keyrelease: 3019783 ResponseTime: 1553 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1448 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1448 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1449 Block: 4 DelDur: NullDur: Word: DIDACTIC ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 1 Running: TestList TestList.Cycle: 1 TestList.Sample: 1449 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1450 Block: 4 DelDur: NullDur: 6000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1450 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1451 Block: 4 DelDur: NullDur: PlaceList: 20 Word: CONCRETE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1451 TrialCount: 384 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3027365 TestWord.DurationError: 100 TestWord.RTTime: 3028389 TestWord.ACC: 1 TestWord.RT: 1024 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3028115 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3028390 Keyrelease: 3029861 ResponseTime: 1471 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1452 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1452 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1453 Block: 4 DelDur: NullDur: PlaceList: 67 Word: RIGID ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1453 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1454 Block: 4 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1454 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1455 Block: 4 DelDur: NullDur: Word: MUSCULAR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 17 Running: TestList TestList.Cycle: 1 TestList.Sample: 1455 TrialCount: 385 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3034930 TestWord.DurationError: 99 TestWord.RTTime: 3035782 TestWord.ACC: 1 TestWord.RT: 852 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3035679 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3035782 Keyrelease: 3037428 ResponseTime: 1646 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1456 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1456 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1457 Block: 4 DelDur: NullDur: Word: PHALLIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 28 Running: TestList TestList.Cycle: 1 TestList.Sample: 1457 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1458 Block: 4 DelDur: NullDur: Word: SIAMESE ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 51 Running: TestList TestList.Cycle: 1 TestList.Sample: 1458 TrialCount: 386 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3039995 TestWord.DurationError: 99 TestWord.RTTime: 3041678 TestWord.ACC: 1 TestWord.RT: 1683 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3040744 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3041678 Keyrelease: 3042495 ResponseTime: 817 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1459 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1459 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1460 Block: 4 DelDur: NullDur: Word: SOGGY ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 65 Running: TestList TestList.Cycle: 1 TestList.Sample: 1460 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1461 Block: 4 DelDur: NullDur: 7000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1461 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1462 Block: 4 DelDur: NullDur: Word: DEAD ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 25 Running: TestList TestList.Cycle: 1 TestList.Sample: 1462 TrialCount: 387 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3057073 TestWord.DurationError: 99 TestWord.RTTime: 3058230 TestWord.ACC: 1 TestWord.RT: 1157 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3057822 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3058230 Keyrelease: 3059567 ResponseTime: 1337 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1463 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1463 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1464 Block: 4 DelDur: NullDur: Word: DELICIOUS ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 109 Running: TestList TestList.Cycle: 1 TestList.Sample: 1464 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1465 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1465 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1466 Block: 4 DelDur: NullDur: Word: BRAWNY ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 37 Running: TestList TestList.Cycle: 1 TestList.Sample: 1466 TrialCount: 388 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3062138 TestWord.DurationError: 99 TestWord.RTTime: 3063902 TestWord.ACC: 1 TestWord.RT: 1764 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3062887 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3063902 Keyrelease: 3064626 ResponseTime: 724 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1467 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1467 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1468 Block: 4 DelDur: NullDur: Word: VALUABLE ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 84 Running: TestList TestList.Cycle: 1 TestList.Sample: 1468 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1469 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1469 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1470 Block: 4 DelDur: NullDur: Word: TAME ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 77 Running: TestList TestList.Cycle: 1 TestList.Sample: 1470 TrialCount: 389 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3066703 TestWord.DurationError: 99 TestWord.RTTime: 3067862 TestWord.ACC: 1 TestWord.RT: 1159 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 3067453 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3067863 Keyrelease: 3069202 ResponseTime: 1339 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1471 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1471 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1472 Block: 4 DelDur: NullDur: Word: EARTHY ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 18 Running: TestList TestList.Cycle: 1 TestList.Sample: 1472 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1473 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1473 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1474 Block: 4 DelDur: NullDur: Word: COURAGEOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 83 Running: TestList TestList.Cycle: 1 TestList.Sample: 1474 TrialCount: 390 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3072285 TestWord.DurationError: 99 TestWord.RTTime: 3073286 TestWord.ACC: 1 TestWord.RT: 1001 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3073034 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3073286 Keyrelease: 3074774 ResponseTime: 1488 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1475 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1475 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1476 Block: 4 DelDur: NullDur: Word: RAINY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 111 Running: TestList TestList.Cycle: 1 TestList.Sample: 1476 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1477 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1477 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1478 Block: 4 DelDur: NullDur: Word: HOMELY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 39 Running: TestList TestList.Cycle: 1 TestList.Sample: 1478 TrialCount: 391 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3084347 TestWord.DurationError: 100 TestWord.RTTime: 3085310 TestWord.ACC: 1 TestWord.RT: 963 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3085097 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3085311 Keyrelease: 3086837 ResponseTime: 1526 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1479 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1479 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1480 Block: 4 DelDur: NullDur: Word: FELINE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 157 Running: TestList TestList.Cycle: 1 TestList.Sample: 1480 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1481 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1481 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1482 Block: 4 DelDur: NullDur: PlaceList: 49 Word: EMOTIONAL ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1482 TrialCount: 392 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3089912 TestWord.DurationError: 100 TestWord.RTTime: 3090694 TestWord.ACC: 1 TestWord.RT: 782 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3090662 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3090695 Keyrelease: 3092409 ResponseTime: 1714 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1483 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1483 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1484 Block: 4 DelDur: NullDur: PlaceList: 52 Word: SCHOLASTIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1484 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1485 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1485 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1486 Block: 4 DelDur: NullDur: Word: PLAIN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 71 Running: TestList TestList.Cycle: 1 TestList.Sample: 1486 TrialCount: 393 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3098493 TestWord.DurationError: 100 TestWord.RTTime: 3100086 TestWord.ACC: 0 TestWord.RT: 1593 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 3099243 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3100087 Keyrelease: 3100985 ResponseTime: 898 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1487 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1487 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1488 Block: 4 DelDur: NullDur: Word: TERRIBLE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 21 Running: TestList TestList.Cycle: 1 TestList.Sample: 1488 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1489 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1489 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1490 Block: 4 DelDur: NullDur: Word: CAUCASIAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 4 Running: TestList TestList.Cycle: 1 TestList.Sample: 1490 TrialCount: 394 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3104058 TestWord.DurationError: 99 TestWord.RTTime: 3104855 TestWord.ACC: 1 TestWord.RT: 797 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 3104808 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3104855 Keyrelease: 3106553 ResponseTime: 1698 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1491 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1491 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1492 Block: 4 DelDur: NullDur: Word: EXTINCT ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 29 Running: TestList TestList.Cycle: 1 TestList.Sample: 1492 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1493 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1493 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1494 Block: 4 DelDur: NullDur: Word: NARROW ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 83 Running: TestList TestList.Cycle: 1 TestList.Sample: 1494 TrialCount: 395 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3115121 TestWord.DurationError: 100 TestWord.RTTime: 3116743 TestWord.ACC: 1 TestWord.RT: 1622 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 3115871 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3116743 Keyrelease: 3117612 ResponseTime: 869 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1495 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1495 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1496 Block: 4 DelDur: NullDur: Word: BANAL ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 70 Running: TestList TestList.Cycle: 1 TestList.Sample: 1496 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1497 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1497 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1498 Block: 4 DelDur: NullDur: Word: ACROBATIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 56 Running: TestList TestList.Cycle: 1 TestList.Sample: 1498 TrialCount: 396 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3122685 TestWord.DurationError: 100 TestWord.RTTime: 3123551 TestWord.ACC: 1 TestWord.RT: 866 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3123435 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3123551 Keyrelease: 3125184 ResponseTime: 1633 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1499 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1499 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1500 Block: 4 DelDur: NullDur: Word: SAMOAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 3 Running: TestList TestList.Cycle: 1 TestList.Sample: 1500 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1501 Block: 4 DelDur: NullDur: Word: AESTHETIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 43 Running: TestList TestList.Cycle: 1 TestList.Sample: 1501 TrialCount: 397 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3126751 TestWord.DurationError: 99 TestWord.RTTime: 3127911 TestWord.ACC: 0 TestWord.RT: 1160 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3127500 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3127911 Keyrelease: 3129250 ResponseTime: 1339 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1502 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1502 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1503 Block: 4 DelDur: NullDur: Word: SERBIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 26 Running: TestList TestList.Cycle: 1 TestList.Sample: 1503 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1504 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1504 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1505 Block: 4 DelDur: NullDur: Word: BEAUTIFUL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 174 Running: TestList TestList.Cycle: 1 TestList.Sample: 1505 TrialCount: 398 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3138330 TestWord.DurationError: 100 TestWord.RTTime: 3140799 TestWord.ACC: 0 TestWord.RT: 2469 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3139080 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3139095 Keyrelease: 3140823 ResponseTime: 1728 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1506 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1506 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1507 Block: 4 DelDur: NullDur: Word: MANIACAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 79 Running: TestList TestList.Cycle: 1 TestList.Sample: 1507 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1508 Block: 4 DelDur: NullDur: Word: ENGLISH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 75 Running: TestList TestList.Cycle: 1 TestList.Sample: 1508 TrialCount: 399 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3148377 TestWord.DurationError: 100 TestWord.RTTime: 3149239 TestWord.ACC: 1 TestWord.RT: 862 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3149127 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3149239 Keyrelease: 3150873 ResponseTime: 1634 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1509 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1509 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1510 Block: 4 DelDur: NullDur: Word: ARABIC ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 88 Running: TestList TestList.Cycle: 1 TestList.Sample: 1510 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1511 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1511 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1512 Block: 4 DelDur: NullDur: Word: DANGEROUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 67 Running: TestList TestList.Cycle: 1 TestList.Sample: 1512 TrialCount: 400 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3152942 TestWord.DurationError: 100 TestWord.RTTime: 3153671 TestWord.ACC: 0 TestWord.RT: 729 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3153692 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3153696 Keyrelease: 3155436 ResponseTime: 1740 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1513 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1513 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1514 Block: 4 DelDur: NullDur: Word: MODEST ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 25 Running: TestList TestList.Cycle: 1 TestList.Sample: 1514 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1515 Block: 4 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1515 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: EndProc TestList: 1516 Block: 4 DelDur: NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1516 *** LogFrame End *** Level: 2 *** LogFrame Start *** ExpSetup: 1 Procedure: ExpProc OldKeys: LeftPlace ExpSetup.Cycle: 2 ExpSetup.Sample: 1 Running: ExpSetup LeftKey: z LeftMidKey: x RightMidKey: RightKey: 3 EqualsLeft: = EqualsRight: LeftResponse: Place LeftMidResponse: Pleasant RightResponse: New New: 3 Place: z Pleasant: x RightMidResponse: *** LogFrame End *** Level: 1 *** LogFrame Start *** Experiment: Kahn5Test SessionDate: 09-16-2011 SessionTime: 11:08:49 SessionTimeUtc: 3:08:49 PM Subject: 1 Session: 1 Group: 1 Name: Age: 20 Sex: male Handedness: right ResearcherID: 1 RandomSeed: -1144062026 Display.RefreshRate: 60.020 Clock.Information: \nE-Prime Primary Realtime Clock02011-09-16T15:08:49Z28001500004.32594519398602E+1502011-09-16T15:08:49Z\n *** LogFrame End *** -------------- next part -------------- A non-text attachment was scrubbed... Name: Kahn5Test.es2 Type: application/octet-stream Size: 266752 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Kahn5Test-1-1.edat2 Type: application/octet-stream Size: 6144 bytes Desc: not available URL: From mcfarla9 at msu.edu Thu Oct 13 17:45:17 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 13 Oct 2011 13:45:17 -0400 Subject: .edat file not created In-Reply-To: Message-ID: Erika, Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... Indeed, if you have an "attribute" named "Block", then you will get exactly the error message that you got (yes, the error message incorrectly says "variable", attributes are not variables as we have been discussing in another thread this week). So, just go into the .es2 file with E-Studio and rename that attribute, you should not find that hard to do. As to recovering your data from the .txt file, this might be done but is not trivial. In principle, if you can decipher the structure of the data in the .txt file, you could just edit the offending "Block" attribute in any text editor (e.g., Windows Notepad) to make it acceptable to E-Recovery, but this is not for the faint of heart. You might instead take this up with PST Support, who might help with this. Do you really have a lot of .txt files to convert? How many subjects did you run before you decided that having the program crash at the end of each session was a bad sign? -- David McFarlane, Professional Faultfinder >My experimental program is having the following problem. The text >file is created, but not the .edat file and I am getting an error >saying, "Reading txt file- variable name is same as level >name". And when I try to recover the .edat file using E-Recovery >the resulting .edat file only contains one row. I think it might >have to do with naming one of my variables Block. Please let me >know if there is anyway to 1) modify my code to be able to have it >automatically generate an .edat file and 2) convert the txt files I >have to .edat. I have attached the code, txt, and .edat files. > >-- >Erika Nyhus, Ph.D. >Cognitive, Linguistic, and Psychological Sciences >Brown University >190 Thayer St. >Providence, RI 02912-1821 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Erika_Nyhus at brown.edu Thu Oct 13 18:10:47 2011 From: Erika_Nyhus at brown.edu (Erika Nyhus) Date: Thu, 13 Oct 2011 14:10:47 -0400 Subject: .edat file not created In-Reply-To: Message-ID: False alarm...I figured out how to solve the problem. The problem did indeed have to do with naming one of my variables Block. I was able to change the variable name to "CurrentBlock" in the code and to find and replace the "Block" with "CurrentBlock" in the text files and generate .edat files. Erika On Thu, Oct 13, 2011 at 1:18 PM, Erika Nyhus wrote: > My experimental program is having the following problem. The text file is > created, but not the .edat file and I am getting an error saying, "Reading > txt file- variable name is same as level name". And when I try to recover > the .edat file using E-Recovery the resulting .edat file only contains one > row. I think it might have to do with naming one of my variables Block. > Please let me know if there is anyway to 1) modify my code to be able to > have it automatically generate an .edat file and 2) convert the txt files I > have to .edat. I have attached the code, txt, and .edat files. > > -- > Erika Nyhus, Ph.D. > Cognitive, Linguistic, and Psychological Sciences > Brown University > 190 Thayer St. > Providence, RI 02912-1821 > > -- Erika Nyhus, Ph.D. Cognitive, Linguistic, and Psychological Sciences Brown University 190 Thayer St. Providence, RI 02912-1821 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pfc.groot at gmail.com Thu Oct 13 18:25:50 2011 From: pfc.groot at gmail.com (Paul Groot) Date: Thu, 13 Oct 2011 20:25:50 +0200 Subject: .edat file not created In-Reply-To: Message-ID: Hi Erika, The problem is the Block attribute in testlist. cheers paul 2011/10/13 Erika Nyhus : > My experimental program is having the following problem.  The text file is > created, but not the .edat file and I am getting an error saying, "Reading > txt file- variable name is same as level name".  And when I try to recover > the .edat file using E-Recovery the resulting .edat file only contains one > row.  I think it might have to do with naming one of my variables Block. > Please let me know if there is anyway to 1) modify my code to be able to > have it automatically generate an .edat file and 2) convert the txt files I > have to .edat.  I have attached the code, txt, and .edat files. > > -- > Erika Nyhus, Ph.D. > Cognitive, Linguistic, and Psychological Sciences > Brown University > 190 Thayer St. > Providence, RI 02912-1821 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Thu Oct 13 19:18:34 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Thu, 13 Oct 2011 15:18:34 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) Message-ID: Hello Again, I am trying to add a pause in my experiment anytime. My task is a passive forced task and I do not have a response box or anything peripherally attached to the experimental computer. I control the task by using keyboard (from the control room). I saw a similar message by Sarah DuBose Posted 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for that. I am registered to forum but for some odd reasons I cannot see the messages. Is there anyone in this forum involved in that conversation. The help will be appreciated. Sincerely, Meltem -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From baltimore.ben at gmail.com Thu Oct 13 19:23:29 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Thu, 13 Oct 2011 15:23:29 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: Message-ID: try searching the help files for "getuserbreakstate". On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN wrote: > Hello Again, > I am trying to add a pause in my experiment anytime. My task is a passive > forced task and I do not have a response box or anything peripherally > attached to the experimental computer. I control the task by using keyboard > (from the control room). I saw a similar message by Sarah DuBose Posted > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for > that. I am registered to forum but for some odd reasons I cannot see the > messages. > Is there anyone in this forum involved in that conversation. > The help will be appreciated. > Sincerely, > Meltem > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Thu Oct 13 20:42:23 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 13 Oct 2011 16:42:23 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: Message-ID: Meltem, Hmm, I am not even logged in and I see the thread just fine at http://pstnet.com/forum/Topic2399-5-1.aspx . If you are having trouble with the PST Forum then you should contact PST. As Ben says, try GetUserBreakState. The thread linked above covers a more peculiar situation, and Brandon offers a very clever solution (and even though I contributed to that thread, I do not care to reproduce it here). -- David McFarlane, Professional Faultfinder At 10/13/2011 03:23 PM Thursday, you wrote: >try searching the help files for "getuserbreakstate". > >On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN wrote: > > Hello Again, > > I am trying to add a pause in my experiment anytime. My task is a passive > > forced task and I do not have a response box or anything peripherally > > attached to the experimental computer. I control the task by using keyboard > > (from the control room). I saw a similar message by Sarah DuBose Posted > > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for > > that. I am registered to forum but for some odd reasons I cannot see the > > messages. > > Is there anyone in this forum involved in that conversation. > > The help will be appreciated. > > Sincerely, > > Meltem > > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Thu Oct 13 21:59:34 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Thu, 13 Oct 2011 17:59:34 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: <4e974d39.471d2a0a.10e2.5a41SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hi David, Thank you very much it is working now. I found an amazing support in this group. I am relatively new to E-Prime and netstation extension. Sometimes the answers of questions would be very obvious. But, I am hoping to get more inside of it soon and helping others in my situation. (1) Developing new task, (2) Running a totally unknown system (3) Trying to understand infants (I worked on adult EEG) (4) Trying to get something meaningful out of infant EEG, VEP and ERPs. Again thank you much. Meltem On Thu, Oct 13, 2011 at 4:42 PM, David McFarlane wrote: > Meltem, > > Hmm, I am not even logged in and I see the thread just fine at > http://pstnet.com/forum/**Topic2399-5-1.aspx. If you are having trouble with the PST Forum then you should contact PST. > > As Ben says, try GetUserBreakState. The thread linked above covers a more > peculiar situation, and Brandon offers a very clever solution (and even > though I contributed to that thread, I do not care to reproduce it here). > > -- David McFarlane, Professional Faultfinder > > > > At 10/13/2011 03:23 PM Thursday, you wrote: > >> try searching the help files for "getuserbreakstate". >> >> On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN >> wrote: >> > Hello Again, >> > I am trying to add a pause in my experiment anytime. My task is a >> passive >> > forced task and I do not have a response box or anything peripherally >> > attached to the experimental computer. I control the task by using >> keyboard >> > (from the control room). I saw a similar message by Sarah DuBose Posted >> > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers >> for >> > that. I am registered to forum but for some odd reasons I cannot see the >> > messages. >> > Is there anyone in this forum involved in that conversation. >> > The help will be appreciated. >> > Sincerely, >> > Meltem >> > >> > -- >> > Meltem Ballan, PhD >> > Department of Psychiatry, CB# 7160 >> > University of North Carolina School of Medicine >> > 7023 Neurosciences Hospital >> > Chapel Hill, NC 27599-7160 >> > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Thu Oct 13 22:16:33 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 13 Oct 2011 18:16:33 -0400 Subject: a bunch of questions: sample/cycle count, accessing different context attributes In-Reply-To: <67721504-7c8e-4ca9-823d-bfceac2068dd@r30g2000prd.googlegro ups.com> Message-ID: At 10/12/2011 07:42 PM Wednesday, fledgeling e-Prime mastah wrote: >Is there any reason why one would not allow you to check the bounds >of an array? For that, use the LBound() and UBound() functions -- see the "Arrays", "LBound", and "UBound" topics in the E-Basic Help facility (which serves as the E-Basic programming reference), or read up on arrays in any available reference on Microsoft Visual Basic for Applications, of which E-Basic is a derivative. By comparison, List.Size returns the number of levels (rows) in a List (and thus I suppose acts like the size of an array), but this does not take into account the Weights. Each List has an associated Order object, and Order objects have a Count property (as you have already observed), but I cannot even begin to describe how Order objects work. Again, Lists are *not* arrays, just as attributes are *not* variables. They each have distinct uses and behaviors. >Regarding attributes, I simply don't understand why you would have >attributes.. I am still working on a definitive answer to that, stay tuned... In the meantime, please look at my posts at http://groups.google.com/group/e-prime/browse_thread/thread/5425e03968cab428 and http://groups.google.com/group/e-prime/browse_thread/thread/b0ce54870b723fc3 for some very general introductory guidance. -- David McFarlane, Professional Faultfinder -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Thu Oct 13 22:26:01 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 13 Oct 2011 18:26:01 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: Message-ID: Meltem, Thanks, glad you found something helpful here. FWIW, we have been working on a complete online course for an "Introduction to Task Programming for Experimental Psychology, Using E-Prime", which we hope to roll out soon. I have completed video for 7 lessons so far, and am working on two or three more (including one on fMRI and EEG) before we make this official. I don't know how this will be received, though -- we will have to charge a fee for this, and it will take time (lessons so far cover over 4.5 hours of video, which does not count the time it will take students to follow along and do the exercises). And it will be *very* thin on E-Basic programming, as that would require a course in itself. So stay tuned. -- David McFarlane, Professional Faultfinder At 10/13/2011 05:59 PM Thursday, you wrote: >Hi David, >Thank you very much it is working now. I found an amazing support in >this group. I am relatively new to E-Prime and netstation extension. >Sometimes the answers of questions would be very obvious. But, I am >hoping to get more inside of it soon and helping others in my >situation. (1) Developing new task, (2) Running a totally unknown >system (3) Trying to understand infants (I worked on adult EEG) >(4) Trying to get something meaningful out of infant EEG, VEP and ERPs. >Again thank you much. >Meltem > >On Thu, Oct 13, 2011 at 4:42 PM, David McFarlane ><mcfarla9 at msu.edu> wrote: >Meltem, > >Hmm, I am not even logged in and I see the thread just fine at >http://pstnet.com/forum/Topic2399-5-1.aspx >. If you are having trouble with the PST Forum then you should contact PST. > >As Ben says, try GetUserBreakState. The thread linked above covers >a more peculiar situation, and Brandon offers a very clever solution >(and even though I contributed to that thread, I do not care to >reproduce it here). > >-- David McFarlane, Professional Faultfinder > > > >At 10/13/2011 03:23 PM Thursday, you wrote: >try searching the help files for "getuserbreakstate". > >On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN ><meltemballan at gmail.com> wrote: > > Hello Again, > > I am trying to add a pause in my experiment anytime. My task is a passive > > forced task and I do not have a response box or anything peripherally > > attached to the experimental computer. I control the task by using keyboard > > (from the control room). I saw a similar message by Sarah DuBose Posted > > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for > > that. I am registered to forum but for some odd reasons I cannot see the > > messages. > > Is there anyone in this forum involved in that conversation. > > The help will be appreciated. > > Sincerely, > > Meltem > > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160 > >-- >Meltem Ballan, PhD >Department of Psychiatry, CB# 7160 >University of North Carolina School of Medicine >7023 Neurosciences Hospital >Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Fri Oct 14 11:46:17 2011 From: liwenna at gmail.com (liwenna) Date: Fri, 14 Oct 2011 04:46:17 -0700 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: <4e976583.471d2a0a.10e2.5e41SMTPIN_ADDED@gmr-mx.google.com> Message-ID: David, that is so cool! On Oct 14, 12:26 am, David McFarlane wrote: > Meltem, > > Thanks, glad you found something helpful here.  FWIW, we have been > working on a complete online course for an "Introduction to Task > Programming for Experimental Psychology, Using E-Prime", which we > hope to roll out soon.  I have completed video for 7 lessons so far, > and am working on two or three more (including one on fMRI and EEG) > before we make this official.  I don't know how this will be > received, though -- we will have to charge a fee for this, and it > will take time (lessons so far cover over 4.5 hours of video, which > does not count the time it will take students to follow along and do > the exercises).  And it will be *very* thin on E-Basic programming, > as that would require a course in itself.  So stay tuned. > > -- David McFarlane, Professional Faultfinder > > At 10/13/2011 05:59 PM Thursday, you wrote: > > > > > > > > >Hi David, > >Thank you very much it is working now. I found an amazing support in > >this group. I am relatively new to E-Prime and netstation extension. > >Sometimes the answers of questions would be very obvious. But, I am > >hoping to get more inside of it soon and helping others in my > >situation. (1) Developing new task, (2) Running a totally unknown > >system (3) Trying to understand infants (I worked on adult EEG) > >(4)  Trying to get something meaningful out of infant EEG, VEP and ERPs. > >Again thank you much. > >Meltem > > >On Thu, Oct 13, 2011 at 4:42 PM, David McFarlane > ><mcfar... at msu.edu> wrote: > >Meltem, > > >Hmm, I am not even logged in and I see the thread just fine at > >http://pstnet.com/forum/Topic2399-5-1.aspx > >.  If you are having trouble with the PST Forum then you should contact PST. > > >As Ben says, try GetUserBreakState.  The thread linked above covers > >a more peculiar situation, and Brandon offers a very clever solution > >(and even though I contributed to that thread, I do not care to > >reproduce it here). > > >-- David McFarlane, Professional Faultfinder > > >At 10/13/2011 03:23 PM Thursday, you wrote: > >try searching the help files for "getuserbreakstate". > > >On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN > ><meltembal... at gmail.com> wrote: > > > Hello Again, > > > I am trying to add a pause in my experiment anytime. My task is a passive > > > forced task and I do not have a response box or anything peripherally > > > attached to the experimental computer. I control the task by using keyboard > > > (from the control room). I saw a similar message by Sarah DuBose Posted > > > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for > > > that. I am registered to forum but for some odd reasons I cannot see the > > > messages. > > > Is there anyone in this forum involved in that conversation. > > > The help will be appreciated. > > > Sincerely, > > > Meltem > > > > -- > > > Meltem Ballan, PhD > > > Department of Psychiatry, CB# 7160 > > > University of North Carolina School of Medicine > > > 7023 Neurosciences Hospital > > > Chapel Hill, NC 27599-7160 > > >-- > >Meltem Ballan, PhD > >Department of Psychiatry, CB# 7160 > >University of North Carolina School of Medicine > >7023 Neurosciences Hospital > >Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From gautam.malu at research.iiit.ac.in Fri Oct 14 12:56:49 2011 From: gautam.malu at research.iiit.ac.in (Gautam Malu) Date: Fri, 14 Oct 2011 18:26:49 +0530 Subject: Randomization of images Message-ID: Hi all, i am developing a simple face recognition task. i am using picture stimuli. I have images of 20 models , 3 images per model so total 3*20 = 60 images. 1_right_pose.jpg 1_left_pose.jpg 1_middle_pose.jpg ............................ total 60 images Experiment consists of 2 phases -->1st in learning phase, in which participants will see 2 poses of any 10 models. i.e total 2*10 = 20 images randomly each images for 3000ms n_right_pose.jpg m_left_pose.jpg .......total 20 images ---> 2nd is testing phase, In which participants will see all 20 model in middle pose, randomly for 500ms, followed by fixation of infinite duration and during which they have to respond whether or not they have seen that model in learning phase. n_middle_pose.jpg fixation.jpg ...........20 times now the problem i am facing is how to select 10 random model's both right_pose.jpg and left_pose.jpg and also display them in random order. how can i get this type of ordering in learning phase Example 3_right_pose.jpg 7_left_pose.jpg 11_left_pose.jpg 3_left_pose.jpg Thanks, ---- Gautam Malu -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Fri Oct 14 13:39:44 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Fri, 14 Oct 2011 09:39:44 -0400 Subject: Randomization of images In-Reply-To: Message-ID: Gautam, I have an idea. You can prepare two lists (one for the right and the left and second for the middle images). Then, you might want to call those files (edit->properties->startup info). Lets say for session 1 call fileLR and shuffle the list (list properties->order->random). In order to show 20 models you can count to 20 and jump to the end of session (I would use goto) repeat it for session 2 including the middle images. I hope it helps. Meltem On Fri, Oct 14, 2011 at 8:56 AM, Gautam Malu < gautam.malu at research.iiit.ac.in> wrote: > Hi all, > i am developing a simple face recognition task. i am using > picture stimuli. I have images of 20 models , 3 images per model so total > 3*20 = 60 images. > 1_right_pose.jpg > 1_left_pose.jpg > 1_middle_pose.jpg > ............................ total 60 images > Experiment consists of 2 phases > > -->1st in learning phase, in which participants will see 2 poses of any 10 > models. > i.e total 2*10 = 20 images randomly each images for 3000ms > n_right_pose.jpg > m_left_pose.jpg > > .......total 20 images > > ---> 2nd is testing phase, In which participants will see all 20 model in > middle pose, randomly for 500ms, followed by fixation of infinite duration > and during which they have to respond whether or not they have seen that > model in learning phase. > n_middle_pose.jpg > fixation.jpg > ...........20 times > > > now the problem i am facing is how to select 10 random model's both > right_pose.jpg and left_pose.jpg and also display them in random order. > how can i get this type of ordering in learning phase > Example > 3_right_pose.jpg > 7_left_pose.jpg > 11_left_pose.jpg > 3_left_pose.jpg > > > > Thanks, > > > ---- > Gautam Malu > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Fri Oct 14 13:41:59 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Fri, 14 Oct 2011 09:41:59 -0400 Subject: Randomization of images In-Reply-To: Message-ID: BTW you can also google it as sub-list e-prime or something like that. I am sure PST forum or this list discussed this or similar topics before. Meltem On Fri, Oct 14, 2011 at 9:39 AM, Meltem BALLAN wrote: > Gautam, > I have an idea. You can prepare two lists (one for the right and the left > and second for the middle images). Then, you might want to call those files > (edit->properties->startup info). Lets say for session 1 > call fileLR and shuffle the list (list properties->order->random). > In order to show 20 models you can count to 20 and jump to the end of > session (I would use goto) > repeat it for session 2 including the middle images. > I hope it helps. > Meltem > > > On Fri, Oct 14, 2011 at 8:56 AM, Gautam Malu < > gautam.malu at research.iiit.ac.in> wrote: > >> Hi all, >> i am developing a simple face recognition task. i am using >> picture stimuli. I have images of 20 models , 3 images per model so total >> 3*20 = 60 images. >> 1_right_pose.jpg >> 1_left_pose.jpg >> 1_middle_pose.jpg >> ............................ total 60 images >> Experiment consists of 2 phases >> >> -->1st in learning phase, in which participants will see 2 poses of any >> 10 models. >> i.e total 2*10 = 20 images randomly each images for 3000ms >> n_right_pose.jpg >> m_left_pose.jpg >> >> .......total 20 images >> >> ---> 2nd is testing phase, In which participants will see all 20 model in >> middle pose, randomly for 500ms, followed by fixation of infinite duration >> and during which they have to respond whether or not they have seen that >> model in learning phase. >> n_middle_pose.jpg >> fixation.jpg >> ...........20 times >> >> >> now the problem i am facing is how to select 10 random model's both >> right_pose.jpg and left_pose.jpg and also display them in random order. >> how can i get this type of ordering in learning phase >> Example >> 3_right_pose.jpg >> 7_left_pose.jpg >> 11_left_pose.jpg >> 3_left_pose.jpg >> >> >> >> Thanks, >> >> >> ---- >> Gautam Malu >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to >> e-prime+unsubscribe at googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/e-prime?hl=en. >> > > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Michiel.Spape at nottingham.ac.uk Fri Oct 14 13:56:22 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Fri, 14 Oct 2011 14:56:22 +0100 Subject: Randomization of images In-Reply-To: Message-ID: Hi, Meltem is quite right, although people usually call it nested lists. Generally, you can go two ways: 1. Have a set of 20 stimuli selected within a list from a nested list, e.g. List1: 60 stimuli, attribute myStimuli, set to randomise. List2: calls List1, and in attribute currentStimulus, set numero uno to [myStimuli:1] to select the first one from List1... after randomisation. The clever thing is that the randomisation of List1 only needs to occur once and you're done. Probably no inline necessary. Whether you've got one or more attributes to call your jpeg isn't important, because they can be concatenated to one. For instance, if we have instead of myStimuli, "aNumber", "leftright", "andsoon" and have a row in the list saying, respectively, "1" "right" "pose.jpg", then this can be combined using another attribute (say, "filename") as [myStimuli]_[leftright]_[andsoon] and eprime will just combine it all. 2. Code all your stimuli into one array with 60 stimuli, randomizearray, and go from there. Best, Mich Michiel Spapé Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Meltem BALLAN Sent: 14 October 2011 14:42 To: e-prime at googlegroups.com Subject: Re: Randomization of images BTW you can also google it as sub-list e-prime or something like that. I am sure PST forum or this list discussed this or similar topics before. Meltem On Fri, Oct 14, 2011 at 9:39 AM, Meltem BALLAN > wrote: Gautam, I have an idea. You can prepare two lists (one for the right and the left and second for the middle images). Then, you might want to call those files (edit->properties->startup info). Lets say for session 1 call fileLR and shuffle the list (list properties->order->random). In order to show 20 models you can count to 20 and jump to the end of session (I would use goto) repeat it for session 2 including the middle images. I hope it helps. Meltem On Fri, Oct 14, 2011 at 8:56 AM, Gautam Malu > wrote: Hi all, i am developing a simple face recognition task. i am using picture stimuli. I have images of 20 models , 3 images per model so total 3*20 = 60 images. 1_right_pose.jpg 1_left_pose.jpg 1_middle_pose.jpg ............................ total 60 images Experiment consists of 2 phases -->1st in learning phase, in which participants will see 2 poses of any 10 models. i.e total 2*10 = 20 images randomly each images for 3000ms n_right_pose.jpg m_left_pose.jpg .......total 20 images ---> 2nd is testing phase, In which participants will see all 20 model in middle pose, randomly for 500ms, followed by fixation of infinite duration and during which they have to respond whether or not they have seen that model in learning phase. n_middle_pose.jpg fixation.jpg ...........20 times now the problem i am facing is how to select 10 random model's both right_pose.jpg and left_pose.jpg and also display them in random order. how can i get this type of ordering in learning phase Example 3_right_pose.jpg 7_left_pose.jpg 11_left_pose.jpg 3_left_pose.jpg Thanks, ---- Gautam Malu -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Fri Oct 14 19:21:31 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Fri, 14 Oct 2011 15:21:31 -0400 Subject: presenting a movie Message-ID: Hello Again, I have been trying to present a movie which is 9 min 40 sec and I am receiving an error which is : Run-time Error (Line 838) 11053: An error occurred while attempting to load the movie Marker: 227 Error: -2147220891 (0x80040265) I am doing exactly what I was told on the documentations. I email PST couple of times and no solution yet. Any idea? Has anyone solved this issue yet ? Thank you again. Meltem -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wafa.elise at gmail.com Fri Oct 14 19:30:25 2011 From: wafa.elise at gmail.com (wafa saoud) Date: Fri, 14 Oct 2011 15:30:25 -0400 Subject: Conditional cumulative feedback, help. In-Reply-To: <78ca2938-ea30-4eb5-92fc-488f3b47f6cb@k10g2000vbn.googlegroups.com> Message-ID: Hi, I wanted to thank you for the instructions. I ended up needing to modify a few things given my design but it ended up working out perfectly. Best Wishes! On Wed, Oct 12, 2011 at 9:18 AM, liwenna wrote: > good luck. > > Do note that Peter and I basically proposed the same solution, it's > not really two different options. > > On Oct 12, 2:30 pm, welise wrote: > > Thank you, both, so much. I also appreciate the quick replies. I will > > try these options. > > > > On Oct 12, 8:22 am, liwenna wrote: > > > > > > > > > > > > > > > > > Hi! > > > > > What you need is a global variable, a varibale that is indeed capable > > > to carry over information from one trial to the next. > > > First go to the user tab in the script window (bottom left corner > > > script window). > > > Here you declare a variable called... scorecounter: > > > > > Dim scorecounter as integer > > > > > Now... at the end of every trial the scorecounter need to be updated > > > by adding the new trial score and since a variable is not > > > automatically logged into the datafile, I always transfer the value of > > > scorecounter onto an attribute (that is logged): > > > > > Scorecounter = scorecounter + c.getattrib ("trialscore") (<- or where > > > ever you stored the score right now) > > > c.setattrib "scorecount", scorecounter > > > > > you can then use the attribute scorecount on your display to provide > > > feedback by showing a text like: "your new score is [scorecount]" > > > > > The above is a very minimalistic explanation... I believe the e-primer > > > has some more info on global variables, it can be downloaded at > > > step.psy.cmu.edu/materials/EPrimer.pdf > > > > > Best > > > > > liw > > > > > On Oct 12, 2:10 pm, Peter Quain wrote: > > > > > > perhaps something like this (rough example) would work? ... go to > > > > User Tab in script, and create global variables - > > > > > > Dim intTotalScore, intTrialScore as integer > > > > > > ... then in inline at start of TrialProcedure - > > > > > > intTrialScore = 0 > > > > > > ... and in an inline wherever in the trial procedure you assign the > > > > values that your feedback presents (or at the end of the trial > sequence) - > > > > > > intTtrialScore = [whatever the score is for that trial] > > > > intTotalScore = intTotalScore + intTtrialScore > > > > > > At 10:58 PM 12/10/2011, you wrote: > > > > > > >Hi Everybody, > > > > > > >I am hoping somebody can help me with presenting participants with > > > > >cumulative RESP feedback that is conditional on two separate > > > > >responses: > > > > > > >In my experiment, participants are first presented with a slide and > > > > >asked to press "1" if they will answer "A" or "2" if they will > answer > > > > >"B". I then have 6 slide states, randomly presented, with 4 > different > > > > >stimuli presented on each (I used 6 slides in order to change the > > > > >positioning of each of the stimuli). If the participant chose "1" > > > > >previously, they are expected to choose the corresponding stimuli > > > > >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > > > > >position of the stimuli). and if they chose "2" they are expected to > > > > >choose the stimuli that corresponds to that choice. If they chose > "1" > > > > >and then chose the correct corresponding stimuli, they get no > > > > >feedback. If they chose "1" and gave incorrect stimuli response then > > > > >they get Incorrect feedback with a message that says "-5 points". > If > > > > >they chose "2" and made the correct stimuli response- I have > feedback > > > > >randomly set to give them one of two messages, and one of those > > > > >messages includes "-10 points" while the other includes "+10 points" > > > > > > >So far, so good. I have experiment designed up until this point. The > > > > >problem arises when I try to present cumulative score feedback: > > > > > > >Within each trial, after the participant receives the first set of > > > > >feedback and the corresponding points lost of gained, I need to > > > > >present them with feedback that tells them their new total score. so > > > > >total score - 5 points, or total score + 10 points, or total score > -10 > > > > >points, and this needs to carry over from one trial to the net. I > > > > >have no idea how to do this. I started off by trying to do this with > a > > > > >text slide but I can't figure out how to do an inline text that can > > > > >make all this happen. I am in over my head and any help would be so > > > > >much appreciated. > > > > > > >-- > > > > >You received this message because you are subscribed to the Google > > > > >Groups "E-Prime" group. > > > > >To post to this group, send email to e-prime at googlegroups.com. > > > > >To unsubscribe from this group, send email to > > > > >e-prime+unsubscribe at googlegroups.com. > > > > >For more options, visit this group at > > > > >http://groups.google.com/group/e-prime?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gautam.malu at research.iiit.ac.in Sat Oct 15 11:06:27 2011 From: gautam.malu at research.iiit.ac.in (Gautam Malu) Date: Sat, 15 Oct 2011 16:36:27 +0530 Subject: Randomization of images In-Reply-To: <09DAEA8BC192C94EB62C8E71FC35A5D930D2BE7772@EXCHANGE3.ad.nottingham.ac.uk> Message-ID: Thank you Meltem and Michiel. I made an array and then used the randomized arrray. it worked perfectly. Best Wishes, Gautam Malu On Fri, Oct 14, 2011 at 7:26 PM, Michiel Spape < Michiel.Spape at nottingham.ac.uk> wrote: > Hi,**** > > Meltem is quite right, although people usually call it nested lists. > Generally, you can go two ways:**** > > 1.**** > > Have a set of 20 stimuli selected within a list from a nested list, e.g.** > ** > > List1: 60 stimuli, attribute myStimuli, set to randomise.**** > > List2: calls List1, and in attribute currentStimulus, set numero uno to > [myStimuli:1] to select the first one from List1… after randomisation. The > clever thing is that the randomisation of List1 only needs to occur once and > you’re done. Probably no inline necessary. Whether you’ve got one or more > attributes to call your jpeg isn’t important, because they can be > concatenated to one. For instance, if we have instead of myStimuli, > “aNumber”, “leftright”, “andsoon” and have a row in the list saying, > respectively, “1” “right” “pose.jpg”, then this can be combined using > another attribute (say, “filename”) as [myStimuli]_[leftright]_[andsoon] and > eprime will just combine it all. **** > > ** ** > > 2.**** > > Code all your stimuli into one array with 60 stimuli, randomizearray, and > go from there.**** > > ** ** > > Best,**** > > Mich**** > > ** ** > > ** ** > > ** ** > > *Michiel Spapé* > > *Research Fellow* > > *Perception & Action group* > > *University of Nottingham* > > *School of Psychology* > > *www.cognitology.eu*** > > ** ** > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > Behalf Of *Meltem BALLAN > *Sent:* 14 October 2011 14:42 > *To:* e-prime at googlegroups.com > *Subject:* Re: Randomization of images**** > > ** ** > > BTW you can also google it as sub-list e-prime or something like that. I am > sure PST forum or this list discussed this or similar topics before. > Meltem**** > > On Fri, Oct 14, 2011 at 9:39 AM, Meltem BALLAN > wrote:**** > > Gautam, > I have an idea. You can prepare two lists (one for the right and the left > and second for the middle images). Then, you might want to call those files > (edit->properties->startup info). Lets say for session 1 > call fileLR and shuffle the list (list properties->order->random). > In order to show 20 models you can count to 20 and jump to the end of > session (I would use goto) > repeat it for session 2 including the middle images. > I hope it helps. > Meltem**** > > ** ** > > On Fri, Oct 14, 2011 at 8:56 AM, Gautam Malu < > gautam.malu at research.iiit.ac.in> wrote:**** > > Hi all,**** > > i am developing a simple face recognition task. i am using > picture stimuli. I have images of 20 models , 3 images per model so total > 3*20 = 60 images.**** > > 1_right_pose.jpg**** > > 1_left_pose.jpg**** > > 1_middle_pose.jpg**** > > ............................ total 60 images**** > > Experiment consists of 2 phases**** > > ** ** > > -->1st in learning phase, in which participants will see 2 poses of any 10 > models.**** > > i.e total 2*10 = 20 images randomly each images for 3000ms**** > > n_right_pose.jpg **** > > m_left_pose.jpg**** > > ** ** > > .......total 20 images **** > > ** ** > > ---> 2nd is testing phase, In which participants will see all 20 model in > middle pose, randomly for 500ms, followed by fixation of infinite duration > and during which they have to respond whether or not they have seen that > model in learning phase.**** > > n_middle_pose.jpg**** > > fixation.jpg**** > > ...........20 times**** > > ** ** > > ** ** > > now the problem i am facing is how to select 10 random model's both > right_pose.jpg and left_pose.jpg and also display them in random order. ** > ** > > how can i get this type of ordering in learning phase**** > > Example**** > > 3_right_pose.jpg**** > > 7_left_pose.jpg**** > > 11_left_pose.jpg**** > > 3_left_pose.jpg**** > > ** ** > > ** ** > > ** ** > > Thanks,**** > > ** ** > > ** ** > > ----**** > > Gautam Malu**** > > ** ** > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > > > **** > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160**** > > > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160**** > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d.vinson at ucl.ac.uk Mon Oct 17 08:45:53 2011 From: d.vinson at ucl.ac.uk (David Vinson) Date: Mon, 17 Oct 2011 09:45:53 +0100 Subject: presenting a movie In-Reply-To: Message-ID: Hi, Presenting movies successfully can be a huge challenge in E-Prime, mainly related to compatibility issues. The very first step is to create the simplest possible experiment which displays only your movie and nothing else. If this does not work you may need to convert the movie into some other format. hope this helps, david On 14/10/2011 20:21, Meltem BALLAN wrote: > Hello Again, > I have been trying to present a movie which is 9 min 40 sec and I am > receiving an error which is : > Run-time Error (Line 838) 11053: An error occurred while attempting to > load the movie > Marker: 227 > Error: -2147220891 (0x80040265) > I am doing exactly what I was told on the documentations. I email PST > couple of times and no solution yet. Any idea? Has anyone solved this > issue yet ? > Thank you again. > Meltem > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- > You received this message because you are subscribed to the Google > Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. -- David Vinson, Ph.D. Senior Postdoctoral Researcher Cognitive, Perceptual and Brain Sciences Research Department University College London 26 Bedford Way, London WC1H 0AP Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Mon Oct 17 14:53:14 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Mon, 17 Oct 2011 10:53:14 -0400 Subject: presenting a movie In-Reply-To: <4E9BEB41.1040409@ucl.ac.uk> Message-ID: David, Thank you very much for the hint. Unfortunately, it has not been working. I am using mpg format which is the format suggested by PST. I can only load the demo videos but nothing else. I developing a series of experiment for infants and need some attention grabber objects (fixation-like). It does not need to be a fancy video or something just moving shapes or so between 300 and 800 ms. The other experiment is an open eye state (some call it resting but not sure). I am showing a series of videos for 10 min and recording EEG. I cannot get any of my experiments going in E-PRIME w/ video. The error message is a RUNTIME ERROR. An error occurs while attempting to load the movie. Marker: 242 Error: 0 (0x0) Line:202 Error number:11053. There must be a way to solve it. I contacted PST once and no solution offered. I will try to bug them again. Cheers, Meltem On Mon, Oct 17, 2011 at 4:45 AM, David Vinson wrote: > Hi, > > Presenting movies successfully can be a huge challenge in E-Prime, mainly > related to compatibility issues. > > The very first step is to create the simplest possible experiment which > displays only your movie and nothing else. If this does not work you may > need to convert the movie into some other format. > > hope this helps, > david > > > On 14/10/2011 20:21, Meltem BALLAN wrote: > >> Hello Again, >> I have been trying to present a movie which is 9 min 40 sec and I am >> receiving an error which is : >> Run-time Error (Line 838) 11053: An error occurred while attempting to >> load the movie >> Marker: 227 >> Error: -2147220891 (0x80040265) >> I am doing exactly what I was told on the documentations. I email PST >> couple of times and no solution yet. Any idea? Has anyone solved this issue >> yet ? >> Thank you again. >> Meltem >> >> -- >> Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to e-prime+unsubscribe@** >> googlegroups.com . >> For more options, visit this group at http://groups.google.com/** >> group/e-prime?hl=en . >> > > -- > David Vinson, Ph.D. > Senior Postdoctoral Researcher > Cognitive, Perceptual and Brain Sciences Research Department > University College London > 26 Bedford Way, London WC1H 0AP > Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) > > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d.vinson at ucl.ac.uk Mon Oct 17 15:23:28 2011 From: d.vinson at ucl.ac.uk (David Vinson) Date: Mon, 17 Oct 2011 16:23:28 +0100 Subject: presenting a movie In-Reply-To: Message-ID: Hi Meltem, Sorry to say that I'm afraid your best course of action is to try different video formats. If you run the Codec Config tool on your problematic video this may help to identify what the problem is. You might also find some useful information in this thread from July: http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22 good luck, david On 17/10/2011 15:53, Meltem BALLAN wrote: > David, > Thank you very much for the hint. Unfortunately, it has not been > working. I am using mpg format which is the format suggested by PST. I > can only load the demo videos but nothing else. I developing a series > of experiment for infants and need some attention grabber objects > (fixation-like). It does not need to be a fancy video or something > just moving shapes or so between 300 and 800 ms. > The other experiment is an open eye state (some call it resting but > not sure). I am showing a series of videos for 10 min and recording > EEG. I cannot get any of my experiments going in E-PRIME w/ video. The > error message is a RUNTIME ERROR. An error occurs while attempting to > load the movie. Marker: 242 Error: 0 (0x0) > Line:202 Error number:11053. > There must be a way to solve it. I contacted PST once and no solution > offered. I will try to bug them again. > Cheers, > Meltem > > On Mon, Oct 17, 2011 at 4:45 AM, David Vinson > wrote: > > Hi, > > Presenting movies successfully can be a huge challenge in E-Prime, > mainly related to compatibility issues. > > The very first step is to create the simplest possible experiment > which displays only your movie and nothing else. If this does not > work you may need to convert the movie into some other format. > > hope this helps, > david > > > On 14/10/2011 20:21, Meltem BALLAN wrote: > > Hello Again, > I have been trying to present a movie which is 9 min 40 sec > and I am receiving an error which is : > Run-time Error (Line 838) 11053: An error occurred while > attempting to load the movie > Marker: 227 > Error: -2147220891 (0x80040265) > I am doing exactly what I was told on the documentations. I > email PST couple of times and no solution yet. Any idea? Has > anyone solved this issue yet ? > Thank you again. > Meltem > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- > You received this message because you are subscribed to the > Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com > . > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > > -- > David Vinson, Ph.D. > Senior Postdoctoral Researcher > Cognitive, Perceptual and Brain Sciences Research Department > University College London > 26 Bedford Way, London WC1H 0AP > Tel +44 (0)20 7679 5311 > (UCL internal ext. 25311) > > > -- > You received this message because you are subscribed to the Google > Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com > . > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- > You received this message because you are subscribed to the Google > Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. -- David Vinson, Ph.D. Senior Postdoctoral Researcher Cognitive, Perceptual and Brain Sciences Research Department University College London 26 Bedford Way, London WC1H 0AP Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Mon Oct 17 18:24:40 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Mon, 17 Oct 2011 14:24:40 -0400 Subject: presenting a movie In-Reply-To: <4E9C4870.2010304@ucl.ac.uk> Message-ID: Hi David, Thank you very much pointing out the special thread. It is not easy to follow up all the threads but I am trying. I tried to render my files. Before everything I checked the MSconfig as defined on INFO: How to use MSCONFIG to troubleshoot machine configuration and reduce background applications. Then I followed the instructions on FEATURE: CodecConfig provides ability to choose codecs used for Movie and Sound rendering. I use k-lite as it works pretty good for my auditory task. But, it seems like I cannot correctly render those files (Failed files). I tried MPEG-1, MPEG-2, avi and as a last format ts. I could not succeed. It is little bit frustrating and I know there are people solved the issue w/ video decoding and presenting. I do not know how to ask the question anymore. But is there a way to show at least a piece between 300 and 800 ms. Thanks MEltem On Mon, Oct 17, 2011 at 11:23 AM, David Vinson wrote: > Hi Meltem, > > Sorry to say that I'm afraid your best course of action is to try different > video formats. > If you run the Codec Config tool on your problematic video this may help to > identify what the problem is. > > You might also find some useful information in this thread from July: > http://groups.google.com/**group/e-prime/browse_thread/** > thread/0338b7e9ceec5d22 > > good luck, > david > > > On 17/10/2011 15:53, Meltem BALLAN wrote: > >> David, >> Thank you very much for the hint. Unfortunately, it has not been working. >> I am using mpg format which is the format suggested by PST. I can only load >> the demo videos but nothing else. I developing a series of experiment for >> infants and need some attention grabber objects (fixation-like). It does not >> need to be a fancy video or something just moving shapes or so between 300 >> and 800 ms. >> The other experiment is an open eye state (some call it resting but not >> sure). I am showing a series of videos for 10 min and recording EEG. I >> cannot get any of my experiments going in E-PRIME w/ video. The error >> message is a RUNTIME ERROR. An error occurs while attempting to load the >> movie. Marker: 242 Error: 0 (0x0) >> Line:202 Error number:11053. >> There must be a way to solve it. I contacted PST once and no solution >> offered. I will try to bug them again. >> Cheers, >> Meltem >> >> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson > d.vinson at ucl.ac.uk>> wrote: >> >> Hi, >> >> Presenting movies successfully can be a huge challenge in E-Prime, >> mainly related to compatibility issues. >> >> The very first step is to create the simplest possible experiment >> which displays only your movie and nothing else. If this does not >> work you may need to convert the movie into some other format. >> >> hope this helps, >> david >> >> >> On 14/10/2011 20:21, Meltem BALLAN wrote: >> >> Hello Again, >> I have been trying to present a movie which is 9 min 40 sec >> and I am receiving an error which is : >> Run-time Error (Line 838) 11053: An error occurred while >> attempting to load the movie >> Marker: 227 >> Error: -2147220891 (0x80040265) >> >> I am doing exactly what I was told on the documentations. I >> email PST couple of times and no solution yet. Any idea? Has >> anyone solved this issue yet ? >> Thank you again. >> Meltem >> >> -- Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> -- You received this message because you are subscribed to >> the >> Google Groups "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com >> >. >> >> To unsubscribe from this group, send email to >> e-prime+unsubscribe@**googlegroups.com >> >> >. >> >> For more options, visit this group at >> http://groups.google.com/**group/e-prime?hl=en >> . >> >> >> -- David Vinson, Ph.D. >> Senior Postdoctoral Researcher >> Cognitive, Perceptual and Brain Sciences Research Department >> University College London >> 26 Bedford Way, London WC1H 0AP >> Tel +44 (0)20 7679 5311 >> >> (UCL internal ext. 25311) >> >> >> -- You received this message because you are subscribed to the >> Google >> Groups "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com >> >. >> >> To unsubscribe from this group, send email to >> e-prime+unsubscribe@**googlegroups.com >> >> >. >> >> For more options, visit this group at >> http://groups.google.com/**group/e-prime?hl=en >> . >> >> >> >> >> -- >> Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to e-prime+unsubscribe@** >> googlegroups.com . >> For more options, visit this group at http://groups.google.com/** >> group/e-prime?hl=en . >> > > -- > David Vinson, Ph.D. > Senior Postdoctoral Researcher > Cognitive, Perceptual and Brain Sciences Research Department > University College London > 26 Bedford Way, London WC1H 0AP > Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) > > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Mon Oct 17 20:27:08 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Mon, 17 Oct 2011 16:27:08 -0400 Subject: presenting a movie In-Reply-To: Message-ID: Hi All, I successfully showed a video on E-Prime for 10 min (I am not sure about the delays between netstation and E-PRIME yet) I used OJOSoft to convert original video format (which was VOB in my case) to MPEG-1. I rendered my video within E-Prime codeg config (btw I use K-lite codec). I did not receive any error but some warnings. After the third rendering I got no warning and of course no error. Now I am able to show a series of videos for over 10 min !! Thank you David Vinson for information and other forum members for earlier discussions. Meltem On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN wrote: > Hi David, > Thank you very much pointing out the special thread. It is not easy to > follow up all the threads but I am trying. > I tried to render my files. Before everything I checked the MSconfig as > defined on INFO: How to use MSCONFIG to troubleshoot machine configuration > and reduce background applications. > Then I followed the instructions on FEATURE: CodecConfig provides ability > to choose codecs used for Movie and Sound rendering. > I use k-lite as it works pretty good for my auditory task. But, it seems > like I cannot correctly render those files (Failed files). I tried MPEG-1, > MPEG-2, avi and as a last format ts. I could not succeed. It is little bit > frustrating and I know there are people solved the issue w/ video decoding > and presenting. > I do not know how to ask the question anymore. But is there a way to show > at least a piece between 300 and 800 ms. > Thanks > MEltem > > > On Mon, Oct 17, 2011 at 11:23 AM, David Vinson wrote: > >> Hi Meltem, >> >> Sorry to say that I'm afraid your best course of action is to try >> different video formats. >> If you run the Codec Config tool on your problematic video this may help >> to identify what the problem is. >> >> You might also find some useful information in this thread from July: >> http://groups.google.com/**group/e-prime/browse_thread/** >> thread/0338b7e9ceec5d22 >> >> good luck, >> david >> >> >> On 17/10/2011 15:53, Meltem BALLAN wrote: >> >>> David, >>> Thank you very much for the hint. Unfortunately, it has not been working. >>> I am using mpg format which is the format suggested by PST. I can only load >>> the demo videos but nothing else. I developing a series of experiment for >>> infants and need some attention grabber objects (fixation-like). It does not >>> need to be a fancy video or something just moving shapes or so between 300 >>> and 800 ms. >>> The other experiment is an open eye state (some call it resting but not >>> sure). I am showing a series of videos for 10 min and recording EEG. I >>> cannot get any of my experiments going in E-PRIME w/ video. The error >>> message is a RUNTIME ERROR. An error occurs while attempting to load the >>> movie. Marker: 242 Error: 0 (0x0) >>> Line:202 Error number:11053. >>> There must be a way to solve it. I contacted PST once and no solution >>> offered. I will try to bug them again. >>> Cheers, >>> Meltem >>> >>> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson >> d.vinson at ucl.ac.uk>> wrote: >>> >>> Hi, >>> >>> Presenting movies successfully can be a huge challenge in E-Prime, >>> mainly related to compatibility issues. >>> >>> The very first step is to create the simplest possible experiment >>> which displays only your movie and nothing else. If this does not >>> work you may need to convert the movie into some other format. >>> >>> hope this helps, >>> david >>> >>> >>> On 14/10/2011 20:21, Meltem BALLAN wrote: >>> >>> Hello Again, >>> I have been trying to present a movie which is 9 min 40 sec >>> and I am receiving an error which is : >>> Run-time Error (Line 838) 11053: An error occurred while >>> attempting to load the movie >>> Marker: 227 >>> Error: -2147220891 (0x80040265) >>> >>> I am doing exactly what I was told on the documentations. I >>> email PST couple of times and no solution yet. Any idea? Has >>> anyone solved this issue yet ? >>> Thank you again. >>> Meltem >>> >>> -- Meltem Ballan, PhD >>> Department of Psychiatry, CB# 7160 >>> University of North Carolina School of Medicine >>> 7023 Neurosciences Hospital >>> Chapel Hill, NC 27599-7160 >>> -- You received this message because you are subscribed to >>> the >>> Google Groups "E-Prime" group. >>> To post to this group, send email to e-prime at googlegroups.com >>> >. >>> >>> To unsubscribe from this group, send email to >>> e-prime+unsubscribe@**googlegroups.com >>> >>> >. >>> >>> For more options, visit this group at >>> http://groups.google.com/**group/e-prime?hl=en >>> . >>> >>> >>> -- David Vinson, Ph.D. >>> Senior Postdoctoral Researcher >>> Cognitive, Perceptual and Brain Sciences Research Department >>> University College London >>> 26 Bedford Way, London WC1H 0AP >>> Tel +44 (0)20 7679 5311 >>> >>> (UCL internal ext. 25311) >>> >>> >>> -- You received this message because you are subscribed to the >>> Google >>> Groups "E-Prime" group. >>> To post to this group, send email to e-prime at googlegroups.com >>> >. >>> >>> To unsubscribe from this group, send email to >>> e-prime+unsubscribe@**googlegroups.com >>> >>> >. >>> >>> For more options, visit this group at >>> http://groups.google.com/**group/e-prime?hl=en >>> . >>> >>> >>> >>> >>> -- >>> Meltem Ballan, PhD >>> Department of Psychiatry, CB# 7160 >>> University of North Carolina School of Medicine >>> 7023 Neurosciences Hospital >>> Chapel Hill, NC 27599-7160 >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "E-Prime" group. >>> To post to this group, send email to e-prime at googlegroups.com. >>> To unsubscribe from this group, send email to e-prime+unsubscribe@** >>> googlegroups.com . >>> For more options, visit this group at http://groups.google.com/** >>> group/e-prime?hl=en . >>> >> >> -- >> David Vinson, Ph.D. >> Senior Postdoctoral Researcher >> Cognitive, Perceptual and Brain Sciences Research Department >> University College London >> 26 Bedford Way, London WC1H 0AP >> Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to e-prime+unsubscribe@** >> googlegroups.com . >> For more options, visit this group at http://groups.google.com/** >> group/e-prime?hl=en . >> >> > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Mon Oct 17 20:40:14 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 17 Oct 2011 16:40:14 -0400 Subject: presenting a movie In-Reply-To: Message-ID: Meltem, Thanks for reporting back on your success, and indicating which product worked for you. I suppose you used the "Total Video Converter" product from ojosoft (www.ojosoft.com, US$27). I will add that to my growing E-Prime FAQ. I wonder how the ojosoft products compare to the AoA products (www.aoamedia.com )? -- David McFarlane, Professional Faultfinder At 10/17/2011 04:27 PM Monday, you wrote: >Hi All, >I successfully showed a video on E-Prime for 10 min (I am not sure >about the delays between netstation and E-PRIME yet) I used OJOSoft >to convert original video format (which was VOB in my case) to >MPEG-1. I rendered my video within E-Prime codeg config (btw I use >K-lite codec). I did not receive any error but some warnings. After >the third rendering I got no warning and of course no error. Now I >am able to show a series of videos for over 10 min !! >Thank you David Vinson for information and other forum members for >earlier discussions. >Meltem > >On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN ><meltemballan at gmail.com> wrote: >Hi David, >Thank you very much pointing out the special thread. It is not easy >to follow up all the threads but I am trying. >I tried to render my files. Before everything I checked the MSconfig >as defined on >INFO: How to use >MSCONFIG to troubleshoot machine configuration and reduce background >applications. Then I followed the instructions on >FEATURE: >CodecConfig provides ability to choose codecs used for Movie and >Sound rendering. I use k-lite as it works pretty good for my >auditory task. But, it seems like I cannot correctly render those >files (Failed files). I tried MPEG-1, MPEG-2, avi and as a last >format ts. I could not succeed. It is little bit frustrating and I >know there are people solved the issue w/ video decoding and presenting. >I do not know how to ask the question anymore. But is there a way to >show at least a piece between 300 and 800 ms. >Thanks >MEltem > > >On Mon, Oct 17, 2011 at 11:23 AM, David Vinson ><d.vinson at ucl.ac.uk> wrote: >Hi Meltem, > >Sorry to say that I'm afraid your best course of action is to try >different video formats. >If you run the Codec Config tool on your problematic video this may >help to identify what the problem is. > >You might also find some useful information in this thread from July: >http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22 > >good luck, >david > > >On 17/10/2011 15:53, Meltem BALLAN wrote: >David, >Thank you very much for the hint. Unfortunately, it has not been >working. I am using mpg format which is the format suggested by PST. >I can only load the demo videos but nothing else. I developing a >series of experiment for infants and need some attention grabber >objects (fixation-like). It does not need to be a fancy video or >something just moving shapes or so between 300 and 800 ms. >The other experiment is an open eye state (some call it resting but >not sure). I am showing a series of videos for 10 min and recording >EEG. I cannot get any of my experiments going in E-PRIME w/ video. >The error message is a RUNTIME ERROR. An error occurs while >attempting to load the movie. Marker: 242 Error: 0 (0x0) >Line:202 Error number:11053. >There must be a way to solve it. I contacted PST once and no >solution offered. I will try to bug them again. >Cheers, >Meltem > >On Mon, Oct 17, 2011 at 4:45 AM, David Vinson ><d.vinson at ucl.ac.uk >> wrote: > > Hi, > > Presenting movies successfully can be a huge challenge in E-Prime, > mainly related to compatibility issues. > > The very first step is to create the simplest possible experiment > which displays only your movie and nothing else. If this does not > work you may need to convert the movie into some other format. > > hope this helps, > david > > > On 14/10/2011 20:21, Meltem BALLAN wrote: > > Hello Again, > I have been trying to present a movie which is 9 min 40 sec > and I am receiving an error which is : > Run-time Error (Line 838) 11053: An error occurred while > attempting to load the movie > Marker: 227 > Error: -2147220891 > 2147220891> (0x80040265) > > I am doing exactly what I was told on the documentations. I > email PST couple of times and no solution yet. Any idea? Has > anyone solved this issue yet ? > Thank you again. > Meltem > > -- Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Mon Oct 17 20:44:04 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Mon, 17 Oct 2011 16:44:04 -0400 Subject: presenting a movie In-Reply-To: <4e9c92b8.471d2a0a.10e2.ffffeea0SMTPIN_ADDED@gmr-mx.google.com> Message-ID: David, I used the free version. But I think it has the similar specs. The other product I can recommend is vlc and vlmc for mac. It is still beta and success rate for my experiments is 50/50. Best Meltem On Oct 17, 2011 4:40 PM, "David McFarlane" wrote: > Meltem, > > Thanks for reporting back on your success, and indicating which product > worked for you. I suppose you used the "Total Video Converter" product from > ojosoft (www.ojosoft.com, US$27). I will add that to my growing E-Prime > FAQ. I wonder how the ojosoft products compare to the AoA products ( > www.aoamedia.com )? > > -- David McFarlane, Professional Faultfinder > > > At 10/17/2011 04:27 PM Monday, you wrote: > >> Hi All, >> I successfully showed a video on E-Prime for 10 min (I am not sure about >> the delays between netstation and E-PRIME yet) I used OJOSoft to convert >> original video format (which was VOB in my case) to MPEG-1. I rendered my >> video within E-Prime codeg config (btw I use K-lite codec). I did not >> receive any error but some warnings. After the third rendering I got no >> warning and of course no error. Now I am able to show a series of videos for >> over 10 min !! >> Thank you David Vinson for information and other forum members for earlier >> discussions. >> Meltem >> >> On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN <> meltemballan at gmail.**com >meltemballan at gmail.com> >> wrote: >> Hi David, >> Thank you very much pointing out the special thread. It is not easy to >> follow up all the threads but I am trying. >> I tried to render my files. Before everything I checked the MSconfig as >> defined on >> >**INFO: How to use MSCONFIG to troubleshoot machine configuration and >> reduce background applications. Then I followed the instructions on < >> http://www.pstnet.com/**support/kb.asp?TopicID=3162 >> >**FEATURE: CodecConfig provides ability to choose codecs used for Movie >> and Sound rendering. I use k-lite as it works pretty good for my auditory >> task. But, it seems like I cannot correctly render those files (Failed >> files). I tried MPEG-1, MPEG-2, avi and as a last format ts. I could not >> succeed. It is little bit frustrating and I know there are people solved the >> issue w/ video decoding and presenting. >> I do not know how to ask the question anymore. But is there a way to show >> at least a piece between 300 and 800 ms. >> Thanks >> MEltem >> >> >> On Mon, Oct 17, 2011 at 11:23 AM, David Vinson <> d.vinson at ucl.ac.uk>d.**vinson at ucl.ac.uk > wrote: >> Hi Meltem, >> >> Sorry to say that I'm afraid your best course of action is to try >> different video formats. >> If you run the Codec Config tool on your problematic video this may help >> to identify what the problem is. >> >> You might also find some useful information in this thread from July: >> > thread/0338b7e9ceec5d22 >> >http:/**/groups.google.com/group/e-**prime/browse_thread/thread/** >> 0338b7e9ceec5d22 >> >> good luck, >> david >> >> >> On 17/10/2011 15:53, Meltem BALLAN wrote: >> David, >> Thank you very much for the hint. Unfortunately, it has not been working. >> I am using mpg format which is the format suggested by PST. I can only load >> the demo videos but nothing else. I developing a series of experiment for >> infants and need some attention grabber objects (fixation-like). It does not >> need to be a fancy video or something just moving shapes or so between 300 >> and 800 ms. >> The other experiment is an open eye state (some call it resting but not >> sure). I am showing a series of videos for 10 min and recording EEG. I >> cannot get any of my experiments going in E-PRIME w/ video. The error >> message is a RUNTIME ERROR. An error occurs while attempting to load the >> movie. Marker: 242 Error: 0 (0x0) >> Line:202 Error number:11053. >> There must be a way to solve it. I contacted PST once and no solution >> offered. I will try to bug them again. >> Cheers, >> Meltem >> >> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson <> >d.**vinson at ucl.ac.uk > >> wrote: >> >> Hi, >> >> Presenting movies successfully can be a huge challenge in E-Prime, >> mainly related to compatibility issues. >> >> The very first step is to create the simplest possible experiment >> which displays only your movie and nothing else. If this does not >> work you may need to convert the movie into some other format. >> >> hope this helps, >> david >> >> >> On 14/10/2011 20:21, Meltem BALLAN wrote: >> >> Hello Again, >> I have been trying to present a movie which is 9 min 40 sec >> and I am receiving an error which is : >> Run-time Error (Line 838) 11053: An error occurred while >> attempting to load the movie >> Marker: 227 >> Error: -2147220891 2147220891> >> (0x80040265) >> >> I am doing exactly what I was told on the documentations. I >> email PST couple of times and no solution yet. Any idea? Has >> anyone solved this issue yet ? >> Thank you again. >> Meltem >> >> -- Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Mon Oct 17 20:58:32 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 17 Oct 2011 16:58:32 -0400 Subject: presenting a movie In-Reply-To: Message-ID: Just to clarify, none of the products from ojosoft are free. They are distributed as "shareware", which means that you may download and try them for free, and you might indeed get away with continuing to use them for free, but if you find them useful then you are supposed to pay for them, else how can companies like this continue to make these products available? So if ojosoft provided something of value to your research, then do the right thing and buy the product to keep your karma intact and help keep the company in business providing useful products for the next time you need one. -- David McFarlane, Professional Faultfinder At 10/17/2011 04:44 PM Monday, you wrote: >David, >I used the free version. But I think it has the similar specs. The >other product I can recommend is vlc and vlmc for mac. It is still >beta and success rate for my experiments is 50/50. >Best >Meltem >On Oct 17, 2011 4:40 PM, "David McFarlane" ><mcfarla9 at msu.edu> wrote: >Meltem, > >Thanks for reporting back on your success, and indicating which >product worked for you. I suppose you used the "Total Video >Converter" product from ojosoft >(www.ojosoft.com, US$27). I will add that >to my growing E-Prime FAQ. I wonder how the ojosoft products >compare to the AoA products (www.aoamedia.com )? > >-- David McFarlane, Professional Faultfinder > > >At 10/17/2011 04:27 PM Monday, you wrote: >Hi All, >I successfully showed a video on E-Prime for 10 min (I am not sure >about the delays between netstation and E-PRIME yet) I used OJOSoft >to convert original video format (which was VOB in my case) to >MPEG-1. I rendered my video within E-Prime codeg config (btw I use >K-lite codec). I did not receive any error but some warnings. After >the third rendering I got no warning and of course no error. Now I >am able to show a series of videos for over 10 min !! >Thank you David Vinson for information and other forum members for >earlier discussions. >Meltem > >On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN ><meltemballan at gmail.com> >wrote: >Hi David, >Thank you very much pointing out the special thread. It is not easy >to follow up all the threads but I am trying. >I tried to render my files. Before everything I checked the MSconfig >as defined on ><http://www.pstnet.com/support/kb.asp?TopicID=2621>INFO: >How to use MSCONFIG to troubleshoot machine configuration and reduce >background applications. Then I followed the instructions on ><http://www.pstnet.com/support/kb.asp?TopicID=3162>FEATURE: >CodecConfig provides ability to choose codecs used for Movie and >Sound rendering. I use k-lite as it works pretty good for my >auditory task. But, it seems like I cannot correctly render those >files (Failed files). I tried MPEG-1, MPEG-2, avi and as a last >format ts. I could not succeed. It is little bit frustrating and I >know there are people solved the issue w/ video decoding and presenting. >I do not know how to ask the question anymore. But is there a way to >show at least a piece between 300 and 800 ms. >Thanks >MEltem > > >On Mon, Oct 17, 2011 at 11:23 AM, David Vinson ><d.vinson at ucl.ac.uk> >wrote: >Hi Meltem, > >Sorry to say that I'm afraid your best course of action is to try >different video formats. >If you run the Codec Config tool on your problematic video this may >help to identify what the problem is. > >You might also find some useful information in this thread from July: ><http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22>http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22 > >good luck, >david > > >On 17/10/2011 15:53, Meltem BALLAN wrote: >David, >Thank you very much for the hint. Unfortunately, it has not been >working. I am using mpg format which is the format suggested by PST. >I can only load the demo videos but nothing else. I developing a >series of experiment for infants and need some attention grabber >objects (fixation-like). It does not need to be a fancy video or >something just moving shapes or so between 300 and 800 ms. >The other experiment is an open eye state (some call it resting but >not sure). I am showing a series of videos for 10 min and recording >EEG. I cannot get any of my experiments going in E-PRIME w/ video. >The error message is a RUNTIME ERROR. An error occurs while >attempting to load the movie. Marker: 242 Error: 0 (0x0) >Line:202 Error number:11053. >There must be a way to solve it. I contacted PST once and no >solution offered. I will try to bug them again. >Cheers, >Meltem > >On Mon, Oct 17, 2011 at 4:45 AM, David Vinson ><d.vinson at ucl.ac.uk >> wrote: > > Hi, > > Presenting movies successfully can be a huge challenge in E-Prime, > mainly related to compatibility issues. > > The very first step is to create the simplest possible experiment > which displays only your movie and nothing else. If this does not > work you may need to convert the movie into some other format. > > hope this helps, > david > > > On 14/10/2011 20:21, Meltem BALLAN wrote: > > Hello Again, > I have been trying to present a movie which is 9 min 40 sec > and I am receiving an error which is : > Run-time Error (Line 838) 11053: An error occurred while > attempting to load the movie > Marker: 227 > Error: > -2147220891>2147220891 > 2147220891>2147220891> (0x80040265) > > I am doing exactly what I was told on the documentations. I > email PST couple of times and no solution yet. Any idea? Has > anyone solved this issue yet ? > Thank you again. > Meltem > > -- Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to >e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Tue Oct 18 11:37:04 2011 From: giladsabo at gmail.com (gilis) Date: Tue, 18 Oct 2011 04:37:04 -0700 Subject: Randomizing without repeating the same word twice Message-ID: Hi there! Sorry for bothering the groups so often, but I just tackled a road stone in my programming. Words are selected from an attribute which contain 10 words and lied in a block that is nested in the main list. The words are selected randomly in the block but the list run the block 20 times (at list so I weighted the block in the main list though it doesn't seem to run it 20 times, which is another problem...) so it happen that the same word repeat itself twice (e.g., food, apple, juice, fork, spoon, orange, sandwich, beach, ocean, river, river: in this instance river appeared last in the first time the block was run and first in the second so it actually repeated itself) -how can I avoid that? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Tue Oct 18 13:37:43 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Tue, 18 Oct 2011 09:37:43 -0400 Subject: presenting a movie In-Reply-To: <4e9c9703.4a962a0a.6c99.fffff204SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hi David, That you very much for reminding. I know what I am responsible of especially when I teach the science ethics. You might be interested that OJOsoft trial version allows you to convert 20% of your entire data. Meltem On Mon, Oct 17, 2011 at 4:58 PM, David McFarlane wrote: > Just to clarify, none of the products from ojosoft are free. They are > distributed as "shareware", which means that you may download and try them > for free, and you might indeed get away with continuing to use them for > free, but if you find them useful then you are supposed to pay for them, > else how can companies like this continue to make these products available? > So if ojosoft provided something of value to your research, then do the > right thing and buy the product to keep your karma intact and help keep the > company in business providing useful products for the next time you need > one. > > > -- David McFarlane, Professional Faultfinder > > > At 10/17/2011 04:44 PM Monday, you wrote: > > David, >> I used the free version. But I think it has the similar specs. The other >> product I can recommend is vlc and vlmc for mac. It is still beta and >> success rate for my experiments is 50/50. >> Best >> Meltem >> On Oct 17, 2011 4:40 PM, "David McFarlane" <mcfa >> **rla9 at msu.edu > wrote: >> Meltem, >> >> Thanks for reporting back on your success, and indicating which product >> worked for you. I suppose you used the "Total Video Converter" product from >> ojosoft (www.**ojosoft.com, >> US$27). I will add that to my growing E-Prime FAQ. I wonder how the >> ojosoft products compare to the AoA products ( >> www.**aoamedia.com )? >> >> >> -- David McFarlane, Professional Faultfinder >> >> >> At 10/17/2011 04:27 PM Monday, you wrote: >> Hi All, >> I successfully showed a video on E-Prime for 10 min (I am not sure about >> the delays between netstation and E-PRIME yet) I used OJOSoft to convert >> original video format (which was VOB in my case) to MPEG-1. I rendered my >> video within E-Prime codeg config (btw I use K-lite codec). I did not >> receive any error but some warnings. After the third rendering I got no >> warning and of course no error. Now I am able to show a series of videos for >> over 10 min !! >> Thank you David Vinson for information and other forum members for earlier >> discussions. >> Meltem >> >> On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN <> meltemballan at gmail.**com >> gmail.com >meltemballan at gmail.**com> >> wrote: >> Hi David, >> Thank you very much pointing out the special thread. It is not easy to >> follow up all the threads but I am trying. >> I tried to render my files. Before everything I checked the MSconfig as >> defined on < >> >ht**tp://www.pstnet.com/support/**kb.asp?TopicID=2621>INFO: >> How to use MSCONFIG to troubleshoot machine configuration and reduce >> background applications. Then I followed the instructions on << >> http://www.pstnet.com/**support/kb.asp?TopicID=3162 >> >ht**tp://www.pstnet.com/support/**kb.asp?TopicID=3162>FEATURE: >> CodecConfig provides ability to choose codecs used for Movie and Sound >> rendering. I use k-lite as it works pretty good for my auditory task. But, >> it seems like I cannot correctly render those files (Failed files). I tried >> MPEG-1, MPEG-2, avi and as a last format ts. I could not succeed. It is >> little bit frustrating and I know there are people solved the issue w/ video >> decoding and presenting. >> >> I do not know how to ask the question anymore. But is there a way to show >> at least a piece between 300 and 800 ms. >> Thanks >> MEltem >> >> >> On Mon, Oct 17, 2011 at 11:23 AM, David Vinson <> d.vinson at ucl.ac.uk><**mailto:d.vinson at ucl.ac.uk>d.**vinson at ucl.ac.uk> >> wrote: >> Hi Meltem, >> >> Sorry to say that I'm afraid your best course of action is to try >> different video formats. >> If you run the Codec Config tool on your problematic video this may help >> to identify what the problem is. >> >> You might also find some useful information in this thread from July: >> <> thread/0338b7e9ceec5d22 >> >http:/**/groups.google.com/group/e-**prime/browse_thread/thread/** >> 0338b7e9ceec5d22 >> >http://**groups.google.com/group/e-**prime/browse_thread/thread/** >> 0338b7e9ceec5d22 >> >> >> good luck, >> david >> >> >> On 17/10/2011 15:53, Meltem BALLAN wrote: >> David, >> Thank you very much for the hint. Unfortunately, it has not been working. >> I am using mpg format which is the format suggested by PST. I can only load >> the demo videos but nothing else. I developing a series of experiment for >> infants and need some attention grabber objects (fixation-like). It does not >> need to be a fancy video or something just moving shapes or so between 300 >> and 800 ms. >> The other experiment is an open eye state (some call it resting but not >> sure). I am showing a series of videos for 10 min and recording EEG. I >> cannot get any of my experiments going in E-PRIME w/ video. The error >> message is a RUNTIME ERROR. An error occurs while attempting to load the >> movie. Marker: 242 Error: 0 (0x0) >> Line:202 Error number:11053. >> There must be a way to solve it. I contacted PST once and no solution >> offered. I will try to bug them again. >> Cheers, >> Meltem >> >> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson <> ><**mailto:d.vinson at ucl.ac.uk>d.**vinson at ucl.ac.uk > d.vinson at ucl.ac.uk>> wrote: >> >> Hi, >> >> Presenting movies successfully can be a huge challenge in E-Prime, >> mainly related to compatibility issues. >> >> The very first step is to create the simplest possible experiment >> which displays only your movie and nothing else. If this does not >> work you may need to convert the movie into some other format. >> >> hope this helps, >> david >> >> >> On 14/10/2011 20:21, Meltem BALLAN wrote: >> >> Hello Again, >> I have been trying to present a movie which is 9 min 40 sec >> and I am receiving an error which is : >> Run-time Error (Line 838) 11053: An error occurred while >> attempting to load the movie >> Marker: 227 >> Error: -2147220891>2147220891> 2147220891>2147220891>2147220891> (0x80040265) >> >> >> I am doing exactly what I was told on the documentations. I >> email PST couple of times and no solution yet. Any idea? Has >> anyone solved this issue yet ? >> Thank you again. >> Meltem >> >> -- Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to >> >e-prime at googlegroups.com. >> To unsubscribe from this group, send email to > e-prime%2Bunsubscribe@**googlegroups.com >> >e-prime+**unsubscribe at googlegroups.com >> . >> For more options, visit this group at > group/e-prime?hl=en > >> http://**groups.google.com/group/e-**prime?hl=en >> . >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to e-prime+unsubscribe@** >> googlegroups.com . >> For more options, visit this group at http://groups.google.com/** >> group/e-prime?hl=en . >> > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Tue Oct 18 14:15:22 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Tue, 18 Oct 2011 10:15:22 -0400 Subject: Randomizing without repeating the same word twice In-Reply-To: <01498066-cd0a-4ac1-8c9e-874c6302b9cc@hv4g2000vbb.googlegro ups.com> Message-ID: Gilis, Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... "Randomization with constraints" is very tricky in E-Prime, and has been discussed extensively on the message boards. Try searching for "random", "pseudorandom", or "constraint" both here at the Google Group and at the PST Forum. Also see the "NoRepeat" examples downloadable fron PST. And again, do not neglect PST Support, they would love to hear from you. -- David McFarlane, Professional Faultfinder "For a successful technology, reality must take precedence over public relations, for nature cannot be fooled." (Richard Feynman, Nobel prize-winning physicist) >Sorry for bothering the groups so often, but I just tackled a road >stone in my programming. Words are selected from an attribute which >contain 10 words and lied in a block that is nested in the main list. >The words are selected randomly in the block but the list run the >block 20 times (at list so I weighted the block in the main list >though it doesn't seem to run it 20 times, which is another >problem...) so it happen that the same word repeat itself twice (e.g., >food, apple, juice, fork, spoon, orange, sandwich, beach, ocean, >river, river: in this instance river appeared last in the first time >the block was run and first in the second so it actually repeated >itself) -how can I avoid that? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From njvack at wisc.edu Tue Oct 18 15:39:12 2011 From: njvack at wisc.edu (Nate Vack) Date: Tue, 18 Oct 2011 10:39:12 -0500 Subject: presenting a movie In-Reply-To: Message-ID: If you're looking to transcode videos, you might try Handbrake: http://handbrake.fr/ which may give you a result you like. And it's free. -n On Tue, Oct 18, 2011 at 8:37 AM, Meltem BALLAN wrote: > Hi David, > That you very much for reminding. I know what I am responsible of especially > when I teach the science ethics. You might be interested that OJOsoft trial > version allows you to convert 20% of your entire data. > Meltem > > > On Mon, Oct 17, 2011 at 4:58 PM, David McFarlane wrote: >> >> Just to clarify, none of the products from ojosoft are free.  They are >> distributed as "shareware", which means that you may download and try them >> for free, and you might indeed get away with continuing to use them for >> free, but if you find them useful then you are supposed to pay for them, >> else how can companies like this continue to make these products available? >>  So if ojosoft provided something of value to your research, then do the >> right thing and buy the product to keep your karma intact and help keep the >> company in business providing useful products for the next time you need >> one. >> >> -- David McFarlane, Professional Faultfinder >> >> >> At 10/17/2011 04:44 PM Monday, you wrote: >> >>> David, >>> I used the free version. But I think it has the similar specs. The other >>> product I can recommend is vlc and vlmc for mac. It is still beta and >>> success rate for my experiments is 50/50. >>> Best >>> Meltem >>> On Oct 17, 2011 4:40 PM, "David McFarlane" >>> <mcfarla9 at msu.edu> wrote: >>> Meltem, >>> >>> Thanks for reporting back on your success, and indicating which product >>> worked for you.  I suppose you used the "Total Video Converter" product from >>> ojosoft (www.ojosoft.com, US$27).  I will add that >>> to my growing E-Prime FAQ.  I wonder how the ojosoft products compare to the >>> AoA products (www.aoamedia.com )? >>> >>> -- David McFarlane, Professional Faultfinder >>> >>> >>> At 10/17/2011 04:27 PM Monday, you wrote: >>> Hi All, >>> I successfully showed a video on E-Prime for 10 min (I am not sure about >>> the delays between netstation and E-PRIME yet) I used OJOSoft to convert >>> original video format (which was VOB in my case) to MPEG-1. I rendered my >>> video within E-Prime codeg config (btw I use K-lite codec). I did not >>> receive any error but some warnings. After the third rendering I got no >>> warning and of course no error. Now I am able to show a series of videos for >>> over 10  min !! >>> Thank you David Vinson for information and other forum members for >>> earlier discussions. >>> Meltem >>> >>> On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN >>> <meltemballan at gmail.com> >>> wrote: >>> Hi David, >>> Thank you very much pointing out the special thread. It is not easy to >>> follow up all the threads but I am trying. >>> I tried to render my files. Before everything I checked the MSconfig as >>> defined on >>> <http://www.pstnet.com/support/kb.asp?TopicID=2621>INFO: >>> How to use MSCONFIG to troubleshoot machine configuration and reduce >>> background applications. Then I followed the instructions on >>> <http://www.pstnet.com/support/kb.asp?TopicID=3162>FEATURE: >>> CodecConfig provides ability to choose codecs used for Movie and Sound >>> rendering. I use k-lite as it works pretty good for my auditory task. But, >>> it seems like I cannot correctly render those files (Failed files). I tried >>> MPEG-1, MPEG-2, avi and as a last format ts. I could not succeed. It is >>> little bit frustrating and I know there are people solved the issue w/ video >>> decoding and presenting. >>> I do not know how to ask the question anymore. But is there a way to show >>> at least a piece between 300 and 800 ms. >>> Thanks >>> MEltem >>> >>> >>> On Mon, Oct 17, 2011 at 11:23 AM, David Vinson >>> <d.vinson at ucl.ac.uk> >>> wrote: >>> Hi Meltem, >>> >>> Sorry to say that I'm afraid your best course of action is to try >>> different video formats. >>> If you run the Codec Config tool on your problematic video this may help >>> to identify what the problem is. >>> >>> You might also find some useful information in this thread from July: >>> >>> <http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22>http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22 >>> >>> good luck, >>> david >>> >>> >>> On 17/10/2011 15:53, Meltem BALLAN wrote: >>> David, >>> Thank you very much for the hint. Unfortunately, it has not been working. >>> I am using mpg format which is the format suggested by PST. I can only load >>> the demo videos but nothing else. I developing a series of experiment for >>> infants and need some attention grabber objects (fixation-like). It does not >>> need to be a fancy video or something just moving shapes or so between 300 >>> and 800 ms. >>> The other experiment is an open eye state (some call it resting but not >>> sure). I am showing a series of videos for 10 min and recording EEG. I >>> cannot get any of my experiments going in E-PRIME w/ video. The error >>> message is a RUNTIME ERROR. An error occurs while attempting to load the >>> movie. Marker: 242 Error: 0 (0x0) >>> Line:202 Error number:11053. >>> There must be a way to solve it. I contacted PST once and no solution >>> offered. I will try to bug them again. >>> Cheers, >>> Meltem >>> >>> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson >>> <d.vinson at ucl.ac.uk >>> > wrote: >>> >>>  Hi, >>> >>>  Presenting movies successfully can be a huge challenge in E-Prime, >>>  mainly related to compatibility issues. >>> >>>  The very first step is to create the simplest possible experiment >>>  which displays only your movie and nothing else.  If this does not >>>  work you may need to convert the movie into some other format. >>> >>>  hope this helps, >>>  david >>> >>> >>>  On 14/10/2011 20:21, Meltem BALLAN wrote: >>> >>>      Hello Again, >>>      I have been trying to present a movie  which is 9 min 40 sec >>>      and I am receiving an error which is : >>>      Run-time Error (Line 838) 11053: An error occurred while >>>      attempting to load the movie >>>      Marker: 227 >>>      Error: -2147220891>2147220891 >>> 2147220891>2147220891> >>> (0x80040265) >>> >>>      I am doing exactly what I was told on the documentations. I >>>      email PST couple of times and no solution yet. Any idea? Has >>>      anyone solved this issue yet ? >>>      Thank you again. >>>      Meltem >>> >>>      --         Meltem Ballan, PhD >>>      Department of Psychiatry, CB# 7160 >>>      University of North Carolina School of Medicine >>>      7023 Neurosciences Hospital >>>      Chapel Hill, NC 27599-7160 >>> >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "E-Prime" group. >>> To post to this group, send email to >>> e-prime at googlegroups.com. >>> To unsubscribe from this group, send email to >>> e-prime+unsubscribe at googlegroups.com. >>> For more options, visit this group at >>> http://groups.google.com/group/e-prime?hl=en. >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "E-Prime" group. >>> To post to this group, send email to e-prime at googlegroups.com. >>> To unsubscribe from this group, send email to >>> e-prime+unsubscribe at googlegroups.com. >>> For more options, visit this group at >>> http://groups.google.com/group/e-prime?hl=en. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to >> e-prime+unsubscribe at googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/e-prime?hl=en. >> > > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Tue Oct 18 17:18:39 2011 From: giladsabo at gmail.com (gilis) Date: Tue, 18 Oct 2011 10:18:39 -0700 Subject: Randomizing without repeating the same word twice In-Reply-To: <4e9d8a05.47352b0a.12f9.1d85SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Thanks! the problem however is still not solved as the example of noRepeat refer to randomizing nested lists while I'm interested in randomizing words from the same list which repeat itself several times. On Oct 18, 4:15 pm, David McFarlane wrote: > Gilis, > > Stock reminder:  1) I do not work for PST.  2) PST's trained staff > takes any and all questions athttp://support.pstnet.com/e%2Dprime/support/login.asp, and they > strive to respond to all requests in 24-48 hours -- this is pretty > much their substitute for proper documentation, so make full use of > it.  3) If you do get an answer from PST Web Support, please extend > the courtesy of posting their reply back here for the sake of others. > > That said, here is my take... > > "Randomization with constraints" is very tricky in E-Prime, and has > been discussed extensively on the message boards.  Try searching for > "random", "pseudorandom", or "constraint" both here at the Google > Group and at the PST Forum.  Also see the "NoRepeat" examples > downloadable fron PST.  And again, do not neglect PST Support, they > would love to hear from you. > > -- David McFarlane, Professional Faultfinder > "For a successful technology, reality must take precedence over > public relations, for nature cannot be fooled."  (Richard Feynman, > Nobel prize-winning physicist) > > > > > > > > >Sorry for bothering the groups so often, but I just tackled a road > >stone in my programming. Words are selected from an attribute which > >contain 10 words and lied in a block that is nested in the main list. > >The words are selected randomly in the block but the list run the > >block 20 times (at list so I weighted the block in the main list > >though it doesn't seem to run it 20 times, which is another > >problem...) so it happen that the same word repeat itself twice (e.g., > >food, apple, juice, fork, spoon, orange, sandwich, beach, ocean, > >river, river: in this instance river appeared last in the first time > >the block was run and first in the second so it actually repeated > >itself)  -how can I avoid that? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Tue Oct 18 21:17:01 2011 From: giladsabo at gmail.com (gilis) Date: Tue, 18 Oct 2011 14:17:01 -0700 Subject: Finding the right comments Message-ID: In continue to my former question I would like to update that I believe that I find the solution though the problem is that I've tough time to find the right commands in eprime. First, in short, this is what I want to do: I've one main list, in this list there are about 10 nested blocks, each block contain an attribute with 10 words and from this attribute the slide object take the word to present each time, so the selection of words from this attribute is set to random. Each block run several times so though the selection of words is random, it could happen that the same word repeat itself twice in the same block (and I don't want it). The solution I was thinking about go like that: Dim blocknum, blockname as integer Blockname=c.GetAttrib(“block_name") ' each block has its own name, that's important do ' starting loop statement Dim Comparison as Boolean 'setting another important variables Dim worda as string Dim wordb as string Dim n as integer N=n+1 ' counting the number of words that were presented, so each word has its own ordinal number If mod n/2=0 then 'well, I don't know the right command in eprime, but I try to see if there is remnant when dividing n by two to conclude if it's odd or even c. SetAttrib “word1”, c.GetAttrib(“word”) 'in the case that n is even number keep the last word in attribute word1 else c.SetAttrib “word2”, c.GetAttrib(“word”) ' in the case that n is odd number, keep the last word in attribute word2 end if c.GetAttrib(“word1”)=worda 'worda= the last word or the last-1 word c.GetAttrib(“word2”)=wordb 'wordb= the last-1 word or the last word if worda=wordb then 'the Boolean variable is false in case that two consecutive words are actually the same Comparison= false Else Comparison=true 'if the two consecutive words are different then the Boolean variable is set to "true" End if If Comparison = false then randomarray(List.&Blockname) 'well, I actually want to randomly select another word from the current block as long as Comparison value is false but this is obviously not the right command-help is needed end if Loop until Comparison=true 'loop until different word is chosen N=0 'reset n value because there is no problem that two consecutive words will be the same if they are in different blocks and if n is not reset then the algorithm will prohibit such cases -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 19 11:45:40 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 19 Oct 2011 04:45:40 -0700 Subject: Finding the right comments In-Reply-To: Message-ID: Hi Gilis, In by far you're not the first and will definitely also not be the last person to struggle with preventing stimuli to 'double up' when a list is repeated. As David wrote in your previous thread, searching this group and the PST forums should give you a bunch of threads on this topic. The solution you propose seems reasonable but the main problem would be that whenever a doubling is discovered, the doubled word should be replaced (or the trial with the double skipped and added again later in the program, causing a potential new doubling etc). This requires interfering with the lists, after which a list should be reset and the randomization up to that point is then lost. It is possible to create a new list from skipped trials that runs after the initial lists have run (if doubles have occurred) but this tampers with a blocked design which is often not desired. In by far the most easy solution therefore is to simply split the stimuli (or whatever the to be randomized values are) in two separate lists that are alternating. I.e. first run a randomized listA then a randomized listB, followed by listA etc. This admittedly results in pseudorandomization but for most designs I'd reckon this is a better solution than to tamper with trialorder 'on the fly', breaking up the blocked design, having a memory heavy comparison process running throughout the test etc etc. best, liw On Oct 18, 11:17 pm, gilis wrote: > In continue to my former question I would like to update that I > believe that I find the solution though the problem is that I've tough > time to find the right commands in eprime. First, in short, this is > what I want to do: I've one main list, in this list there are about 10 > nested blocks, each block contain an attribute with 10 words and from > this attribute the slide object take the word to present each time, so > the selection of words from this attribute is set to random. Each > block run several times so though the selection of words is random, it > could happen that the same word repeat itself twice in the same block > (and I don't want it). The solution I was thinking about go like that: > > Dim blocknum, blockname as integer > > Blockname=c.GetAttrib(“block_name") ' each block has its own name, > that's important > > do  ' starting loop statement > > Dim Comparison as Boolean 'setting another important variables > Dim worda as string > Dim wordb as string > Dim n as integer > > N=n+1 ' counting the number of words that were presented, so each word > has its own ordinal number > > If mod n/2=0 then 'well, I don't know the right command in eprime, but > I try to see if there is remnant when dividing n by two to conclude if > it's odd or even > > c. SetAttrib  “word1”, c.GetAttrib(“word”)  'in the case that n is > even number keep the last word in attribute word1 > else > c.SetAttrib “word2”, c.GetAttrib(“word”)   ' in the case that n is odd > number, keep the last word in attribute word2 > end if > c.GetAttrib(“word1”)=worda          'worda= the last word or the > last-1 word > c.GetAttrib(“word2”)=wordb          'wordb= the last-1 word or the > last word > if worda=wordb then                    'the Boolean variable is false > in case that two consecutive words are actually the same > Comparison= false > Else > Comparison=true                       'if the two consecutive words > are different then the Boolean variable is set to "true" > End if > If Comparison = false then > randomarray(List.&Blockname)  'well, I actually want to randomly > select another word from the current block as long as Comparison value > is        false but this is obviously not the right command-help is > needed > end if > Loop until Comparison=true 'loop until different word is chosen > N=0 'reset n value because there is no problem that two consecutive > words will be the same if they are in different blocks and if n is not > reset then the algorithm will prohibit such cases -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 19 12:20:37 2011 From: liwenna at gmail.com (Anne-Wil Kruijt) Date: Wed, 19 Oct 2011 14:20:37 +0200 Subject: Finding the right comments Message-ID: That being said... given the low amount of stimuli you have, you might not mind typing each word out (and adding "'s) in an inline. In that case you could have a look at the attached script. This is how I would tackle the thing you described. At the beginning of each block the stimwords are loaded into an array, randomized, the first word checked to see whether it's different than the last used word and if that's the case the stimwords are written into the stimlist. I realize this could be more elegantly done (loading the words at the start of the experiment rather than repeatedly at the start of each block, and using a written loop rather than a label, and in order to check whether it works an attribute "doublediscovered" is marked x and remains marked for all 10 trials in that block, but ermm yeah... it does work ^.^) Best, liw -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- A non-text attachment was scrubbed... Name: AWsnorepeats.es2 Type: application/octet-stream Size: 43898 bytes Desc: not available URL: From scarlet.quill at gmail.com Wed Oct 19 14:07:28 2011 From: scarlet.quill at gmail.com (Poppy) Date: Wed, 19 Oct 2011 07:07:28 -0700 Subject: Randomizing Block lists without randomizing the trial list Message-ID: Ok, I'm sure there is a remarkably simple way of doing this; but I've been banging my head against the desk for the last 2 days trying to pull it off. Basically; I am running a repeated measures design whereby a participant is presented with an image and answers 8 sequential likert questions about that image (the image remaining on screen as each question is presented), and then finally makes 2 decisions about that image (One a Binary Ultimatum game question and 1 a binary Prisoners Dilemma question) (again with the image remaining on the screen above the choices). That part I have done and works perfectly. The problem comes where each participant needs to see a total of 16 of these images, essentially 16 blocks of the trial spoken about above, and the order these 16 blocks are presented needs to be random. I've tried nesting the images and questions within trials, and I've tried different proc's for each trial, but everytime I try to randomise the list it ends up mixing up the order of the images and questions. Is there anyway to randomise the blocks, but keeping the trials within the blocks sequential? Thanks! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 19 15:51:09 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 19 Oct 2011 08:51:09 -0700 Subject: Randomizing Block lists without randomizing the trial list In-Reply-To: <4dee885c-826e-40e3-8078-c489f37e7991@1g2000vbx.googlegroups.com> Message-ID: Hi Poppy, I got to admit that your explanation of what you did so far was mostly lost on me... I reckon I won't be the only reader experiencing this problem. In general: realize that e-prime can use information from one single level of each list within a chain of nested list for each run of the most lowest ranked procedure. So ... the thing that you call block where the image appears (and remains) on the display and the pp answers questions: is this (and it sound as if this is the case) one run of a list that has the 8 likert scaled questions and procedures in the top 8 rows and the procedures showing the two different decision questions in the lower two levels? If so -> keep that list sequential (!!), it determines the order of the questions. The determination of the image itself should happen in a different list that is either higher or lower ranked. If (and this may well be the case) the attribute that determines which image is being shown is also in this questions list or even in a lower ranking (nested) list, then move it to a higher ranking list. If the attribute that determines which image is shown is located in a list that is lower ranked (nested into the questionslist) then for each level of the higher ranking list (the 10 questions) a new level will be drawn from the lower ranking list (the images) and hence a new, randomly drawn image will appear for each question. It might well be that I am totally on the wrong track in comprehending what you did so far.., consider posting a screen shot here (or mailing for instance me your studio file). best, liw On Oct 19, 4:07 pm, Poppy wrote: > Ok, I'm sure there is a remarkably simple way of doing this; but I've > been banging my head against the desk for the last 2 days trying to > pull it off. > > Basically; I am running a repeated measures design whereby a > participant is presented with an image and answers 8 sequential likert > questions about that image (the image remaining on screen as each > question is presented), and then finally makes 2 decisions about that > image (One a Binary Ultimatum game question and 1 a binary Prisoners > Dilemma question) (again with the image remaining on the screen above > the choices). That part I have done and works perfectly. > > The problem comes where each participant needs to see a total of 16 of > these images, essentially 16 blocks of the trial spoken about above, > and the order these 16 blocks are presented needs to be random. I've > tried nesting the images and questions within trials, and I've tried > different proc's for each trial, but everytime I try to randomise the > list it ends up mixing up the order of the images and questions. > > Is there anyway to randomise the blocks, but keeping the trials within > the blocks sequential? > > Thanks! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Wed Oct 19 16:06:32 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Wed, 19 Oct 2011 12:06:32 -0400 Subject: Randomizing Block lists without randomizing the trial list In-Reply-To: <4dee885c-826e-40e3-8078-c489f37e7991@1g2000vbx.googlegroup s.com> Message-ID: At 10/19/2011 10:07 AM Wednesday, Poppy wrote: >I've tried nesting the images and questions within trials, and I've >tried different proc's for each trial, but everytime I try to >randomise the list it ends up mixing up the order of the images and questions. I suspect that your use of the term "nesting" here does not coincide with E-Prime's use of that term. I have adopted the term "tiered" to refer to the relationship of, say, block Lists to trial Lists, as opposed to nested Lists within block or trial Lists, etc. Remember, true "nested" Lists only appear when you add a List name in the Nested column of a List, rather than adding another List within a Procedure called by a List. Please go back and do the Nested List tutorial in the User's Guide that came with E-Prime. -- David McFarlane, Professional Faultfinder -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From nick.gaspelin at gmail.com Thu Oct 20 05:05:31 2011 From: nick.gaspelin at gmail.com (Nick G) Date: Wed, 19 Oct 2011 22:05:31 -0700 Subject: If then and loops Message-ID: I'm having trouble with the below code. E-Prime seems to want a 'then' statement immediately following the 'if' statement: if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = "aMed" then Confidence.RESP = strHit2 If one response on the present slide is selected, I just want E-Prime to allow one of the three responses in the string hits. How should this code look? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Thu Oct 20 05:15:33 2011 From: pquain at une.edu.au (Peter Quain) Date: Thu, 20 Oct 2011 16:15:33 +1100 Subject: If then and loops In-Reply-To: <69a532da-2279-481a-8fb7-c4afa5be1724@l10g2000pra.googlegro ups.com> Message-ID: try searching e-basic help for "If...Then...Else (statement)". Note the conditions under which you need to close the conditional with "End If" At 04:05 PM 20/10/2011, you wrote: >I'm having trouble with the below code. E-Prime seems to want a >'then' statement immediately following the 'if' statement: > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = >"aMed" then > Confidence.RESP = strHit2 > >If one response on the present slide is selected, I just want E-Prime >to allow one of the three responses in the string hits. How should >this code look? > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From nick.gaspelin at gmail.com Thu Oct 20 05:47:20 2011 From: nick.gaspelin at gmail.com (Nick G) Date: Wed, 19 Oct 2011 22:47:20 -0700 Subject: If then and loops In-Reply-To: <201110200515.p9K5FbiD014843@mail13.tpg.com.au> Message-ID: The E-basic help doesn't say whether an if-then statement can have multiple conditions. Seems limiting to not have that sort of functionality. -Nick On Oct 19, 11:15 pm, Peter Quain wrote: > try searching e-basic help for "If...Then...Else (statement)". Note > the conditions under which you need to close the conditional with "End If" > > At 04:05 PM 20/10/2011, you wrote: > > > > > > > > >I'm having trouble with the below code.  E-Prime seems to want a > >'then' statement immediately following the 'if' statement: > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > >"aMed" then > >                 Confidence.RESP = strHit2 > > >If one response on the present slide is selected, I just want E-Prime > >to allow one of the three responses in the string hits.  How should > >this code look? > > >-- > >You received this message because you are subscribed to the Google > >Groups "E-Prime" group. > >To post to this group, send email to e-prime at googlegroups.com. > >To unsubscribe from this group, send email to > >e-prime+unsubscribe at googlegroups.com. > >For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From nick.gaspelin at gmail.com Thu Oct 20 05:52:40 2011 From: nick.gaspelin at gmail.com (Nick G) Date: Wed, 19 Oct 2011 22:52:40 -0700 Subject: If then and loops In-Reply-To: Message-ID: You know in C you can just if (condition1 && condition2) On Oct 19, 11:47 pm, Nick G wrote: > The E-basic help doesn't say whether an if-then statement can have > multiple conditions.  Seems limiting to not have that sort of > functionality. > > -Nick > > On Oct 19, 11:15 pm, Peter Quain wrote: > > > > > > > > > try searching e-basic help for "If...Then...Else (statement)". Note > > the conditions under which you need to close the conditional with "End If" > > > At 04:05 PM 20/10/2011, you wrote: > > > >I'm having trouble with the below code.  E-Prime seems to want a > > >'then' statement immediately following the 'if' statement: > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > >"aMed" then > > >                 Confidence.RESP = strHit2 > > > >If one response on the present slide is selected, I just want E-Prime > > >to allow one of the three responses in the string hits.  How should > > >this code look? > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Thu Oct 20 06:33:54 2011 From: pquain at une.edu.au (Peter Quain) Date: Thu, 20 Oct 2011 17:33:54 +1100 Subject: If then and loops In-Reply-To: <055abe75-d5d3-4fd3-b67a-092d61f181d2@42g2000prp.googlegrou ps.com> Message-ID: In E-basic help look for "And (operator)" ... links to other operators at bottom of the page. At 04:52 PM 20/10/2011, you wrote: >You know in C you can just >if (condition1 && condition2) > > >On Oct 19, 11:47 pm, Nick G wrote: > > The E-basic help doesn't say whether an if-then statement can have > > multiple conditions. Seems limiting to not have that sort of > > functionality. > > > > -Nick > > > > On Oct 19, 11:15 pm, Peter Quain wrote: > > > > > > > > > > > > > > > > > try searching e-basic help for "If...Then...Else (statement)". Note > > > the conditions under which you need to close the conditional > with "End If" > > > > > At 04:05 PM 20/10/2011, you wrote: > > > > > >I'm having trouble with the below code. E-Prime seems to want a > > > >'then' statement immediately following the 'if' statement: > > > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > > >"aMed" then > > > > Confidence.RESP = strHit2 > > > > > >If one response on the present slide is selected, I just want E-Prime > > > >to allow one of the three responses in the string hits. How should > > > >this code look? > > > > > >-- > > > >You received this message because you are subscribed to the Google > > > >Groups "E-Prime" group. > > > >To post to this group, send email to e-prime at googlegroups.com. > > > >To unsubscribe from this group, send email to > > > >e-prime+unsubscribe at googlegroups.com. > > > >For more options, visit this group at > > > >http://groups.google.com/group/e-prime?hl=en. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Thu Oct 20 06:33:27 2011 From: pquain at une.edu.au (Peter Quain) Date: Thu, 20 Oct 2011 17:33:27 +1100 Subject: If then and loops In-Reply-To: Message-ID: Google can be your friend: Using If...Then...Else Statement ' Dimension the variable. Dim x As Integer ' Place a value in x. x = Int(Rnd * 100) ' Display the value of x. MsgBox "The value of x is " & x & "." ' Test to see if x less than or equal to 10. If x <= 10 Then ' Display a message box. MsgBox "X is <=10" ' Test to see if x less than or equal to 40 and greater than 10. ElseIf x <= 40 And x > 10 Then MsgBox "X is <=40 and > 10" ' Test to see if x less than or equal to 70 and greater than 40. ElseIf x <= 70 And x > 40 Then MsgBox "X is <=70 and > 40" ' Test to see if x less than or equal to 100 and greater than 70. ElseIf x <= 100 And x > 70 Then MsgBox "X is <= 100 and > 70" ' If none of the above tests returned true. Else MsgBox "X does not fall within the range" End If At 04:47 PM 20/10/2011, you wrote: >The E-basic help doesn't say whether an if-then statement can have >multiple conditions. Seems limiting to not have that sort of >functionality. > >-Nick > >On Oct 19, 11:15 pm, Peter Quain wrote: > > try searching e-basic help for "If...Then...Else (statement)". Note > > the conditions under which you need to close the conditional with "End If" > > > > At 04:05 PM 20/10/2011, you wrote: > > > > > > > > > > > > > > > > >I'm having trouble with the below code. E-Prime seems to want a > > >'then' statement immediately following the 'if' statement: > > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > >"aMed" then > > > Confidence.RESP = strHit2 > > > > >If one response on the present slide is selected, I just want E-Prime > > >to allow one of the three responses in the string hits. How should > > >this code look? > > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pquain at une.edu.au Thu Oct 20 06:01:59 2011 From: pquain at une.edu.au (Peter Quain) Date: Thu, 20 Oct 2011 17:01:59 +1100 Subject: If then and loops In-Reply-To: Message-ID: Note in description: "statement or group of statements." ----------------------- Syntax 1 If condition Then statements [Else else_statements] Syntax 2 If condition Then [statements] [ElseIf else_condition Then [elseif_statements]] [Else [else_statements]] End If ------------------------- Description Conditionally executes a statement or group of statements. Comments The single-line conditional statement (syntax 1) has the following parameters: Parameter Description condition Any expression evaluating to a Boolean value. statements One or more statements separated with colons. This group of statements is executed when condition is True. else_statements One or more statements separated with colons. This group of statements is executed when condition is False. The multiline conditional statement (syntax 2) has the following parameters: Parameter Description condition Any expression evaluating to a Boolean value. statements One or more statements to be executed when condition is True. else_condition Any expression evaluating to a Boolean value. The else_condition is evaluated if condition is False. elseif_statements One or more statements to be executed when condition is False and else_condition is True. else_statments One or more statements to be executed when both condition and else_condition are False. ------------------------------- At 04:47 PM 20/10/2011, you wrote: >The E-basic help doesn't say whether an if-then statement can have >multiple conditions. Seems limiting to not have that sort of >functionality. > >-Nick > >On Oct 19, 11:15 pm, Peter Quain wrote: > > try searching e-basic help for "If...Then...Else (statement)". Note > > the conditions under which you need to close the conditional with "End If" > > > > At 04:05 PM 20/10/2011, you wrote: > > > > > > > > > > > > > > > > >I'm having trouble with the below code. E-Prime seems to want a > > >'then' statement immediately following the 'if' statement: > > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > >"aMed" then > > > Confidence.RESP = strHit2 > > > > >If one response on the present slide is selected, I just want E-Prime > > >to allow one of the three responses in the string hits. How should > > >this code look? > > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 20 07:26:40 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 20 Oct 2011 08:26:40 +0100 Subject: If then and loops In-Reply-To: <055abe75-d5d3-4fd3-b67a-092d61f181d2@42g2000prp.googlegroups.com> Message-ID: Avoiding pedantry: In basic you can just if (condition1 and condition2) then ... which works almost exactly the same as the & in C (but not &&, which would be if (condition1) {if (condition2) {...}}. Anyway, the answer is much shorter: IF (present.RESP = "z" and strHit2 = "aHi") or (strHit2 = "aLo" and strHit2 = "aMed") THEN Confidence.RESP = strHit2 END IF Note the end if. All on one line is also possible, but note it freaks out if you then use end if. THIS is what is exasperating - if not necessarily limitating - about ebasic. More likely, your code makes no sense in some other degree, though. Notice me putting in the brackets - they are useless - and comes before or anyway - but i think where you got stuck was in the length of the IF statement. I mean, strHit2 is never both aLo and aMed, right? In your original code it did not have an operator (or strHit2 = "aLo" strHit2 = ?), so, given a wild guess, you actually want something like this: IF present.RESP = "z" and (strHit2 = "this" or strHit2 = "that" or strHit2 = "nothisactually") THEN Confidence.RESP = strHit2 END IF Notice that due to the precedence of and over or - both in C and basic - this is possible, but your previous code made little sense. Best, Mich ________________________________________ From: e-prime at googlegroups.com [e-prime at googlegroups.com] On Behalf Of Nick G [nick.gaspelin at gmail.com] Sent: 20 October 2011 06:52 To: E-Prime Subject: Re: If then and loops You know in C you can just if (condition1 && condition2) On Oct 19, 11:47 pm, Nick G wrote: > The E-basic help doesn't say whether an if-then statement can have > multiple conditions. Seems limiting to not have that sort of > functionality. > > -Nick > > On Oct 19, 11:15 pm, Peter Quain wrote: > > > > > > > > > try searching e-basic help for "If...Then...Else (statement)". Note > > the conditions under which you need to close the conditional with "End If" > > > At 04:05 PM 20/10/2011, you wrote: > > > >I'm having trouble with the below code. E-Prime seems to want a > > >'then' statement immediately following the 'if' statement: > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > >"aMed" then > > > Confidence.RESP = strHit2 > > > >If one response on the present slide is selected, I just want E-Prime > > >to allow one of the three responses in the string hits. How should > > >this code look? > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en.This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From kylehdavis at gmail.com Fri Oct 21 01:15:33 2011 From: kylehdavis at gmail.com (Kyle Davis) Date: Thu, 20 Oct 2011 18:15:33 -0700 Subject: Hit Test Issues/Response collection conversion Message-ID: Hello, I am new to programming beyond some experience with R so the learning curve has been a bit steep thus far. The program I am currently working on is a number line experiment where subjects are shown a number and a line that has the endpoints labeled (i.e. 0 to 1000, -5 to 5, etc.). I am having two problems with it though. The first problem is I am trying to create an error trap where if the subject clicks outside of the line it returns them an error message and then back to the same exact problem they were working on when the error occurred. PST support suggested creating a label called "tryagain" and then returning the user to that but it did not work the way I intended. I want to do a HitTest where if the user clicks within the slide object "LineText" it collects there response and they go on but if they click outside of the object it returns an error message, I am just not sure of the syntax and the functions I need to call in order to present the error message. The second problem is with calculating the user input. The existing code was programmed by someone else and it works fine if the origin of the line is 0, but if the origin of the line is anything else (i.e. -5, .1, 15) it merely reports the users response on the scale of the difference between the origin of the line and the endpoint (so a scale of 15 to 25 where the user clicks where 20 should be it is reported as 5 instead of 20). Below is the code that is giving me the problems... sorry if it is messy. Dim lineOrigin as Integer, lineEnd as Integer Dim lineDispOrigin as Integer, lineDispEnd as Integer Dim xInt as Integer Dim slText as SlideText Dim scalePerPixel as Double 'Retrieve mouse click location and store in Point variable to send to PointInRect Dim theMouseResponseData As MouseResponseData Dim ptr As Point Dim strHit As String 'Set theMouseResponseData = CMouseResponseData(StimulusSlide.InputMasks.Responses(1)) Set theMouseResponseData = CMouseResponseData(Stimulus.InputMasks.Responses(1)) ptr.x = theMouseResponseData.CursorX ptr.y = theMouseResponseData.CursorY lineOrigin = c.GetAttrib("LineOrigin") lineEnd = c.GetAttrib("LineEnd") Set slText = CSlideText( StimulusSlide.States("Default").Objects("LineText") ) '? msgbox slText.X & " " & slText.Width '? ' assume line is centered, so slText.X = Display.XRes/2 '? msgbox slText.Width & " " & Left$( slText.Width, (Len(slText.Width) - 1) ) '? xInt = CInt( Left$( slText.Width, (Len(slText.Width) - 1) ) ) ' remove "%" from end xInt = xInt * Display.XRes / 100 ' convert % to #pixels lineDispOrigin = (Display.XRes/2) - (xInt/2) '? lineDispEnd = slText.X + (slText.Width/2) '? lineDispEnd = lineDispOrigin + xInt scalePerPixel = (LineEnd - LineOrigin) / (LineDispEnd - LineDispOrigin) c.SetAttrib "Line.CursorX", ptr.x c.SetAttrib "Line.XUniform", (ptr.x - lineDispOrigin) * scalePerPixel '?Figuring out the definitions of variables'? c.SetAttrib "LineDispOrigin", lineDispOrigin c.SetAttrib "LineDispEnd", LineDispEnd c.SetAttrib "scaleperpixel", scalePerPixel c.SetAttrib "xInt", xInt 'Hit Test' If strHit <> "LineText" Then Goto TryAgain End If 'If strHit = "LineText" Then 'Results.Text = "Great!" 'Stimulus.ACC = 1 'Else 'Results.Text = "You missed, try again!" 'Stimulus.ACC = 0 'End If Set slText = Nothing Set theMouseResponseData = Nothing Mouse.ShowCursor FALSE Thank you for any help, I really appreciate it as I need to get this up and running soon. p.s. PST recommended "To calculate responses, I strongly recommend adjusting the X position of the response according to the left edge of the line (i.e. Display.XRes * .3 for your 70% line), then calculating the rating as a percentage of the total length of the line (Display.XRes * .7). All of these calculations should be done in terms of pixels, and adjusted at the end to fit your scale if desired." but I am not exactly sure how to implement this as I did not create the original calculation. Thank you again -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From benhisattva at googlemail.com Fri Oct 21 09:33:50 2011 From: benhisattva at googlemail.com (Ben) Date: Fri, 21 Oct 2011 02:33:50 -0700 Subject: Dynamometer Message-ID: Hi all, We want to measure the force a subject applies to press a button or move a joystick. Has anybody used a dynamometer and can recommend a device? Regards, Ben -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From rbgarcia at gmail.com Fri Oct 21 14:47:26 2011 From: rbgarcia at gmail.com (Garcia) Date: Fri, 21 Oct 2011 07:47:26 -0700 Subject: Hit Test Issues/Response collection conversion In-Reply-To: <0a04656d-b504-472c-84e5-f2070950cc50@g25g2000yqh.googlegroups.com> Message-ID: Hello, I’ve noticed that you have an empty strHit variable. I think you should have something like this to implement the so called "error trap": strHit = TaskDisplay.States(TaskDisplay.ActiveState).HitTest(theMouseResponseData.CursorX, theMouseResponseData.CursorY) If strHit = “LineText” Then ‘write here the code to process the response Else ‘(the click was outside the LineText) Display error message (see the ebasic msgbox function) Goto TryAgain End If For the arithmetic problem I'd suggest to create a variable to hold the deviation from origin (0, 5, etc) and to apply it as a correction factor to the user input. Regards, RB Garcia On 21 out, 03:15, Kyle Davis wrote: > Hello, > I am new to programming beyond some experience with R so the learning > curve has been a bit steep thus far.  The program I am currently > working on is a number line experiment where subjects are shown a > number and a line that has the endpoints labeled (i.e. 0 to 1000, -5 > to 5, etc.).  I am having two problems with it though.  The first > problem is I am trying to create an error trap where if the subject > clicks outside of the line it returns them an error message and then > back to the same exact problem they were working on when the error > occurred.  PST support suggested creating a label called "tryagain" > and then returning the user to that but it did not work the way I > intended.  I want to do a HitTest where if the user clicks within the > slide object "LineText" it collects there response and they go on but > if they click outside of the object it returns an error message, I am > just not sure of the syntax and the functions I need to call in order > to present the error message. > >    The second problem is with calculating the user input.  The > existing code was programmed by someone else and it works fine if the > origin of the line is 0, but if the origin of the line is anything > else (i.e. -5, .1, 15) it merely reports the users response on the > scale of the difference between the origin of the line and the > endpoint (so a scale of 15 to 25 where the user clicks where 20 should > be it is reported as 5 instead of 20). > Below is the code that is giving me the problems... sorry if it is > messy. > > Dim  lineOrigin as Integer, lineEnd as Integer > Dim  lineDispOrigin as Integer, lineDispEnd as Integer > Dim  xInt as Integer > Dim  slText as SlideText > Dim  scalePerPixel as Double > 'Retrieve mouse click location and store in Point variable to send to > PointInRect > Dim theMouseResponseData As MouseResponseData > Dim ptr As Point > Dim strHit As String > > 'Set theMouseResponseData = > CMouseResponseData(StimulusSlide.InputMasks.Responses(1)) > Set theMouseResponseData = > CMouseResponseData(Stimulus.InputMasks.Responses(1)) > > ptr.x = theMouseResponseData.CursorX > ptr.y = theMouseResponseData.CursorY > > lineOrigin = c.GetAttrib("LineOrigin") > lineEnd = c.GetAttrib("LineEnd") > Set slText = > CSlideText( StimulusSlide.States("Default").Objects("LineText") ) > '? msgbox slText.X & "  " & slText.Width  '? > ' assume line is centered, so slText.X = Display.XRes/2 > '? msgbox slText.Width & "  " & Left$( slText.Width, > (Len(slText.Width) - 1) )  '? > xInt = CInt( Left$( slText.Width, (Len(slText.Width) - 1) ) )  ' > remove "%" from end > xInt = xInt * Display.XRes / 100  ' convert % to #pixels > lineDispOrigin = (Display.XRes/2) - (xInt/2) > '? lineDispEnd = slText.X + (slText.Width/2)  '? > lineDispEnd = lineDispOrigin + xInt > scalePerPixel = (LineEnd - LineOrigin) / (LineDispEnd - > LineDispOrigin) > c.SetAttrib "Line.CursorX", ptr.x > c.SetAttrib "Line.XUniform", (ptr.x - lineDispOrigin) * scalePerPixel > > '?Figuring out the definitions of variables'? > c.SetAttrib "LineDispOrigin", lineDispOrigin > c.SetAttrib "LineDispEnd", LineDispEnd > c.SetAttrib "scaleperpixel", scalePerPixel > c.SetAttrib "xInt", xInt > > 'Hit Test' > If strHit <> "LineText" Then >    Goto TryAgain > End If > > 'If strHit = "LineText" Then > 'Results.Text = "Great!" > 'Stimulus.ACC = 1 > 'Else > 'Results.Text = "You missed, try again!" > 'Stimulus.ACC = 0 > 'End If > > Set slText = Nothing > Set theMouseResponseData = Nothing > Mouse.ShowCursor FALSE > > Thank you for any help, I really appreciate it as I need to get this > up and running soon. > p.s. PST recommended "To calculate responses, I strongly recommend > adjusting the X position of the response according to the left edge of > the line (i.e. Display.XRes * .3 for your 70% line), then calculating > the rating as a percentage of the total length of the line > (Display.XRes * .7). All of these calculations should be done in terms > of pixels, and adjusted at the end to fit your scale if desired." but > I am not exactly sure how to implement this as I did not create the > original calculation.  Thank you again -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Fri Oct 21 15:27:42 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Fri, 21 Oct 2011 11:27:42 -0400 Subject: Hit Test Issues/Response collection conversion In-Reply-To: Message-ID: Kyle, First, to expand on RB Garcia's answer to the arithmetic, (PST's advice notwithstanding) you need merely add back in the left end value, thus, c.SetAttrib "Line.XUniform", _ ((ptr.x - lineDispOrigin) * scalePerPixel) + LineOrigin Next, if you want to present your error feedback with a TextDisplay or Slide, etc., instead of a MsgBox, then you need to do a little more footwork. There are several similar ways to accomplish it. In short, you need to add another Slide or whatever for your error feedback, and then another inline to skip over it when not needed. For example, your Procedure might have a structure like - SkipErrCode - ErrLabel - ErrSlide - StimulusSlideLabel - StimulusSlide - LineRespCode SkipErrCode simply contains the following inline code: Goto StimulusSlideLabel That skips over ErrSlide the first time through the Procedure. LineRespCode contains all your inline code to process the line response, including something like the following: If strHit <> "LineText" Then Goto ErrLabel End If Now, upon an error, the program will loop back to show ErrSlide, present StimulusSlide again, etc. -- David McFarlane, Professional Faultfinder At 10/21/2011 10:47 AM Friday, Garcia wrote: >Hello, > >I've noticed that you have an empty strHit variable. I think you >should have something like this to implement the so called "error >trap": > >strHit = >TaskDisplay.States(TaskDisplay.ActiveState).HitTest(theMouseResponseData.CursorX, >theMouseResponseData.CursorY) >If strHit = "LineText" Then > > 'write here the code to process the response > >Else '(the click was outside the LineText) > > Display error message (see the ebasic msgbox function) > Goto TryAgain > >End If > > >For the arithmetic problem I'd suggest to create a variable to hold >the deviation from origin (0, 5, etc) and to apply it as a correction >factor to the user input. > >Regards, >RB Garcia > >On 21 out, 03:15, Kyle Davis wrote: > > Hello, > > I am new to programming beyond some experience with R so the learning > > curve has been a bit steep thus far. The program I am currently > > working on is a number line experiment where subjects are shown a > > number and a line that has the endpoints labeled (i.e. 0 to 1000, -5 > > to 5, etc.). I am having two problems with it though. The first > > problem is I am trying to create an error trap where if the subject > > clicks outside of the line it returns them an error message and then > > back to the same exact problem they were working on when the error > > occurred. PST support suggested creating a label called "tryagain" > > and then returning the user to that but it did not work the way I > > intended. I want to do a HitTest where if the user clicks within the > > slide object "LineText" it collects there response and they go on but > > if they click outside of the object it returns an error message, I am > > just not sure of the syntax and the functions I need to call in order > > to present the error message. > > > > The second problem is with calculating the user input. The > > existing code was programmed by someone else and it works fine if the > > origin of the line is 0, but if the origin of the line is anything > > else (i.e. -5, .1, 15) it merely reports the users response on the > > scale of the difference between the origin of the line and the > > endpoint (so a scale of 15 to 25 where the user clicks where 20 should > > be it is reported as 5 instead of 20). > > Below is the code that is giving me the problems... sorry if it is > > messy. > > > > Dim lineOrigin as Integer, lineEnd as Integer > > Dim lineDispOrigin as Integer, lineDispEnd as Integer > > Dim xInt as Integer > > Dim slText as SlideText > > Dim scalePerPixel as Double > > 'Retrieve mouse click location and store in Point variable to send to > > PointInRect > > Dim theMouseResponseData As MouseResponseData > > Dim ptr As Point > > Dim strHit As String > > > > 'Set theMouseResponseData = > > CMouseResponseData(StimulusSlide.InputMasks.Responses(1)) > > Set theMouseResponseData = > > CMouseResponseData(Stimulus.InputMasks.Responses(1)) > > > > ptr.x = theMouseResponseData.CursorX > > ptr.y = theMouseResponseData.CursorY > > > > lineOrigin = c.GetAttrib("LineOrigin") > > lineEnd = c.GetAttrib("LineEnd") > > Set slText = > > CSlideText( StimulusSlide.States("Default").Objects("LineText") ) > > '? msgbox slText.X & " " & slText.Width '? > > ' assume line is centered, so slText.X = Display.XRes/2 > > '? msgbox slText.Width & " " & Left$( slText.Width, > > (Len(slText.Width) - 1) ) '? > > xInt = CInt( Left$( slText.Width, (Len(slText.Width) - 1) ) ) ' > > remove "%" from end > > xInt = xInt * Display.XRes / 100 ' convert % to #pixels > > lineDispOrigin = (Display.XRes/2) - (xInt/2) > > '? lineDispEnd = slText.X + (slText.Width/2) '? > > lineDispEnd = lineDispOrigin + xInt > > scalePerPixel = (LineEnd - LineOrigin) / (LineDispEnd - > > LineDispOrigin) > > c.SetAttrib "Line.CursorX", ptr.x > > c.SetAttrib "Line.XUniform", (ptr.x - lineDispOrigin) * scalePerPixel > > > > '?Figuring out the definitions of variables'? > > c.SetAttrib "LineDispOrigin", lineDispOrigin > > c.SetAttrib "LineDispEnd", LineDispEnd > > c.SetAttrib "scaleperpixel", scalePerPixel > > c.SetAttrib "xInt", xInt > > > > 'Hit Test' > > If strHit <> "LineText" Then > > Goto TryAgain > > End If > > > > 'If strHit = "LineText" Then > > 'Results.Text = "Great!" > > 'Stimulus.ACC = 1 > > 'Else > > 'Results.Text = "You missed, try again!" > > 'Stimulus.ACC = 0 > > 'End If > > > > Set slText = Nothing > > Set theMouseResponseData = Nothing > > Mouse.ShowCursor FALSE > > > > Thank you for any help, I really appreciate it as I need to get this > > up and running soon. > > p.s. PST recommended "To calculate responses, I strongly recommend > > adjusting the X position of the response according to the left edge of > > the line (i.e. Display.XRes * .3 for your 70% line), then calculating > > the rating as a percentage of the total length of the line > > (Display.XRes * .7). All of these calculations should be done in terms > > of pixels, and adjusted at the end to fit your scale if desired." but > > I am not exactly sure how to implement this as I did not create the > > original calculation. Thank you again -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Fri Oct 21 15:37:51 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Fri, 21 Oct 2011 11:37:51 -0400 Subject: Dynamometer In-Reply-To: Message-ID: Ben, Don't know about a dynomometer, but FWIW, just a few days ago I learned about some availabe small "flexible force sensors" (http://www.tekscan.com/flexible-force-sensors ). You would of course also have to add an A/D converter (e.g., http://www.mccdaq.com/usb-data-acquisition/USB-1208-Series.aspx ), and then integrate the A/D software with E-Prime (not for the faint of heart, but eminently possible, as I know from some experience). -- David McFarlane, Professional Faultfinder At 10/21/2011 05:33 AM Friday, you wrote: >We want to measure the force a subject applies to press a button or >move a joystick. Has anybody used a dynamometer and can recommend a >device? > >Regards, >Ben -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Fri Oct 21 15:46:38 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Fri, 21 Oct 2011 16:46:38 +0100 Subject: Dynamometer In-Reply-To: <4ea191fd.c4862a0a.7a47.ffffd3f1SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hiya, To add another experience, I've used the Jamar+ digital dynamometer here to test grip force, but I cannot be integrated into e-prime or such (other than typing in its output). Such devices are also of more use to measure 'maximum grip force', and, should you ever do this, I would recommend testing multiple trials a long time in between (I mean minutes). Participants here usually scored 40 kg (what, 6-7 stones or something, for the imperialists here) at first trial and 20 at the 3rd in a row. Not very reliable. For ease of programming and more natural experiments with e-prime and such, I'd recommend force joysticks. We had a discussion about some of these on this list, I seem to recall. All in all, it depends on whether you're planning to publish in a psychophysics journal - which would require something along David's suggestion or very good medical equipment - or psychological-neuropsychological - for which often just any force-feedback joystick would suffice. Best, Mich Dr. Michiel M. Sovijärvi-Spapé Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of David McFarlane Sent: 21 October 2011 16:38 To: e-prime at googlegroups.com Subject: Re: Dynamometer Ben, Don't know about a dynomometer, but FWIW, just a few days ago I learned about some availabe small "flexible force sensors" (http://www.tekscan.com/flexible-force-sensors ). You would of course also have to add an A/D converter (e.g., http://www.mccdaq.com/usb-data-acquisition/USB-1208-Series.aspx ), and then integrate the A/D software with E-Prime (not for the faint of heart, but eminently possible, as I know from some experience). -- David McFarlane, Professional Faultfinder At 10/21/2011 05:33 AM Friday, you wrote: >We want to measure the force a subject applies to press a button or >move a joystick. Has anybody used a dynamometer and can recommend a >device? > >Regards, >Ben -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From njvack at wisc.edu Fri Oct 21 16:20:42 2011 From: njvack at wisc.edu (Nate Vack) Date: Fri, 21 Oct 2011 11:20:42 -0500 Subject: Dynamometer In-Reply-To: <4ea191fd.c4862a0a.7a47.ffffd3f1SMTPIN_ADDED@gmr-mx.google.com> Message-ID: On Fri, Oct 21, 2011 at 10:37 AM, David McFarlane wrote: > Don't know about a dynomometer, but FWIW, just a few days ago I learned > about some availabe small "flexible force sensors" > (http://www.tekscan.com/flexible-force-sensors If you're going down this rabbit hole (and it's a deep hole!), here's a fairly complete guide to building these things: http://www.nakka-rocketry.net/strainlc.html You'd want to make something for it that'd actually be grippable, and build a data transfer device (you could program a microcontroller to dump the data over a serial line, for example). It's certainly not a 'buy this thing and plug it in' solution. -n -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From maartjevroling at gmail.com Fri Oct 21 19:57:09 2011 From: maartjevroling at gmail.com (mrtj) Date: Fri, 21 Oct 2011 12:57:09 -0700 Subject: beginners-question parallel port Message-ID: I have a beginners-question regarding my E-prime programming. I want to send event-related triggers to BioPac and after doing some research I figured that an Inline with the following should do the trick: Stimulus.OnsetSignalEnabled = True Stimulus.OnsetSignalPort = &H378 Stimulus.OnsetSignalData = 1 Stimulus.OffsetSignalEnabled = True Stimulus.OffsetSignalPort = &H378 Stimulus.OffsetSignalData = 0 However, it seems to me that I should define/open/set-to-zero the Port at the beginning of my experiment first. Am I correct to assume, and if do... how can I do this. I hope you can help me out. Many thanks! Maartje -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pfc.groot at gmail.com Fri Oct 21 22:04:23 2011 From: pfc.groot at gmail.com (Paul Groot) Date: Sat, 22 Oct 2011 00:04:23 +0200 Subject: beginners-question parallel port In-Reply-To: Message-ID: Hi Maartje, It is not required to open a classic LPT port. EPrime directly writes to the output registers of the IO-port. However, it is a good think to initialize the state of the output pins at the start of your experiment with a single line of inline script: WritePort &H378, 0 (although you could also use 3 lines of code to configure the onsetsignal method on the first object using code 0 to achieve the same thing) best, Paul 2011/10/21 mrtj : > I have a beginners-question regarding my E-prime programming. > I want to send event-related triggers to BioPac and after doing some > research I figured that an Inline with the following should do the > trick: > > Stimulus.OnsetSignalEnabled = True > Stimulus.OnsetSignalPort = &H378 > Stimulus.OnsetSignalData = 1 > > Stimulus.OffsetSignalEnabled = True > Stimulus.OffsetSignalPort = &H378 > Stimulus.OffsetSignalData = 0 > > However, it seems to me that I should define/open/set-to-zero the Port > at the beginning of my experiment first. Am I correct to assume, and > if do... how can I do this. > > I hope you can help me out. Many thanks! > Maartje > > > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Sat Oct 22 16:45:11 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Sat, 22 Oct 2011 12:45:11 -0400 Subject: beginners-question parallel port In-Reply-To: Message-ID: Maartje , And if you want to look like a real programmer instead of a novice, you will replace the "magic numbers" with named constants, thus, Const OutPort as Integer = &h0378 Const BioPacTrigger as Integer = &h01 WritePort OutPort, 0 Stimulus.OnsetSignalEnabled = True Stimulus.OnsetSignalPort = OutPort Stimulus.OnsetSignalData = BioPacTrigger Stimulus.OffsetSignalEnabled = True Stimulus.OffsetSignalPort = OutPort Stimulus.OffsetSignalData = 0 -- David McFarlane, Professional Faultfinder Quoting Paul Groot: > Hi Maartje, > > It is not required to open a classic LPT port. EPrime directly writes > to the output registers of the IO-port. However, it is a good think to > initialize the state of the output pins at the start of your > experiment with a single line of inline script: > > WritePort &H378, 0 > > > (although you could also use 3 lines of code to configure the > onsetsignal method on the first object using code 0 to achieve the > same thing) > > best, > Paul > > > 2011/10/21 mrtj: >> I have a beginners-question regarding my E-prime programming. >> I want to send event-related triggers to BioPac and after doing some >> research I figured that an Inline with the following should do the >> trick: >> >> Stimulus.OnsetSignalEnabled = True >> Stimulus.OnsetSignalPort = &H378 >> Stimulus.OnsetSignalData = 1 >> >> Stimulus.OffsetSignalEnabled = True >> Stimulus.OffsetSignalPort = &H378 >> Stimulus.OffsetSignalData = 0 >> >> However, it seems to me that I should define/open/set-to-zero the Port >> at the beginning of my experiment first. Am I correct to assume, and >> if do... how can I do this. >> >> I hope you can help me out. Many thanks! >> Maartje -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sat Oct 22 22:08:27 2011 From: giladsabo at gmail.com (gilis) Date: Sat, 22 Oct 2011 15:08:27 -0700 Subject: Can't get addlevel commant to do the trick...(plus another question) Message-ID: Hi all.. when I try to do that: dim nLevel as integer for nLevel= 1 to 10 stimlist.AddLevel 0 stimlist.SetWeight nLevel, "1" stimlist.SetProc nLevel, "trialproc" stimlist.SetAttrib nLevel, "word", "nothing" stimlist.SetAttrib nLevel , "Word_type", "notrealy" stimlist.SetAttrib nLevel, "correct", "0" stimlist.SetAttrib nLevel, "xcolor", "black" Set stimlist.TerminateCondition = Cycles(1) Set stimlist.ResetCondition = Samples(10) stimlist.Reset Next nLevel I get "level that is an integer with level count mismatch" -well, I tried to solve it in many ways, but I guess that some help could be more helpful. Second question is about this issue: dim a(9) as string dim stimarray(9) as string dim c1 as string dim m as integer a(0)="word1" . . a(9)="word10" . . . for m=1 to 1o stimlist.SetAttrib m, "word", stimarray(m-1) c1 = c.getattrib("word") if c1 = a(0) or a(1) or a(2) or a(3) or a(4) then stimlist.SetAttrib m, "correct", 1 end if It keep telling me that there is no such attribute as "word", though you can see that I predefined one and just to make sure I also did it in the relevant list object. Again, I tried to solve it in many ways but your help sounds like a better idea. Thanks in advance, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sat Oct 22 22:09:29 2011 From: giladsabo at gmail.com (gilis) Date: Sat, 22 Oct 2011 15:09:29 -0700 Subject: Finding the right comments In-Reply-To: Message-ID: As always, you're great and very helpful and as always, I got more questions..;) Gilis On Oct 19, 2:20 pm, Anne-Wil Kruijt wrote: > That being said... given the low amount of stimuli you have, you might > not mind typing each word out (and adding "'s) in an inline. > In that case you could have a look at the attached script. This is how > I would tackle the thing you described. > > At the beginning of each block the stimwords are loaded into an array, > randomized, the first word checked to see whether it's different than > the last used word and if that's the case the stimwords are written > into the stimlist. > > I realize this could be more elegantly done (loading the words at the > start of the experiment rather than repeatedly at the start of each > block, and using a written loop rather than a label,  and in order to > check whether it works an attribute "doublediscovered" is marked x and > remains marked for all 10 trials in that block, but ermm yeah... it > does work ^.^) > > Best, > > liw > >  AWsnorepeats.es2 > 57KViewDownload -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Sun Oct 23 11:27:18 2011 From: liwenna at gmail.com (liwenna) Date: Sun, 23 Oct 2011 04:27:18 -0700 Subject: Can't get addlevel commant to do the trick...(plus another question) In-Reply-To: <9a73bc42-a813-44a2-b5cc-fde68f321306@s14g2000vbj.googlegroups.com> Message-ID: Hi Gilis, Not sure about the first question you ask, but could it have something to do with the line 'stimlist.AddLevel 0' ? Seems to me that you're adding zero levels there making that line either redundant or possibly messing up your script (given that the error message seems to have something to do with a mismatch between the numbering or number of levels). As for the second question: I think you'll have to use the stimlist.reset command before you can operate on the attribute values. But what confuses me more is what the possible location of this script is?? If it's on the proc that is nested in stimlist than you should (perhaps even could?) not tamper with the stimlist that the proc is in while if it's not on the proc that is nested into stimlist than you're in the wrong context (the c in c.getattrib) to get the value of the attribute using that command. Perhaps (guessing here) you overlooked the part where adding levels with a script should be done to a separate list that get's located later in the main procedure than the list that the program is currently 'working' in, i.e not the list that is active when the inline is encountered. On 23 okt, 00:08, gilis wrote: > Hi all.. > > when I try to do that: > > dim nLevel as integer > > for nLevel= 1 to 10 > > stimlist.AddLevel 0 > > stimlist.SetWeight nLevel, "1" > > stimlist.SetProc nLevel, "trialproc" > > stimlist.SetAttrib nLevel, "word", "nothing" > > stimlist.SetAttrib nLevel , "Word_type", "notrealy" > > stimlist.SetAttrib nLevel, "correct", "0" > > stimlist.SetAttrib nLevel, "xcolor", "black" > > Set stimlist.TerminateCondition = Cycles(1) > > Set stimlist.ResetCondition = Samples(10) > > stimlist.Reset > > Next nLevel > > I get "level that is an integer with level count mismatch" -well, I > tried to solve it in many ways, but I guess that some help could be > more helpful. > > Second question is about this issue: > > dim a(9) as string > dim stimarray(9) as string > dim c1 as string > dim m as integer > > a(0)="word1" > . > . > a(9)="word10" > . > . > . > > for m=1 to 1o > stimlist.SetAttrib m, "word", stimarray(m-1) > c1 = c.getattrib("word") > if c1 = a(0) or a(1) or a(2) or a(3) or a(4) then > stimlist.SetAttrib m, "correct", 1 > end if > > It keep telling me that there is no such attribute as "word", though > you can see that I predefined one and just to make sure I also did it > in the relevant list object. Again, I tried to solve it in many ways > but your help sounds like a better idea. > > Thanks in advance, > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 23 19:33:39 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 23 Oct 2011 12:33:39 -0700 Subject: Can't get addlevel commant to do the trick...(plus another question) In-Reply-To: <99f134ba-8427-493c-8d1c-a9f7428d82d1@s14g2000vbj.googlegroups.com> Message-ID: Well the 0 is a mistake in the post, at first place I had nLevel instead. In any case Liwi, the problem I still didn't have much success to solve goes like this: I have to different lists of words and I want eprime to sample 1 of them each time, each list contain 10 samples. Also, the "word" stimuli in one list should have the color of white and cyan in the other. So I tried to solve it this way: Dim indexstim(19) as integer dim oddoreven as integer dim stimuli(19) as string dim Newcorrect(19) as integer dim blonumber as integer dim randi as integer blonumber=c.getattrib("Block_Number") 'Block_Number is an attribute within each trial list that indicate the number of the block 'do this only if you're in block 3 if blonumber=3 then 'randomize 20 values randi=random(1,20) 'if this random number already been used loop it until unused value is found. Also, if word from b list was already chosen in the previous trial please randomize again until value from a list is chosen. if indexstim(randi)=1 and oddoreven<>0 then randi=random(1,20) loop until indexstim(randi)<>1 and randi mod 2=0 end if ' do the opposite in case the previous item was taken from a list (so each time the sample take item from different list). if indexstim(randi)=1 and oddoreven=0 then randi=random(1,20) loop until indexstim(randi)<>1 and randi mod 2<>0 end if 'set oddoreven to distinguish between the two lists (values of a list are always in even numbers in the array) oddoreven= randi mod 2 'set the words array, words from list a are in even number (0, 2, 4..20) and words from list b are in odd numbers (1,3,5...19) stimuli(0)= "word1" . . . .stimuli(19)="word20" 'set an array of correct answers that is in accordance with the word list newcorrcet(0)=1 . . . . newcorrect(19)=9 'the indexstim of the word that was chosen is now equal to 1 and the word won't be chosen again indexstim(randi)=1 'display the word that was chosen triallist.setattrib randi, "word", stimuli(randi) 'update the correct answer triallist.setattrib randi, "correct",newcorrect(randi) 'set different color for words from different lists if oddoreven=0 then mainlist.setattrib randi, "word_color",CColor("cyan") else mainlist.setattrib randi, "word_color",CColor("white") end if 'close statement end if Now, this inline, in different versions that I tried (e.g., like using c.set instead of addressing the level and list directly) was putted by me after the stimuli slide and the results were peculiar-sometimes the slide presented words taken from the attribute "word" (when I delete those, it present blank trials sometimes) and sometimes words from the arrays (and sometimes not even single one of them), it didn't reset the correct attribute and didn't alter the color of the words according to the lists from which they were taken. I also tried to split this inline and to use it in the session process, before the main list-nothing worked, and my experiment-which should be complete or at least 99% so if it would work, still not running... Would appreciate any advice Warmest regards Gili On Oct 23, 1:27 pm, liwenna wrote: > Hi Gilis, > > Not sure about the first question you ask, but could it have something > to do with the line 'stimlist.AddLevel 0' ?  Seems to me that you're > adding zero levels there making that line either redundant or possibly > messing up your script (given that the error message seems to have > something to do with a mismatch between the numbering or number of > levels). > > As for the second question: I think you'll have to use the > stimlist.reset command before you can operate on the attribute values. > But what confuses me more is what the possible location of this script > is?? If it's on the proc that is nested in stimlist than you should > (perhaps even could?) not tamper with the stimlist that the proc is in > while if it's not on the proc that is nested into stimlist than you're > in the wrong context (the c in c.getattrib) to get the value of the > attribute using that command. > > Perhaps (guessing here) you overlooked the part where adding levels > with a script should be done to a separate list that get's located > later in the main procedure than the list that the program is > currently 'working'  in, i.e not the list that is active when the > inline is encountered. > > On 23 okt, 00:08, gilis wrote: > > > > > > > > > Hi all.. > > > when I try to do that: > > > dim nLevel as integer > > > for nLevel= 1 to 10 > > > stimlist.AddLevel 0 > > > stimlist.SetWeight nLevel, "1" > > > stimlist.SetProc nLevel, "trialproc" > > > stimlist.SetAttrib nLevel, "word", "nothing" > > > stimlist.SetAttrib nLevel , "Word_type", "notrealy" > > > stimlist.SetAttrib nLevel, "correct", "0" > > > stimlist.SetAttrib nLevel, "xcolor", "black" > > > Set stimlist.TerminateCondition = Cycles(1) > > > Set stimlist.ResetCondition = Samples(10) > > > stimlist.Reset > > > Next nLevel > > > I get "level that is an integer with level count mismatch" -well, I > > tried to solve it in many ways, but I guess that some help could be > > more helpful. > > > Second question is about this issue: > > > dim a(9) as string > > dim stimarray(9) as string > > dim c1 as string > > dim m as integer > > > a(0)="word1" > > . > > . > > a(9)="word10" > > . > > . > > . > > > for m=1 to 1o > > stimlist.SetAttrib m, "word", stimarray(m-1) > > c1 = c.getattrib("word") > > if c1 = a(0) or a(1) or a(2) or a(3) or a(4) then > > stimlist.SetAttrib m, "correct", 1 > > end if > > > It keep telling me that there is no such attribute as "word", though > > you can see that I predefined one and just to make sure I also did it > > in the relevant list object. Again, I tried to solve it in many ways > > but your help sounds like a better idea. > > > Thanks in advance, > > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Mon Oct 24 10:27:18 2011 From: liwenna at gmail.com (Anne-Wil Kruijt) Date: Mon, 24 Oct 2011 12:27:18 +0200 Subject: Can't get addlevel commant to do the trick...(plus another question) Message-ID: Oh dear.... Gilis, although I don't quite understand what you try to achieve, I do fear that you're going completely overboard on the scripting, overlooking the more simple and easy to implement features present in e-prime. Again: you shouldn't tamper with a list that is currently running. Moreover: did you check/play with the option to exit a list after 1 sample is taken? What is the function of having two lists of stimuli? If the two lists contain different words, then why did you need to check for stimuli repeating? (i.e. if two lists containing different words alternate based on odd/evenness of the trials than repeats can not happen?). Have a look at the testscript "gilis two lists two colors' to see a script alternating two stimlists with the words presented in white/cyan dependent on the list. If the two stimlists contain the same words and the only function of having two lists is to alternate the colors based on the lists, then rather use one list and alternate the color... see the testscript "gilis 1 stimlist two colours" which is a simple adjustment of last week's 'nostimrepeats' script and therefore has the no stim repeats coding also in place. best, liw -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- A non-text attachment was scrubbed... Name: gillis two lists two colors.es2 Type: application/octet-stream Size: 37950 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: gilis 1 stimlist two colours.es2 Type: application/octet-stream Size: 44792 bytes Desc: not available URL: From anna.siyanova at unimore.it Mon Oct 24 15:38:29 2011 From: anna.siyanova at unimore.it (Anya) Date: Mon, 24 Oct 2011 08:38:29 -0700 Subject: audio presentation in Eprime, file duration question Message-ID: Hi, I have a very simple experiment where people first hear Word 1, then there's a blank, then they hear Word 2, and need to decide if the two words can refer to the same person. The duration of Word 2 is indefinite, until the button is pressed. My question regards the duration of Word 1. I want the duration of this word to be as long/ short as the duration of the actual audio file, so short words have the duration of, say, under a second, and the duration of longer words is over one sec. Eprime wants me to set the duration of my Audio out object to something, e.g., indefinite, 1000, 2000 etc. But i don't want to do that, instead i want the duration of each file to depend on the length of the word and thus each duration to be unique. Word 1 is then followed by a 250 ms blank, and then Word 2. How do i fix the duration of Word 1? How do i make the word presentation time as long as the actual word is? If i set the duration in Eprime to 1000 ms, then longer words are truncated. If i set the duration to say 1300, then i have lots of silence at the end of shorter words. Many thanks in advance! Anya -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Mon Oct 24 17:31:07 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 24 Oct 2011 13:31:07 -0400 Subject: audio presentation in Eprime, file duration question In-Reply-To: Message-ID: Anya, Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... On your Word 1 stimulus object, set Duration to (infinite), and End Sound Action to Terminate (you may also set Stop After to to No if you like, although in this case that will have no effect). I cover this in lesson 7 of the online video course that we are preparing. -- David McFarlane, Professional Faultfinder >I have a very simple experiment where people first hear Word 1, then >there's a blank, then they hear Word 2, and need to decide if the two >words can refer to the same person. The duration of Word 2 is >indefinite, until the button is pressed. My question regards the >duration of Word 1. I want the duration of this word to be as long/ >short as the duration of the actual audio file, so short words have >the duration of, say, under a second, and the duration of longer words >is over one sec. Eprime wants me to set the duration of my Audio out >object to something, e.g., indefinite, 1000, 2000 etc. But i don't >want to do that, instead i want the duration of each file to depend on >the length of the word and thus each duration to be unique. Word 1 is >then followed by a 250 ms blank, and then Word 2. > >How do i fix the duration of Word 1? How do i make the word >presentation time as long as the actual word is? If i set the duration >in Eprime to 1000 ms, then longer words are truncated. If i set the >duration to say 1300, then i have lots of silence at the end of >shorter words. > >Many thanks in advance! >Anya -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From anna.siyanova at unimore.it Tue Oct 25 08:35:06 2011 From: anna.siyanova at unimore.it (Anya) Date: Tue, 25 Oct 2011 01:35:06 -0700 Subject: audio presentation in Eprime, file duration question In-Reply-To: <4ea5a0e9.11a4960a.76d5.27edSMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hi Many thanks, i think this could be it. I will post a reply if i hear back from the forum. Thanks again, Anya On Oct 24, 6:31 pm, David McFarlane wrote: > Anya, > > Stock reminder:  1) I do not work for PST.  2) PST's trained staff > takes any and all questions athttp://support.pstnet.com/e%2Dprime/support/login.asp, and they > strive to respond to all requests in 24-48 hours -- this is pretty > much their substitute for proper documentation, so make full use of > it.  3) If you do get an answer from PST Web Support, please extend > the courtesy of posting their reply back here for the sake of others. > > That said, here is my take... > > On your Word 1 stimulus object, set Duration to (infinite), and End > Sound Action to Terminate (you may also set Stop After to to No if > you like, although in this case that will have no effect). > > I cover this in lesson 7 of the online video course that we are preparing. > > -- David McFarlane, Professional Faultfinder > > > > > > > > >I have a very simple experiment where people first hear Word 1, then > >there's a blank, then they hear Word 2, and need to decide if the two > >words can refer to the same person. The duration of Word 2 is > >indefinite, until the button is pressed. My question regards the > >duration of Word 1. I want the duration of this word to be as long/ > >short as the duration of the actual audio file, so short words have > >the duration of, say, under a second, and the duration of longer words > >is over one sec. Eprime wants me to set the duration of my Audio out > >object to something, e.g., indefinite, 1000, 2000 etc. But i don't > >want to do that, instead i want the duration of each file to depend on > >the length of the word and thus each duration to be unique. Word 1 is > >then followed by a 250 ms blank, and then Word 2. > > >How do i fix the duration of Word 1? How do i make the word > >presentation time as long as the actual word is? If i set the duration > >in Eprime to 1000 ms, then longer words are truncated. If i set the > >duration to say 1300, then i have lots of silence at the end of > >shorter words. > > >Many thanks in advance! > >Anya -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From benhisattva at googlemail.com Tue Oct 25 09:02:05 2011 From: benhisattva at googlemail.com (Ben) Date: Tue, 25 Oct 2011 02:02:05 -0700 Subject: Dynamometer In-Reply-To: Message-ID: Thanks to all for your help. I think we start with the joystick unless a technician at the university has some time on his hands. Best, Ben -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From gidgetownsme at gmail.com Thu Oct 27 18:33:07 2011 From: gidgetownsme at gmail.com (Ren) Date: Thu, 27 Oct 2011 11:33:07 -0700 Subject: Output to serial device on keypress Message-ID: I have been struggling to program in E-Prime the ability to trigger a peristaltic pump with a keypress. I want to be able to run the pump while a slide object (movie) is showing, without it advancing to the next object. I want to be able to press a key/ mouse button/ joystick/ anything at any time during my experiment to trigger the pump to deliver juice, but cannot seem to figure it out. Any help would be appreciated. Also, I am running the pump after a gaze-fixation is met as part of the experiement, so I cannot simply find another device to remotely trigger the pump. Thank you! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From marclatz885 at googlemail.com Mon Oct 31 16:46:32 2011 From: marclatz885 at googlemail.com (Marc) Date: Mon, 31 Oct 2011 09:46:32 -0700 Subject: Simulating Keypress (beginners question) Message-ID: hi there, I'm just starting using E-Prime (with some VB experience, though) and was trying to do something simple as that: There are three stimuluses ("1","2","nothing") displayed in a TextDisplay element which is set to react on event. Correct responses for 1 is 1, for 2 is 2 and for nothing I'd like it to be nothing at all. In case the stimulus is 1 or 2 the program is supposed to wait for the user to make his input, in the "nothing" case it's supposed to wait for 3 or so seconds and then go to the next stimulus. I tried to solve this via VB skills and I'm absolutely stuck here... My code: Dim Start as Long Dim now as Long Start = Clock.Read if TextDisplay1.CRESP = "" then do DoKeys "a" now= Clock.Read - Start loop until now>2000 end if What I'm trying to do is simulating the press of some random key (a in this case) in order to move to the next event as soon as the 2000 ms are over (a is also among the allowable inputs in my TextDisplay). I tried the same with SendKeys and it won't work either, it does, though, when I press the a key manually. What am I doing wrong? I'm almost certain there is an easier way to do what I want to do but unfortunately I don't seem to be able to figure out what to google/e- basic-/eprime search. Some help (may it be "search for xyz in abc before asking, fool") would be greatly appreciated!! Marc P.S.: In case you wonder - the programs purpose is simply getting the loop to work and then applying it to a bitter, existing e-prime file which we want to use as a dependent variable. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From baltimore.ben at gmail.com Mon Oct 31 17:24:13 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Mon, 31 Oct 2011 13:24:13 -0400 Subject: Simulating Keypress (beginners question) In-Reply-To: Message-ID: if i've understood the question, this is very easy to accomplish. on whatever object is presenting your stimuli and collecting your responses (probably the same object, possibly a TextObject or SlideObject), set the InputDevice to Keyboard, Allowable responses to "12" (without the quotes, which will make both 1 and 2 allowable resposes), Duration to 3000, and EndAction to Terminate. doing this will cause your Stim object to run for 3000 ms, during which time it will accept responses of 1 or 2 only, and when one of those responses is received the Stim object will Terminate, going to the object in your procedure. if no response is received the object will terminate after 3000 ms. this should be covered somewhere near the very beginning of the Getting Started guide which comes with E-Prime... ben On Mon, Oct 31, 2011 at 12:46 PM, Marc wrote: > hi there, > > I'm just starting using E-Prime (with some VB experience, though) and > was trying to do something simple as that: > > There are three stimuluses ("1","2","nothing") displayed in a > TextDisplay element which is set to react on event. > Correct responses for 1 is 1, for 2 is 2 and for nothing I'd like it > to be nothing at all. > In case the stimulus is 1 or 2 the program is supposed to wait for the > user to make his input, in the "nothing" case it's supposed to wait > for 3 or so seconds and then go to the next stimulus. > > I tried to solve this via VB skills and I'm absolutely stuck here... > > My code: > > Dim Start as Long > Dim now as Long > Start = Clock.Read > > if TextDisplay1.CRESP = "" then >        do >        DoKeys "a" >        now= Clock.Read - Start >        loop until now>2000 > end if > > What I'm trying to do is simulating the press of some random key (a in > this case) in order to move to the next event as soon as the 2000 ms > are over (a is also among the allowable inputs in my TextDisplay). I > tried the same with SendKeys and it won't work either, it does, > though, when I press the a key manually. > > What am I doing wrong? > I'm almost certain there is an easier way to do what I want to do but > unfortunately I don't seem to be able to figure out what to google/e- > basic-/eprime search. > > Some help (may it be "search for xyz in abc before asking, fool") > would be greatly appreciated!! > > Marc > > P.S.: In case you wonder - the programs purpose is simply getting the > loop to work and then applying it to a bitter, existing e-prime file > which we want to use as a dependent variable. > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 07:30:44 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 00:30:44 -0700 Subject: Problem with setting new attribute to collect data Message-ID: Hi, In my experiment participants have to repeat the same trial until they give the correct answer. Also, I want to know the time that was requested to them to get to the correct answer, therefore I can't relay on the standard RT that is logged to the data file. What I did goes like that: At the beginning of the procedure there is an inline in which I defined new attribute: c.SetAttrib "ResponseT",0 then after this inline there is a label I called "repeatuntilcorrect" and after this label there is the slide "showword1" which present the trial, after it I put this inline: c.SetAttrib "ResponseT",c.GetAttrib("ResponseT") +c.GetAttrib("showword1.RT") while showword1.Acc=0 goto Repeat1 Wend that is, at the end of each trial I should have the time passed from the beginning of the trial to the participant correct response. The problem(s?) I have is that first, in the data file the attribute that I added (ResponseT) present the time in different manner-that is, 357 ms are presented as 0357. Second, unless I misunderstand something, it seems like sometimes the slide RT (showword1.RT) is longer than "ResponseT" and that of-course should never happen. I would appreciate your assistance in solving these issues. Regards, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 07:33:09 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 00:33:09 -0700 Subject: Problem with setting new attribute to collect data In-Reply-To: <096486d5-d8ea-4e63-a61f-fd025c2fd2db@x16g2000yql.googlegroups.com> Message-ID: Just don't want you to get confused by my little mistake: repeatuntilcorrect=Repeat1 On Oct 2, 9:30?am, gilis wrote: > Hi, > > In my experiment participants have to repeat the same trial until they > give the correct answer. Also, I want to know the time that was > requested to them to get to the correct answer, therefore I can't > relay on the standard RT that is logged to the data file. What I did > goes like that: > > At the beginning of the procedure there is an inline in which I > defined new attribute: > > c.SetAttrib "ResponseT",0 > > then after this inline there is a label I called "repeatuntilcorrect" > and after this label there is the slide "showword1" which present the > trial, after it I put this inline: > > c.SetAttrib "ResponseT",c.GetAttrib("ResponseT") > +c.GetAttrib("showword1.RT") > while showword1.Acc=0 > goto Repeat1 > Wend > > that is, at the end of each trial I should have the time passed from > the beginning of the trial to the participant correct response. > > The problem(s?) I have is that first, in the data file the attribute > that I added (ResponseT) present the time in different manner-that is, > 357 ms are presented as 0357. Second, unless I misunderstand > something, it seems like sometimes the slide RT (showword1.RT) is > longer than "ResponseT" and that of-course should never happen. I > would appreciate your assistance in solving these issues. > > Regards, > > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Sun Oct 2 07:38:26 2011 From: pquain at une.edu.au (Peter Quain) Date: Sun, 2 Oct 2011 18:38:26 +1100 Subject: Problem with setting new attribute to collect data In-Reply-To: <096486d5-d8ea-4e63-a61f-fd025c2fd2db@x16g2000yql.googlegro ups.com> Message-ID: not exactly sure that I undersatnd what you are doing, but maybe if you do something like this: Dim t1, t2, time2correct as long t1=clock.read 'when they start to try for correct answer t2=clock.read ' in an inline after they get correct answer, and jump out of the wend loop time2correct =t2-t1 c.SetAttrib "TimeTaken",time2correct At 07:30 PM 2/10/2011, you wrote: >Hi, > >In my experiment participants have to repeat the same trial until they >give the correct answer. Also, I want to know the time that was >requested to them to get to the correct answer, therefore I can't >relay on the standard RT that is logged to the data file. What I did >goes like that: > >At the beginning of the procedure there is an inline in which I >defined new attribute: > >c.SetAttrib "ResponseT",0 > >then after this inline there is a label I called "repeatuntilcorrect" >and after this label there is the slide "showword1" which present the >trial, after it I put this inline: > >c.SetAttrib "ResponseT",c.GetAttrib("ResponseT") >+c.GetAttrib("showword1.RT") >while showword1.Acc=0 >goto Repeat1 >Wend > > >that is, at the end of each trial I should have the time passed from >the beginning of the trial to the participant correct response. > >The problem(s?) I have is that first, in the data file the attribute >that I added (ResponseT) present the time in different manner-that is, >357 ms are presented as 0357. Second, unless I misunderstand >something, it seems like sometimes the slide RT (showword1.RT) is >longer than "ResponseT" and that of-course should never happen. I >would appreciate your assistance in solving these issues. > >Regards, > >Gilis > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 08:34:51 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 01:34:51 -0700 Subject: Problem with setting new attribute to collect data In-Reply-To: <201110020738.p927cRrW026557@mail9.tpg.com.au> Message-ID: Thanks, problem solved :) On Oct 2, 9:38?am, Peter Quain wrote: > not exactly sure that I undersatnd what you are doing, but maybe if > you do something like this: > > Dim t1, t2, time2correct as long > t1=clock.read 'when they start to try for correct answer > > t2=clock.read ' in an inline after they get correct answer, and jump > out of the wend loop > time2correct =t2-t1 > c.SetAttrib "TimeTaken",time2correct > > At 07:30 PM 2/10/2011, you wrote: > > > > > > > > >Hi, > > >In my experiment participants have to repeat the same trial until they > >give the correct answer. Also, I want to know the time that was > >requested to them to get to the correct answer, therefore I can't > >relay on the standard RT that is logged to the data file. What I did > >goes like that: > > >At the beginning of the procedure there is an inline in which I > >defined new attribute: > > >c.SetAttrib "ResponseT",0 > > >then after this inline there is a label I called "repeatuntilcorrect" > >and after this label there is the slide "showword1" which present the > >trial, after it I put this inline: > > >c.SetAttrib "ResponseT",c.GetAttrib("ResponseT") > >+c.GetAttrib("showword1.RT") > >while showword1.Acc=0 > >goto Repeat1 > >Wend > > >that is, at the end of each trial I should have the time passed from > >the beginning of the trial to the participant correct response. > > >The problem(s?) I have is that first, in the data file the attribute > >that I added (ResponseT) present the time in different manner-that is, > >357 ms are presented as 0357. Second, unless I misunderstand > >something, it seems like sometimes the slide RT (showword1.RT) is > >longer than "ResponseT" and that of-course should never happen. I > >would appreciate your assistance in solving these issues. > > >Regards, > > >Gilis > > >-- > >You received this message because you are subscribed to the Google > >Groups "E-Prime" group. > >To post to this group, send email to e-prime at googlegroups.com. > >To unsubscribe from this group, send email to > >e-prime+unsubscribe at googlegroups.com. > >For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 08:40:44 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 01:40:44 -0700 Subject: Presenting different images in the same slide Message-ID: Hi again, I want participants to see X symbol at the bottom of the slide when they give wrong answer but if they gave correct response they will see no change in the display. The slide background is black and I know I can achieve that by setting an attribute whose value is "image.bmp" which calls the X image from the experiment folder in the event of wrong response. Else, it will call "Black" image from the same folder, but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Sun Oct 2 11:02:19 2011 From: liwenna at gmail.com (liwenna) Date: Sun, 2 Oct 2011 04:02:19 -0700 Subject: Presenting different images in the same slide In-Reply-To: <7dc6b203-c0b2-465b-8d00-a9dadc8466f1@k15g2000yqd.googlegroups.com> Message-ID: Hi Gilis, Not sure whether this is much more elegant than your previous solution, which seems just fine by me. After your first slide (slide1?) create a second slide and give this slide a second slidestate (tab like symbol in the top of the slide 'browser' ). Give one slidestate the title '1' and the other slidestate the title '0' (title row in the properties table left at the left side of the window). Rebuild the elements of the previous slide (the slide that people have responded too, ie. your stimuli) on both the slidestates. In the slidestate called '0' also add an image (or a simple text box??) with an 'X'. At the slide properties menu set the slidestate to refer to the accuracy variable of the previous slide (i.e. [slide1.acc] ). Now, depending on whether the slide1.acc has value 0 or 1, the second slide will show either slide state 0 (with the x) or slidestate 1 (no x). best, liw On 2 okt, 04:40, gilis wrote: > Hi again, > > I want participants to see X symbol at the bottom of the slide when > they give wrong answer but if they gave correct response they will see > no change in the display. The slide background is black and I know I > can achieve that by setting an attribute whose value is "image.bmp" > which calls the X image from the experiment folder in the event of > wrong response. Else, it will call "Black" image from the same folder, > but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 12:36:06 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 05:36:06 -0700 Subject: Presenting different images in the same slide In-Reply-To: Message-ID: Thanks Liw, So, this is what I did-I made an attribute ("picture") whose default value was "black" (I have two bmp files in the experiment folder: black and white). In the file name line of the image slide I defined the file name as "[picture].bmp". Then, in the inline that appear just after the participant response to the slide I added that: if theslidename.Acc=o then c.SetAttrib "picture", white goto repeattheslide end if For some reason, and I tried many different approaches, the program refused to generate the experiment, indicating that "black is not a function"..Then I tried entirely different approach -I removed the image from the slide and instead put these code lines in the inline that appear just after the participant response: Set showword2_SlideImage = CSlideImage(showword2.States(showword2.ActiveState).Objects(1)) showword2_SlideImage.Filename = c.GetAttrib("picture")&_".bmp" showword2_SlideImage.Load Set showword2_SlideImage = Nothing But then it told me that there is a "misplaced line continuation"..So, perhaps I did it all wrong from the beginning, any help would be highly regarded... Gilis On Oct 2, 1:02?pm, liwenna wrote: > Hi Gilis, > > Not sure whether this is much more elegant than your previous > solution, which seems just fine by me. After your first slide > (slide1?) create a second slide and give this slide a second > slidestate (tab like symbol in the top of the slide 'browser' ). Give > one slidestate the title '1' ?and the other slidestate the title > '0' (title row in the properties table left at the left side of the > window). Rebuild the elements of the previous slide (the slide that > people have responded too, ie. your stimuli) on both the slidestates. > In the slidestate called '0' also add an image (or a simple text > box??) with an 'X'. At the slide properties menu set the slidestate to > refer to the accuracy variable of the previous slide (i.e. > [slide1.acc] ). Now, depending on whether the slide1.acc has value 0 > or 1, the second slide will show either slide state 0 (with the x) or > slidestate 1 (no x). > > best, > > liw > > On 2 okt, 04:40, gilis wrote: > > > > > > > > > Hi again, > > > I want participants to see X symbol at the bottom of the slide when > > they give wrong answer but if they gave correct response they will see > > no change in the display. The slide background is black and I know I > > can achieve that by setting an attribute whose value is "image.bmp" > > which calls the X image from the experiment folder in the event of > > wrong response. Else, it will call "Black" image from the same folder, > > but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 12:44:18 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 05:44:18 -0700 Subject: Presenting different images in the same slide In-Reply-To: <030f9f3c-f15b-45e1-bd12-4eeb61e7b9a7@d4g2000yqk.googlegroups.com> Message-ID: Ok, problem solved...Just added another attribute for the second image file and after the participant response defined it as: c.SetAttrib "picture", c.GetAttrib("picture2") for incorrect answers. On Oct 2, 2:36?pm, gilis wrote: > Thanks Liw, > > So, this is what I did-I made an attribute ("picture") whose default > value was "black" (I have two bmp files in the experiment folder: > black and white). In the file name line of the image slide I defined > the file name as "[picture].bmp". Then, in the inline that appear just > after the participant response to the slide I added that: > ?if theslidename.Acc=o then > c.SetAttrib "picture", white > goto repeattheslide > end if > For some reason, and I tried many different approaches, the program > refused to generate the experiment, indicating that "black is not a > function"..Then I tried entirely different approach -I removed the > image from the slide and instead put these code lines in the inline > that appear just after the participant response: > > Set showword2_SlideImage = > CSlideImage(showword2.States(showword2.ActiveState).Objects(1)) > showword2_SlideImage.Filename = c.GetAttrib("picture")&_".bmp" > showword2_SlideImage.Load > Set showword2_SlideImage = Nothing > > But then it told me that there is a "misplaced line continuation"..So, > perhaps I did it all wrong from the beginning, any help would be > highly regarded... > > Gilis > > On Oct 2, 1:02?pm, liwenna wrote: > > > > > > > > > Hi Gilis, > > > Not sure whether this is much more elegant than your previous > > solution, which seems just fine by me. After your first slide > > (slide1?) create a second slide and give this slide a second > > slidestate (tab like symbol in the top of the slide 'browser' ). Give > > one slidestate the title '1' ?and the other slidestate the title > > '0' (title row in the properties table left at the left side of the > > window). Rebuild the elements of the previous slide (the slide that > > people have responded too, ie. your stimuli) on both the slidestates. > > In the slidestate called '0' also add an image (or a simple text > > box??) with an 'X'. At the slide properties menu set the slidestate to > > refer to the accuracy variable of the previous slide (i.e. > > [slide1.acc] ). Now, depending on whether the slide1.acc has value 0 > > or 1, the second slide will show either slide state 0 (with the x) or > > slidestate 1 (no x). > > > best, > > > liw > > > On 2 okt, 04:40, gilis wrote: > > > > Hi again, > > > > I want participants to see X symbol at the bottom of the slide when > > > they give wrong answer but if they gave correct response they will see > > > no change in the display. The slide background is black and I know I > > > can achieve that by setting an attribute whose value is "image.bmp" > > > which calls the X image from the experiment folder in the event of > > > wrong response. Else, it will call "Black" image from the same folder, > > > but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 2 17:36:29 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 2 Oct 2011 10:36:29 -0700 Subject: Yet another question: How to measure the length of a given string Message-ID: Hi again and sorry for keeping you busy... In my experiment participants write their answers into an inputbox, the inputbox fade and the next trail start after the participant press enter. My question, in fact questions, is how I can make sure that the participant entered his or her answer into the inputbox. One idea that I had is to count the length of the string from the input box and if it's <2 (because obviously no word can be written with less than 2 letters) the inputbox will remain visible until a valid answer is provided. The problem is that I can't find the right commands in eprime that do such thing. There are no commands like length and count that could help in this, so again, any help would be welcomed. More, I don't know how to tell to the input box to wait until there are at least 2 letters in it. Regards, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Sun Oct 2 22:03:07 2011 From: pquain at une.edu.au (Peter Quain) Date: Mon, 3 Oct 2011 09:03:07 +1100 Subject: Yet another question: How to measure the length of a given string In-Reply-To: <6ebcc971-323c-4fb7-8e67-bb68e64ddbbd@g33g2000yqc.googlegro ups.com> Message-ID: Gilis Look in e-basic help for String Functions. You are after "Len": Your input box content will be stored in a variable ... say strInBx. If Len(strInBx) < 2 Then ... commands to return InputBox to screen, and tell subject not to be so lazy .. End If --------------------- Len, LenB (functions) ------------------- Syntax Len(expression) LenB(expression) Description Returns the number of characters (for Len) or bytes (for LenB) in String expression or the number of bytes required to store the specified variable. ------------------------ At 04:36 AM 3/10/2011, you wrote: >Hi again and sorry for keeping you busy... > >In my experiment participants write their answers into an inputbox, >the inputbox fade and the next trail start after the participant press >enter. >My question, in fact questions, is how I can make sure that the >participant entered his or her answer into the inputbox. One idea that >I had is to count the length of the string from the input box and if >it's <2 (because obviously no word can be written with less than 2 >letters) the inputbox will remain visible until a valid answer is >provided. The problem is that I can't find the right commands in >eprime that do such thing. There are no commands like length and count >that could help in this, so again, any help would be welcomed. More, I >don't know how to tell to the input box to wait until there are at >least 2 letters in it. > >Regards, >Gilis > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Mon Oct 3 12:46:53 2011 From: liwenna at gmail.com (liwenna) Date: Mon, 3 Oct 2011 05:46:53 -0700 Subject: Presenting different images in the same slide In-Reply-To: Message-ID: Not sure if I understand what you did exactly but as for the 'black is not a function' error: "'s around the white/black text (to indicate the program that it is a string) should have solved that too. I.e. instead of c.SetAttrib "picture", white -> c.SetAttrib "picture", "white" On Oct 2, 8:44?am, gilis wrote: > Ok, problem solved...Just added another attribute for the second image > file and after the participant response defined it as: > c.SetAttrib "picture", c.GetAttrib("picture2") > for incorrect answers. > > On Oct 2, 2:36?pm, gilis wrote: > > > > > > > > > Thanks Liw, > > > So, this is what I did-I made an attribute ("picture") whose default > > value was "black" (I have two bmp files in the experiment folder: > > black and white). In the file name line of the image slide I defined > > the file name as "[picture].bmp". Then, in the inline that appear just > > after the participant response to the slide I added that: > > ?if theslidename.Acc=o then > > c.SetAttrib "picture", white > > goto repeattheslide > > end if > > For some reason, and I tried many different approaches, the program > > refused to generate the experiment, indicating that "black is not a > > function"..Then I tried entirely different approach -I removed the > > image from the slide and instead put these code lines in the inline > > that appear just after the participant response: > > > Set showword2_SlideImage = > > CSlideImage(showword2.States(showword2.ActiveState).Objects(1)) > > showword2_SlideImage.Filename = c.GetAttrib("picture")&_".bmp" > > showword2_SlideImage.Load > > Set showword2_SlideImage = Nothing > > > But then it told me that there is a "misplaced line continuation"..So, > > perhaps I did it all wrong from the beginning, any help would be > > highly regarded... > > > Gilis > > > On Oct 2, 1:02?pm, liwenna wrote: > > > > Hi Gilis, > > > > Not sure whether this is much more elegant than your previous > > > solution, which seems just fine by me. After your first slide > > > (slide1?) create a second slide and give this slide a second > > > slidestate (tab like symbol in the top of the slide 'browser' ). Give > > > one slidestate the title '1' ?and the other slidestate the title > > > '0' (title row in the properties table left at the left side of the > > > window). Rebuild the elements of the previous slide (the slide that > > > people have responded too, ie. your stimuli) on both the slidestates. > > > In the slidestate called '0' also add an image (or a simple text > > > box??) with an 'X'. At the slide properties menu set the slidestate to > > > refer to the accuracy variable of the previous slide (i.e. > > > [slide1.acc] ). Now, depending on whether the slide1.acc has value 0 > > > or 1, the second slide will show either slide state 0 (with the x) or > > > slidestate 1 (no x). > > > > best, > > > > liw > > > > On 2 okt, 04:40, gilis wrote: > > > > > Hi again, > > > > > I want participants to see X symbol at the bottom of the slide when > > > > they give wrong answer but if they gave correct response they will see > > > > no change in the display. The slide background is black and I know I > > > > can achieve that by setting an attribute whose value is "image.bmp" > > > > which calls the X image from the experiment folder in the event of > > > > wrong response. Else, it will call "Black" image from the same folder, > > > > but this is not an elegant solution I think-what would be a better one? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From lahutchi at mtu.edu Mon Oct 3 18:50:35 2011 From: lahutchi at mtu.edu (Lucas Hutchison) Date: Mon, 3 Oct 2011 11:50:35 -0700 Subject: Mouse Click & Target Task Message-ID: I am working on a small experiment where I would like the following: -Target (20 x 20 pixel red circle) appears at a random location on the screen -when the target is presented, the participant must click the target -once the participant clicks, the next randomly located target will appear (and the prior target is removed), and the process repeats for n number of trials needed I am able to display the targets at random locations, but I am unsure of how to record the X and Y positions of the click and how to compare those to the actual X and Y positions of the target to determine accuracy. I would like to record both the response time and the click accuracy. I have been trying to find resources online and in the help documentation, but much of the online code is older than my version and some of the methods/ objects they use have been renamed. I am using E-Prime version 2.0.8.74 Thanks for the help! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pfc.groot at gmail.com Mon Oct 3 22:03:35 2011 From: pfc.groot at gmail.com (Paul Groot) Date: Tue, 4 Oct 2011 00:03:35 +0200 Subject: Mouse Click & Target Task In-Reply-To: Message-ID: Hi Lucas, After capturing a mouse click response you could immediately retrieve the mouse position using a few lines of script: dim ptMouse as Point Mouse.GetCursorPos ptMouse.x, ptMouse.y To determine if this point is inside the drawn circle you could use a simple calculation: just calculate the (squared) distance between the center of the circle and the hit point: Const radius = 10 dim dx as long dim dy as long dx = ptMouse.x - center.x dy = ptMouse.y - center.y if (dx*dx + dy*dy)<=radius*radius then ... inside circle else ... outside circle end if I'm not using a square root because it is computationally intensive and not required because the comparison also holds for squared values. cheers paul 2011/10/3 Lucas Hutchison : > I am working on a small experiment where I would like the following: > > -Target (20 x 20 pixel red circle) appears at a random location on the > screen > -when the target is presented, the participant must click the target > -once the participant clicks, the next randomly located target will > appear (and the prior target is removed), and the process repeats for > n number of trials needed > > I am able to display the targets at random locations, but I am unsure > of how to record the X and Y positions of the click and how to compare > those to the actual X and Y positions of the target to determine > accuracy. ?I would like to record both the response time and the click > accuracy. > > I have been trying to find resources online and in the help > documentation, but much of the online code is older than my version > and some of the methods/ objects they use have been renamed. > > I am using E-Prime version 2.0.8.74 > > > Thanks for the help! > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From kathrin_kollndorfer at hotmail.com Tue Oct 4 06:16:40 2011 From: kathrin_kollndorfer at hotmail.com (Kathrin Kollndorfer) Date: Mon, 3 Oct 2011 23:16:40 -0700 Subject: Linguistic experiment Message-ID: Hi, I'm working on a linguistic experiment and I have some troubles. In my experiment participants have to read words. In general the experiment runs well, but after 83 trials the program closes without a specific error message. Does anybody know why this happens (I'm working with version 1.1 SP3) Thanks, Kathrin -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From hester.duffy at gmail.com Tue Oct 4 07:34:05 2011 From: hester.duffy at gmail.com (Hester Duffy) Date: Tue, 4 Oct 2011 08:34:05 +0100 Subject: Linguistic experiment In-Reply-To: <2b6ec090-0a93-436e-9113-3702f094e44f@j31g2000vbl.googlegroups.com> Message-ID: When it closes, does it just shut the entire program down? What happens when you generate the script? It's going to be hard to diagnose the problem without more specific details, so a couple more questions; are the trials randomised? If not, check the stimulus file it's tripping up on; there could be a problem with it. If they are, are they just randomised by the list function, or is there other user-defined input numbering them? If for some reason e-prime is only expecting there to be 82 trials, that could cause it to crash when it gets to 83. If you can identify the bit of the code which is causing problems, it would be worth posting that here to see if anyone can spot the issue. H On Tue, Oct 4, 2011 at 7:16 AM, Kathrin Kollndorfer < kathrin_kollndorfer at hotmail.com> wrote: > Hi, > > I'm working on a linguistic experiment and I have some troubles. In my > experiment participants have to read words. In general the experiment > runs well, but after 83 trials the program closes without a specific > error message. Does anybody know why this happens (I'm working with > version 1.1 SP3) > > Thanks, > Kathrin > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From lahutchi at mtu.edu Tue Oct 4 16:34:19 2011 From: lahutchi at mtu.edu (Lucas Hutchison) Date: Tue, 4 Oct 2011 09:34:19 -0700 Subject: Mouse Click & Target Task In-Reply-To: Message-ID: Currently I am having trouble capturing the x, y coordinates of the mouse. I currently have something like this: dim rtmouse as MouseResponseData set rtmouse = CMouseResponseData(?not sure what to put in here since the documentation i found using this had something that gave me errors at run?) On Oct 3, 6:03?pm, Paul Groot wrote: > Hi Lucas, > > After capturing a mouse click response you could immediately retrieve > the mouse position using a few lines of script: > > dim ptMouse as Point > Mouse.GetCursorPos ptMouse.x, ptMouse.y > > To determine if this point is inside the drawn circle you could use a > simple calculation: just calculate the (squared) distance between the > center of the circle and the hit point: > > Const radius = 10 > dim dx as long > dim dy as long > dx = ptMouse.x - center.x > dy = ptMouse.y - center.y > if (dx*dx + dy*dy)<=radius*radius then > ? ?... inside circle > else > ? ... outside circle > end if > > I'm not using a square root because it is computationally intensive > and not required because the comparison also holds for squared values. > > cheers > paul > > 2011/10/3 Lucas Hutchison : > > > I am working on a small experiment where I would like the following: > > > -Target (20 x 20 pixel red circle) appears at a random location on the > > screen > > -when the target is presented, the participant must click the target > > -once the participant clicks, the next randomly located target will > > appear (and the prior target is removed), and the process repeats for > > n number of trials needed > > > I am able to display the targets at random locations, but I am unsure > > of how to record the X and Y positions of the click and how to compare > > those to the actual X and Y positions of the target to determine > > accuracy. ?I would like to record both the response time and the click > > accuracy. > > > I have been trying to find resources online and in the help > > documentation, but much of the online code is older than my version > > and some of the methods/ objects they use have been renamed. > > > I am using E-Prime version 2.0.8.74 > > > Thanks for the help! > > > -- > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Tue Oct 4 19:23:42 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Tue, 4 Oct 2011 15:23:42 -0400 Subject: Linguistic experiment In-Reply-To: <2b6ec090-0a93-436e-9113-3702f094e44f@j31g2000vbl.googlegro ups.com> Message-ID: Kathrin, First, you should take this problem (and really, almost any question about E-Prime) straight to PST Web Support at http://support.pstnet.com/e%2Dprime/support/login.asp (and then please post back here with their response). Second, why not at least upgrade to EP 1.2.1.847? That is the latest version in the 1.x line, can be readily downloaded from the PST web site, and may fix some issues. If you do have some reason to stick with 1.1 instead of 1.2, at least upgrade to 1.1.4.1 (also downloadable from PST). -- David McFarlane, Professional Faultfinder At 10/4/2011 02:16 AM Tuesday, you wrote: >Hi, > >I'm working on a linguistic experiment and I have some troubles. In my >experiment participants have to read words. In general the experiment >runs well, but after 83 trials the program closes without a specific >error message. Does anybody know why this happens (I'm working with >version 1.1 SP3) > >Thanks, >Kathrin -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Tue Oct 4 19:32:12 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Tue, 4 Oct 2011 15:32:12 -0400 Subject: Mouse Click & Target Task In-Reply-To: <60687cb4-b92f-4fdf-b2a7-5de0b2b72be3@s9g2000yql.googlegrou ps.com> Message-ID: Lucas, Paul Groot nicely showed how to do this by using the mouse directly instead of through an input mask. That is probably easier to do. The method that you are working on instead uses a mouse input mask as part of a stimulus object. That can offer some advantages, but is much harder to use -- as you have seen, it requires wrestling with the MouseResponseData collection. To get some idea, see the "Response Areas for Mouse Input" and "Multiple Response Collection" examples which you may download from the PST web site. You might also look at the MouseResponseData topic and related topics in the E-Basic Help facility. -- David McFarlane, Professional Faultfinder At 10/4/2011 12:34 PM Tuesday, Lucas Hutchison wrote: >Currently I am having trouble capturing the x, y coordinates of the >mouse. I currently have something like this: > > >dim rtmouse as MouseResponseData > >set rtmouse = CMouseResponseData(?not sure what to put in here since >the documentation i found using this had something that gave me errors >at run?) > > >On Oct 3, 6:03 pm, Paul Groot wrote: > > Hi Lucas, > > > > After capturing a mouse click response you could immediately retrieve > > the mouse position using a few lines of script: > > > > dim ptMouse as Point > > Mouse.GetCursorPos ptMouse.x, ptMouse.y > > > > To determine if this point is inside the drawn circle you could use a > > simple calculation: just calculate the (squared) distance between the > > center of the circle and the hit point: > > > > Const radius = 10 > > dim dx as long > > dim dy as long > > dx = ptMouse.x - center.x > > dy = ptMouse.y - center.y > > if (dx*dx + dy*dy)<=radius*radius then > > ... inside circle > > else > > ... outside circle > > end if > > > > I'm not using a square root because it is computationally intensive > > and not required because the comparison also holds for squared values. > > > > cheers > > paul > > > > 2011/10/3 Lucas Hutchison : > > > > > I am working on a small experiment where I would like the following: > > > > > -Target (20 x 20 pixel red circle) appears at a random location on the > > > screen > > > -when the target is presented, the participant must click the target > > > -once the participant clicks, the next randomly located target will > > > appear (and the prior target is removed), and the process repeats for > > > n number of trials needed > > > > > I am able to display the targets at random locations, but I am unsure > > > of how to record the X and Y positions of the click and how to compare > > > those to the actual X and Y positions of the target to determine > > > accuracy. I would like to record both the response time and the click > > > accuracy. > > > > > I have been trying to find resources online and in the help > > > documentation, but much of the online code is older than my version > > > and some of the methods/ objects they use have been renamed. > > > > > I am using E-Prime version 2.0.8.74 > > > > > Thanks for the help! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From asaliam20 at gmail.com Wed Oct 5 12:42:33 2011 From: asaliam20 at gmail.com (anahita khorrami) Date: Wed, 5 Oct 2011 16:12:33 +0330 Subject: dot prob Message-ID: Hi, Would you please tell me how I can design dot prob task and randomize the stimuli with E prime. Best regards, Anahita -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From orkano at gmail.com Wed Oct 5 15:16:07 2011 From: orkano at gmail.com (Orkan) Date: Wed, 5 Oct 2011 08:16:07 -0700 Subject: divided attention script? Message-ID: Dear all, Im working with virtual pilots on situation awareness in Cognitive Science Dept, METU and trying to build a divided attention task where participant will need to observe 2 different visual stimuli similar to WAFG test of vienna battery. http://www.lafayetteinstrumenteurope.com/product_detail.asp?ItemID=476&cat=107 Can you recommend anything similar coding that i can modify? Any suggestions will be great for the start! Thanks in advance Orkan -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From elhsh1 at gmail.com Wed Oct 5 20:31:09 2011 From: elhsh1 at gmail.com (elahe hashemi) Date: Wed, 5 Oct 2011 13:31:09 -0700 Subject: dot probe Message-ID: Hi, Would you please tell me how I can design dot prob task and randomize the stimuli with E prime. Best regards,elahe -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From baltimore.ben at gmail.com Wed Oct 5 20:40:09 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Wed, 5 Oct 2011 16:40:09 -0400 Subject: dot probe In-Reply-To: <6b1cb317-f1b1-4346-93ba-a953148ac444@b6g2000vbz.googlegroups.com> Message-ID: maybe you and anahita could work together to figure it out? On Wed, Oct 5, 2011 at 4:31 PM, elahe hashemi wrote: > Hi, Would you please tell me how I can design dot prob task and > randomize the stimuli with E prime. > ?Best regards,elahe > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From lapate at gmail.com Wed Oct 5 22:14:29 2011 From: lapate at gmail.com (Regina L) Date: Wed, 5 Oct 2011 15:14:29 -0700 Subject: How to change the gamma setting in Eprime? Message-ID: Dear all, I am trying to figure out how to change the gamma setting in Eprime as to have a linear luminance profile for my experiment, but I cannot find anything in the help files about this (nor on the display settings in Eprime). Has anyone done this before? I found an unanswered post regarding the exact same topic in the PST user forum (below). Thanks! Regina "Hi, We are trying to run an eprime object recognition study and we can change the gamma on the control panel of the computer but this setting does not remain when we execute eprime. Is there any way to keep the gamma setting from the control panel in eprime? Alternatively, is there any way to control the color look-up table in eprime? In the end we're trying to achieve a linear luminance profile as we do with our psychophysical experiments. Thanks, Vanessa" -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 6 09:02:47 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 6 Oct 2011 10:02:47 +0100 Subject: How to change the gamma setting in Eprime? In-Reply-To: <78a7f447-9a34-4953-a447-27b7d92086d5@i30g2000yqd.googlegroups.com> Message-ID: Hi, I think Gamma settings are part of the video card's driver specific settings - i.e., not windows OS settings as such. I understand what you set there gets reverted in E-prime once running an experiment? If you want to avoid that, you might delve deeper into the gfx card driver settings to make sure the application specific settings get overridden (a common setting in ATI and NVidia cards) by your driver's. Possibly, but doubtfully, your settings remain somewhat more stable if you make sure that the number of colours (i.e. in bits, like 32) is the same in E-Prime as it is in the OS (NOT true by default - 16 in E-Prime, 32/24, generally in Windows), as well as the resolution (and I know few people running their os in 640x480 as well). Moreover, if you'll look on the internet, you're most likely to find alternative drivers for your video card which complement your existing options, possibly changing gamma and such. However, as a side point, I think you might want to change the stimulus material rather than changing the gamma, which inevitably compromises quality of your stimulus material (which sounds like something psychophysicists would deeply care about). Use photoshop or whatever to change gamma there, so you know exactly what is happening, save that (this can be done in batch processing, I heard, so it's not all that much work), and only then use these files in E-Prime. I don't know the exact situation here, but generally, this is the better way to go. Best, Mich Michiel Spap? Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Regina L Sent: 05 October 2011 23:14 To: E-Prime Subject: How to change the gamma setting in Eprime? Dear all, I am trying to figure out how to change the gamma setting in Eprime as to have a linear luminance profile for my experiment, but I cannot find anything in the help files about this (nor on the display settings in Eprime). Has anyone done this before? I found an unanswered post regarding the exact same topic in the PST user forum (below). Thanks! Regina "Hi, We are trying to run an eprime object recognition study and we can change the gamma on the control panel of the computer but this setting does not remain when we execute eprime. Is there any way to keep the gamma setting from the control panel in eprime? Alternatively, is there any way to control the color look-up table in eprime? In the end we're trying to achieve a linear luminance profile as we do with our psychophysical experiments. Thanks, Vanessa" -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 6 09:58:20 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 6 Oct 2011 10:58:20 +0100 Subject: dot probe In-Reply-To: Message-ID: Or any of the others... http://groups.google.com/group/e-prime/search?group=e-prime&q=dot+probe There are some examples online, I'm pretty sure, at which point the question is "Does anybody by any chance have already programmed a dot-probe task for me to use? You'll get 1) thank-you's in the article, 2) ?80/hr for programming it for us, 3)a co-authorship of the paper OR 4) my gratitude.". If there's no example, or you want to do it yourself, try to learn more about the software first, then define how or why you get stuck. "I want to write a crime-novel*, how do I design a plot and create characters", is not really going to give you a lot of answers. Best, Mich Michiel Spap? Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu * On a lighter note, I'm reading China Mi?ville's "The City and the City" at the moment - highly recommended. -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of ben robinson Sent: 05 October 2011 21:40 To: e-prime at googlegroups.com Subject: Re: dot probe maybe you and anahita could work together to figure it out? On Wed, Oct 5, 2011 at 4:31 PM, elahe hashemi wrote: > Hi, Would you please tell me how I can design dot prob task and > randomize the stimuli with E prime. > ?Best regards,elahe > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From jacanterbury at gmail.com Thu Oct 6 15:53:17 2011 From: jacanterbury at gmail.com (JACanterbury) Date: Thu, 6 Oct 2011 08:53:17 -0700 Subject: dynamically created List only operates for level 1 Message-ID: Hi I'm setting up my TrialList to have only 1 level and then building it on the fly something like this ... >>>>>>>>>>>>>>>>> for index = 1 to NUMBER_OF_TRIALS TrialList.setProc index, "TrialProc" TrialList.setWeight index, "1" TrialList.setAttrib index, "response", responses( index ) TrialList.setAttrib index, "image", "images\\" & images( index ) TrialList.setAttrib index, "delay", Random( interval_min, interval_max ) if index < NUMBER_OF_TRIALS then TrialList.AddLevel index + 1 ' add the next level to the list ready for the next loop iteration end if next debug.print "TrialList size = " & TrialList.Size >>>>>>>>>>>>>> this code all works fine and adds the extra levels and the final debug.print displays the correct value (50 in this case) however the script then only performs 1 iteration so it seems to ignore all the extra levels that have been dynamically added. Interestingly, if I add an extra level ie level 2) manually before running this code (with the approp tweak to stop AddLevel complaining) then the list operates for level 1 & level 2. It's as if e-prime is using the startup value for the list size and ignoring what has happened at run time. Any ideas would be appreciated ( i'd rather keep it dynamic if possible) Thanks -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From baltimore.ben at gmail.com Thu Oct 6 17:30:09 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Thu, 6 Oct 2011 13:30:09 -0400 Subject: dynamically created List only operates for level 1 In-Reply-To: Message-ID: don't forget to add TrialList.Reset after adding all those levels. hope that helps. On Thu, Oct 6, 2011 at 11:53 AM, JACanterbury wrote: > Hi > > I'm setting up my TrialList to have only 1 level and then building it > on the fly something like this ... >>>>>>>>>>>>>>>>>> > for index = 1 to NUMBER_OF_TRIALS > > ? ? ? ?TrialList.setProc index, "TrialProc" > ? ? ? ?TrialList.setWeight index, "1" > ? ? ? ?TrialList.setAttrib index, "response", responses( index ) > ? ? ? ?TrialList.setAttrib index, "image", "images\\" & images( index ) > ? ? ? ?TrialList.setAttrib index, "delay", Random( interval_min, > interval_max ) > > > ? ? ? ?if index < NUMBER_OF_TRIALS then > ? ? ? ? ? ? ? ?TrialList.AddLevel index + 1 ? ?' add the next level to the list > ready for the next loop iteration > ? ? ? ?end if > > next > > debug.print "TrialList size = " & TrialList.Size >>>>>>>>>>>>>>> > > this code all works fine and adds the extra levels and the final > debug.print displays the correct value (50 in this case) however the > script then only performs 1 iteration so it seems to ignore all the > extra levels that have been dynamically added. > Interestingly, if I add an extra level ie level 2) manually ?before > running this code (with the approp tweak to stop AddLevel complaining) > then the list operates for level 1 & level 2. > > It's as if e-prime is using the startup value for the list size and > ignoring what has happened at run time. > > Any ideas would be appreciated ( i'd rather keep it dynamic if > possible) > > Thanks > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Thu Oct 6 19:15:35 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 6 Oct 2011 15:15:35 -0400 Subject: How to change the gamma setting in Eprime? In-Reply-To: <09DAEA8BC192C94EB62C8E71FC35A5D930907A091A@EXCHANGE3.ad.no ttingham.ac.uk> Message-ID: Regina, Weighing in here... Indeed, I do not think that E-Prime has any facility for handling gamma settings, but if you really want to know then you should submit your question to PST at http://support.pstnet.com/e%2Dprime/support/login.asp (and then post back here with their response). If the issue is one of EP overriding gamma settings done externally (thanks for that insight, Mich), if you use EP2 then you might try setting the EP Display device to "Match desktop resolution at runtime", just in case that preserves externally done video settings. Ultimately, if you want or need your program to handle gamma settings, then abandon E-Prime. MATLAB using the Image Processing Toolbox and the Psychophysics Toolbox will handle this nicely. -- David McFarlane, Professional Faultfinder At 10/6/2011 05:02 AM Thursday, Michiel Spape wrote: >Hi, >I think Gamma settings are part of the video >card's driver specific settings - i.e., not >windows OS settings as such. I understand what >you set there gets reverted in E-prime once >running an experiment? If you want to avoid >that, you might delve deeper into the gfx card >driver settings to make sure the application >specific settings get overridden (a common >setting in ATI and NVidia cards) by your >driver's. Possibly, but doubtfully, your >settings remain somewhat more stable if you make >sure that the number of colours (i.e. in bits, >like 32) is the same in E-Prime as it is in the >OS (NOT true by default - 16 in E-Prime, 32/24, >generally in Windows), as well as the resolution >(and I know few people running their os in >640x480 as well). Moreover, if you'll look on >the internet, you're most likely to find >alternative drivers for your video card which >complement your existing options, possibly changing gamma and such. > >However, as a side point, I think you might want >to change the stimulus material rather than >changing the gamma, which inevitably compromises >quality of your stimulus material (which sounds >like something psychophysicists would deeply >care about). Use photoshop or whatever to change >gamma there, so you know exactly what is >happening, save that (this can be done in batch >processing, I heard, so it's not all that much >work), and only then use these files in E-Prime. >I don't know the exact situation here, but >generally, this is the better way to go. > >Best, >Mich > >Michiel Spap? >Research Fellow >Perception & Action group >University of Nottingham >School of Psychology >www.cognitology.eu > > >-----Original Message----- >From: e-prime at googlegroups.com >[mailto:e-prime at googlegroups.com] On Behalf Of Regina L >Sent: 05 October 2011 23:14 >To: E-Prime >Subject: How to change the gamma setting in Eprime? > >Dear all, > >I am trying to figure out how to change the gamma setting in Eprime as >to have a linear luminance profile for my experiment, but I cannot >find anything in the help files about this (nor on the display >settings in Eprime). Has anyone done this before? I found an >unanswered post regarding the exact same topic in the PST user forum >(below). > >Thanks! > >Regina > > > >"Hi, > >We are trying to run an eprime object recognition study and we can >change the gamma on the control panel of the computer but this setting >does not remain when we execute eprime. Is there any way to keep the >gamma setting from the control panel in eprime? > >Alternatively, is there any way to control the color look-up table in >eprime? In the end we're trying to achieve a linear luminance profile >as we do with our psychophysical experiments. > >Thanks, > >Vanessa" -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From jacanterbury at gmail.com Fri Oct 7 14:18:21 2011 From: jacanterbury at gmail.com (JACanterbury) Date: Fri, 7 Oct 2011 07:18:21 -0700 Subject: dynamically created List only operates for level 1 In-Reply-To: Message-ID: Hi Ben, Thanks for the suggestion. Actually I had the .Reset (I just missed it off the bottom of the cut and paste). It's frustrating because the debug.print returns 50 which is what I'd expect its just that the loop only runs once. I've jsut condensed it down to the bare bones :- >>>const NUMBER_OF_TRIALS as integer = 50 dim index as integer 'loop variable for index = 1 to NUMBER_OF_TRIALS TrialList.setProc index, "TrialProc" TrialList.setWeight index, "1" TrialList.setAttrib index, "text", "cat" TrialList.setAttrib index, "correct", "a" if index < NUMBER_OF_TRIALS then TrialList.AddLevel index + 1 end if debug.print index & " - " & TrialList.getAttrib(index, "text") & " - " & TrialList.getAttrib(index, "correct") next debug.print "TrialList size = " & TrialList.Size TrialList.Reset <<<< with a basic TrialList with a single level as follows;- >>> ID Weight nested procedure Text Correct 1 1 TrialProc Cat a <<< which has the same problem :( Is anyone else successfully using AddLevel ? If so, then some sample code would be appreciated, Many thanks, John On Oct 6, 6:30?pm, ben robinson wrote: > don't forget to add TrialList.Reset after adding all those levels. > hope that helps. > > > > > > > > On Thu, Oct 6, 2011 at 11:53 AM, JACanterbury wrote: > > Hi > > > I'm setting up my TrialList to have only 1 level and then building it > > on the fly something like this ... > > > for index = 1 to NUMBER_OF_TRIALS > > > ? ? ? ?TrialList.setProc index, "TrialProc" > > ? ? ? ?TrialList.setWeight index, "1" > > ? ? ? ?TrialList.setAttrib index, "response", responses( index ) > > ? ? ? ?TrialList.setAttrib index, "image", "images\\" & images( index ) > > ? ? ? ?TrialList.setAttrib index, "delay", Random( interval_min, > > interval_max ) > > > ? ? ? ?if index < NUMBER_OF_TRIALS then > > ? ? ? ? ? ? ? ?TrialList.AddLevel index + 1 ? ?' add the next level to the list > > ready for the next loop iteration > > ? ? ? ?end if > > > next > > > debug.print "TrialList size = " & TrialList.Size > > > this code all works fine and adds the extra levels and the final > > debug.print displays the correct value (50 in this case) however the > > script then only performs 1 iteration so it seems to ignore all the > > extra levels that have been dynamically added. > > Interestingly, if I add an extra level ie level 2) manually ?before > > running this code (with the approp tweak to stop AddLevel complaining) > > then the list operates for level 1 & level 2. > > > It's as if e-prime is using the startup value for the list size and > > ignoring what has happened at run time. > > > Any ideas would be appreciated ( i'd rather keep it dynamic if > > possible) > > > Thanks > > > -- > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Fri Oct 7 15:08:29 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Fri, 7 Oct 2011 11:08:29 -0400 Subject: dynamically created List only operates for level 1 In-Reply-To: Message-ID: John, Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... I have successfully made dynamic Lists work using E-Basic code. Whenever I want to figure out how to do something like that, I start by making some simple relevant mock-up in E-Studio, have it generate the code, and then look at that generated code. In this case, add a List (e.g., "List1"), add a few levels to that List, set Load Method to "Script" (so that it generates full code for making the List), and Generate the code. Then scroll down to the InitObjects area in the full code. There you will find a few lines like Set List1.TerminateCondition = Cycles(1) Set List1.ResetCondition = Samples(5) List1.Reset I think your key lies there. After adding your levels, in addition to Resetting the List (as Ben already mentioned), you still need to set the TerminateCondition and ResetCondition -- see the List.TerminateCondition and List.ResetCondition topics, as well as the Cycles and Samples topics, in the E-Basic Help facility. -- David McFarlane, Professional Faultfinder At 10/7/2011 10:18 AM Friday, you wrote: >Hi Ben, > >Thanks for the suggestion. Actually I had the .Reset (I just missed it >off the bottom of the cut and paste). > >It's frustrating because the debug.print returns 50 which is what I'd >expect its just that the loop only runs once. > >I've jsut condensed it down to the bare bones :- > > >>>const NUMBER_OF_TRIALS as integer = 50 > >dim index as integer 'loop variable > >for index = 1 to NUMBER_OF_TRIALS > > TrialList.setProc index, "TrialProc" > TrialList.setWeight index, "1" > TrialList.setAttrib index, "text", "cat" > TrialList.setAttrib index, "correct", "a" > > if index < NUMBER_OF_TRIALS then > TrialList.AddLevel index + 1 > end if > > debug.print index & " - " & TrialList.getAttrib(index, "text") & " - >" & TrialList.getAttrib(index, "correct") > >next > >debug.print "TrialList size = " & TrialList.Size > >TrialList.Reset ><<<< > >with a basic TrialList with a single level as follows;- > > >>> >ID Weight nested procedure Text Correct >1 1 TrialProc Cat a ><<< > > >which has the same problem :( > >Is anyone else successfully using AddLevel ? If so, then some sample >code would be appreciated, > >Many thanks, > >John > > > >On Oct 6, 6:30 pm, ben robinson wrote: > > don't forget to add TrialList.Reset after adding all those levels. > > hope that helps. > > > > > > > > > > > > > > > > On Thu, Oct 6, 2011 at 11:53 AM, JACanterbury > wrote: > > > Hi > > > > > I'm setting up my TrialList to have only 1 level and then building it > > > on the fly something like this ... > > > > > for index = 1 to NUMBER_OF_TRIALS > > > > > TrialList.setProc index, "TrialProc" > > > TrialList.setWeight index, "1" > > > TrialList.setAttrib index, "response", responses( index ) > > > TrialList.setAttrib index, "image", "images\\" & images( index ) > > > TrialList.setAttrib index, "delay", Random( interval_min, > > > interval_max ) > > > > > if index < NUMBER_OF_TRIALS then > > > TrialList.AddLevel index + 1 ' add the next > level to the list > > > ready for the next loop iteration > > > end if > > > > > next > > > > > debug.print "TrialList size = " & TrialList.Size > > > > > this code all works fine and adds the extra levels and the final > > > debug.print displays the correct value (50 in this case) however the > > > script then only performs 1 iteration so it seems to ignore all the > > > extra levels that have been dynamically added. > > > Interestingly, if I add an extra level ie level 2) manually before > > > running this code (with the approp tweak to stop AddLevel complaining) > > > then the list operates for level 1 & level 2. > > > > > It's as if e-prime is using the startup value for the list size and > > > ignoring what has happened at run time. > > > > > Any ideas would be appreciated ( i'd rather keep it dynamic if > > > possible) > > > > > Thanks -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Fri Oct 7 15:23:00 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Fri, 7 Oct 2011 11:23:00 -0400 Subject: showing a video on E-Prime Message-ID: Hi All, I am developing a task for an infant EEG study. I need to show a video on E-Prime for at least 5 min (max 10 min). Has anyone tried it? The second question is in regards to a giff lab (moving images). I need a moving attention grabber image to fixate infants' attention. Has anyone know a library for that. Thank you very much. Best, Meltem -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Fri Oct 7 15:19:41 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Fri, 7 Oct 2011 11:19:41 -0400 Subject: dynamically created List only operates for level 1 In-Reply-To: <4e8f15f2.4cd62a0a.4ba9.6a1eSMTPIN_ADDED@gmr-mx.google.com> Message-ID: Oh, your example did not seem to include using code to add List attributes (as opposed to levels), but just for those who may run across this, the List topic in the E-Basic Help curiously lacks the List.AddAttrrib method. If you do a Find for "AddAttrib" on the full Help Topics, you will find it under the topic "FactorSpace.AddAttrib". (I also documented this back in 2009 at http://support.pstnet.com/forum/Topic1241-12-1.aspx .) -- David McFarlane, Professional Faultfinder At 10/7/2011 11:08 AM Friday, David McFarlane wrote: >John, > >Stock reminder: 1) I do not work for PST. 2) PST's trained staff >takes any and all questions at >http://support.pstnet.com/e%2Dprime/support/login.asp , and they >strive to respond to all requests in 24-48 hours -- this is pretty >much their substitute for proper documentation, so make full use of >it. 3) If you do get an answer from PST Web Support, please extend >the courtesy of posting their reply back here for the sake of others. > >That said, here is my take... > >I have successfully made dynamic Lists work using E-Basic >code. Whenever I want to figure out how to do something like that, >I start by making some simple relevant mock-up in E-Studio, have it >generate the code, and then look at that generated code. > >In this case, add a List (e.g., "List1"), add a few levels to that >List, set Load Method to "Script" (so that it generates full code >for making the List), and Generate the code. Then scroll down to >the InitObjects area in the full code. There you will find a few lines like > > Set List1.TerminateCondition = Cycles(1) > Set List1.ResetCondition = Samples(5) > List1.Reset > >I think your key lies there. After adding your levels, in addition >to Resetting the List (as Ben already mentioned), you still need to >set the TerminateCondition and ResetCondition -- see the >List.TerminateCondition and List.ResetCondition topics, as well as >the Cycles and Samples topics, in the E-Basic Help facility. > >-- David McFarlane, Professional Faultfinder > > >At 10/7/2011 10:18 AM Friday, you wrote: >>Hi Ben, >> >>Thanks for the suggestion. Actually I had the .Reset (I just missed it >>off the bottom of the cut and paste). >> >>It's frustrating because the debug.print returns 50 which is what I'd >>expect its just that the loop only runs once. >> >>I've jsut condensed it down to the bare bones :- >> >> >>>const NUMBER_OF_TRIALS as integer = 50 >> >>dim index as integer 'loop variable >> >>for index = 1 to NUMBER_OF_TRIALS >> >> TrialList.setProc index, "TrialProc" >> TrialList.setWeight index, "1" >> TrialList.setAttrib index, "text", "cat" >> TrialList.setAttrib index, "correct", "a" >> >> if index < NUMBER_OF_TRIALS then >> TrialList.AddLevel index + 1 >> end if >> >> debug.print index & " - " & TrialList.getAttrib(index, "text") & " - >>" & TrialList.getAttrib(index, "correct") >> >>next >> >>debug.print "TrialList size = " & TrialList.Size >> >>TrialList.Reset >><<<< >> >>with a basic TrialList with a single level as follows;- >> >> >>> >>ID Weight nested procedure Text Correct >>1 1 TrialProc Cat a >><<< >> >> >>which has the same problem :( >> >>Is anyone else successfully using AddLevel ? If so, then some sample >>code would be appreciated, >> >>Many thanks, >> >>John >> >> >> >>On Oct 6, 6:30 pm, ben robinson wrote: >> > don't forget to add TrialList.Reset after adding all those levels. >> > hope that helps. >> > >> > >> > >> > >> > >> > >> > >> > On Thu, Oct 6, 2011 at 11:53 AM, JACanterbury >> wrote: >> > > Hi >> > >> > > I'm setting up my TrialList to have only 1 level and then building it >> > > on the fly something like this ... >> > >> > > for index = 1 to NUMBER_OF_TRIALS >> > >> > > TrialList.setProc index, "TrialProc" >> > > TrialList.setWeight index, "1" >> > > TrialList.setAttrib index, "response", responses( index ) >> > > TrialList.setAttrib index, "image", "images\\" & images( index ) >> > > TrialList.setAttrib index, "delay", Random( interval_min, >> > > interval_max ) >> > >> > > if index < NUMBER_OF_TRIALS then >> > > TrialList.AddLevel index + 1 ' add the next >> level to the list >> > > ready for the next loop iteration >> > > end if >> > >> > > next >> > >> > > debug.print "TrialList size = " & TrialList.Size >> > >> > > this code all works fine and adds the extra levels and the final >> > > debug.print displays the correct value (50 in this case) however the >> > > script then only performs 1 iteration so it seems to ignore all the >> > > extra levels that have been dynamically added. >> > > Interestingly, if I add an extra level ie level 2) manually before >> > > running this code (with the approp tweak to stop AddLevel complaining) >> > > then the list operates for level 1 & level 2. >> > >> > > It's as if e-prime is using the startup value for the list size and >> > > ignoring what has happened at run time. >> > >> > > Any ideas would be appreciated ( i'd rather keep it dynamic if >> > > possible) >> > >> > > Thanks -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 9 09:06:16 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 9 Oct 2011 02:06:16 -0700 Subject: How to design an attribute column such that it will receive input from many ask boxes for the same participant Message-ID: Hi all, After the participants completed the trials in my experiment I want them to answer inventory which is made of several questions. For that, I entered several ask boxes one after the other (e.g., a=askbox(question 1) b=askbox(question2) and etc) and for each question the answer is kept in different attribute. My question is how can I save all of the answers from these ask boxes so they appear in the same attribute and in one column? Regards, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Sun Oct 9 10:03:35 2011 From: pquain at une.edu.au (Peter Quain) Date: Sun, 9 Oct 2011 21:03:35 +1100 Subject: How to design an attribute column such that it will receive input from many ask boxes for the same participant In-Reply-To: Message-ID: e-prime data files are organised by trial ... row by row. I recall collecting handedness, gender, age once at beginning of experiment, and those attributes had an entry in each row of the final edat file. I just grabbed what info I wanted in later processing of the file (where I wanted summary per subject, in a single row, of course). At 08:06 PM 9/10/2011, you wrote: >Hi all, > >After the participants completed the trials in my experiment I want >them to answer inventory which is made of several questions. For that, >I entered several ask boxes one after the other (e.g., >a=askbox(question 1) b=askbox(question2) and etc) and for each >question the answer is kept in different attribute. My question is how >can I save all of the answers from these ask boxes so they appear in >the same attribute and in one column? > >Regards, >Gilis > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pfc.groot at gmail.com Sun Oct 9 22:07:28 2011 From: pfc.groot at gmail.com (Paul Groot) Date: Mon, 10 Oct 2011 00:07:28 +0200 Subject: How to design an attribute column such that it will receive input from many ask boxes for the same participant In-Reply-To: <201110091003.p99A3biX005749@mail9.tpg.com.au> Message-ID: Hi Gilis, you could add a new list object at the end of the session and add a level/row to this list for each question. The text for the questions could be inserted as an attirbute in this list (i.e. a single column containing each question on a separate row). Then use the askbox once in an inline script in the same way as you are doing now, but use the GetAttrib and SetAttrib functions to get the text from the list object and to save the answers. Since you are using the same attribute name for each answer, you will get the results in a single column on multiple rows. As a side note: I personally would stay away from the askbox function and use a regular eprime object instead. (You can configure the inputmask to accept and echo multiple characters until you press enter.) cheers, paul 2011/10/9 Peter Quain : > > e-prime data files are organised by trial ... row by row. I recall > collecting handedness, gender, age once at beginning of experiment, and > those attributes had an entry in each row of the final edat file. I just > grabbed what info I wanted in later processing of the file (where I wanted > summary per subject, in a single row, of course). > > At 08:06 PM 9/10/2011, you wrote: >> >> Hi all, >> >> After the participants completed the trials in my experiment I want >> them to answer inventory which is made of several questions. For that, >> I entered several ask boxes one after the other (e.g., >> a=askbox(question 1) b=askbox(question2) and etc) and for each >> question the answer is kept in different attribute. My question is how >> can I save all of the answers from these ask boxes so they appear in >> the same attribute and in one column? >> >> Regards, >> Gilis >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to >> e-prime+unsubscribe at googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/e-prime?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From neil.mclatchie at googlemail.com Mon Oct 10 15:05:40 2011 From: neil.mclatchie at googlemail.com (Neil McLatchie) Date: Mon, 10 Oct 2011 08:05:40 -0700 Subject: Randomized maths questions Message-ID: Hi, I'm trying to present participants with 10 maths questions. I've created a list ("shmaths"), with the procedure "shmathsproc". In the list I've two attributes, one called "shquestion" and one called "shcorrect". I then created 10 rows with a different maths question/answer in each. In the procedure, I have an inline, a label, a text display and another inline. This is because I want participants to answer by clicking the left mouse button as many times as they think the answer is (e.g. 7 times if the answer is 7), and then right-click to submit the answer. These are basically what the inlines and label are doing, and they work fine. In the text I have "[shquestion] = [shmaths]", shmaths being the name of the participant's response as they click. For some reason it is only showing 1 maths question and not going down the whole list. I have tried changing the selection sequence but seemingly to no avail. Also for some reason, the program stops running after this text box. Any help will be greatly appreciated! Cheers. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Mon Oct 10 16:46:55 2011 From: giladsabo at gmail.com (gilis) Date: Mon, 10 Oct 2011 09:46:55 -0700 Subject: Moving flanker to the right position Message-ID: Hi, I have two flankers in my experiment display, one is on the right and the other is on the left. Each flanker is made of 3 words (separate text object for each), one above the other. The problem I get is that while on the left everything seems OK and balanced, on the right, the upper word is pushed from the beginning of the display, so while the flanker on the left side look like that: FOOD WATER FORK the flanker on the right side look like that: SEA LAND BOAT i.e., it doesn't start from the beginning of the row though it was defined to start from there..Also, I was thinking that it is a problem with the way the word is put in the list from which the text object call it-but apparently there is nothing wrong...Also, while all other words remain stable when the experiment goes from one slide to the other, the only moving word is off course the upper one (i.e., sea). Thanks in advance, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Mon Oct 10 18:20:26 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 10 Oct 2011 14:20:26 -0400 Subject: How to design an attribute column such that it will receive input from many ask boxes for the same participant In-Reply-To: Message-ID: Gilis, I think you should follow Paul's advice here. But just to answer the question in the form it was posed, you can log a new row of data at any time by using the log method of the Context object from inline code, i.e., "c.Log" -- see the "Context.Log" topic in the E-Basic Help facility. So if you are bound & determined to do everything with inline code instead of doing thigs properly with a List, then that's how you do it. But once again, I think you should *not* do what I described here and instead just follow Paul's advice. -- David McFarlane, Professional Faultfinder At 10/9/2011 06:07 PM Sunday, you wrote: >Hi Gilis, > >you could add a new list object at the end of the session and add a >level/row to this list for each question. The text for the questions >could be inserted as an attirbute in this list (i.e. a single column >containing each question on a separate row). Then use the askbox once >in an inline script in the same way as you are doing now, but use the >GetAttrib and SetAttrib functions to get the text from the list object >and to save the answers. Since you are using the same attribute name >for each answer, you will get the results in a single column on >multiple rows. As a side note: I personally would stay away from the >askbox function and use a regular eprime object instead. (You can >configure the inputmask to accept and echo multiple characters until >you press enter.) > >cheers, >paul > >2011/10/9 Peter Quain : > > > > e-prime data files are organised by trial ... row by row. I recall > > collecting handedness, gender, age once at beginning of experiment, and > > those attributes had an entry in each row of the final edat file. I just > > grabbed what info I wanted in later processing of the file (where I wanted > > summary per subject, in a single row, of course). > > > > At 08:06 PM 9/10/2011, you wrote: > >> > >> Hi all, > >> > >> After the participants completed the trials in my experiment I want > >> them to answer inventory which is made of several questions. For that, > >> I entered several ask boxes one after the other (e.g., > >> a=askbox(question 1) b=askbox(question2) and etc) and for each > >> question the answer is kept in different attribute. My question is how > >> can I save all of the answers from these ask boxes so they appear in > >> the same attribute and in one column? > >> > >> Regards, > >> Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Mon Oct 10 19:30:45 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 10 Oct 2011 15:30:45 -0400 Subject: Randomized maths questions In-Reply-To: <8bc57a9b-db5d-4b02-a7d8-6c6b6fda5bb0@x19g2000vbl.googlegro ups.com> Message-ID: Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... Seems like a pretty good description of your task structure, but I do not follow your description of the symptoms. It seems like you are saying: 1) The program successfully runs one and only one trial from the List. 2) The program fails to run any trial, as it stops after the stimulus display. #1 is ambiguous (it could mean that the program runs one trial and exits, or that it runs 10 trials of the same stimulus), and #1 and #2 are mutually incompatible. Please clarify, and then maybe we can think of something. -- David McFarlane, Professional Faultfinder At 10/10/2011 11:05 AM Monday, you wrote: >I'm trying to present participants with 10 maths questions. I've >created a list ("shmaths"), with the procedure "shmathsproc". > >In the list I've two attributes, one called "shquestion" and one >called "shcorrect". I then created 10 rows with a different maths >question/answer in each. > >In the procedure, I have an inline, a label, a text display and >another inline. This is because I want participants to answer by >clicking the left mouse button as many times as they think the answer >is (e.g. 7 times if the answer is 7), and then right-click to submit >the answer. These are basically what the inlines and label are doing, >and they work fine. > >In the text I have "[shquestion] = [shmaths]", shmaths being the name >of the participant's response as they click. > >For some reason it is only showing 1 maths question and not going down >the whole list. I have tried changing the selection sequence but >seemingly to no avail. Also for some reason, the program stops running >after this text box. > >Any help will be greatly appreciated! > >Cheers. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From evelina at illinois.edu Mon Oct 10 20:43:40 2011 From: evelina at illinois.edu (Evelina Tapia) Date: Mon, 10 Oct 2011 13:43:40 -0700 Subject: Moving flanker to the right position In-Reply-To: <8c747bbb-c9d7-49ec-a3a7-2415361e733b@dk6g2000vbb.googlegroups.com> Message-ID: Gilis, under textbox properties you can specify text color, textbox background color etc. You can also specify alignment there as well so try that for you right display. Also, do you have separate text boxes for each word or for each flanker object? There could be potential word wrapping differences between the two items as well. Evelina On Oct 10, 11:46?am, gilis wrote: > Hi, > > I have two flankers in my experiment display, one is on the right and > the other is on the left. Each flanker is made of 3 words (separate > text object for each), one above the other. The problem I get is that > while on the left everything seems OK and balanced, on the right, the > upper word is pushed from the beginning of the display, so while the > flanker on the left side look like that: > > FOOD > WATER > FORK > > the flanker on the right side look like that: > > ? SEA > LAND > BOAT > > i.e., it doesn't start from the beginning of the row though it was > defined to start from there..Also, I was thinking that it is a problem > with the way the word is put in the list from which the text object > call it-but apparently there is nothing wrong...Also, while all other > words remain stable when the experiment goes from one slide to the > other, the only moving word is off course the upper one (i.e., sea). > > Thanks in advance, > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Tue Oct 11 08:29:26 2011 From: giladsabo at gmail.com (gilis) Date: Tue, 11 Oct 2011 01:29:26 -0700 Subject: Moving flanker to the right position In-Reply-To: <6c241b9b-d7c3-467c-8a1f-a08150b660ec@x19g2000vbl.googlegroups.com> Message-ID: Yes I do..as for the x alignment and etc, it's just like that of the other words..there should be no reason why they appear so different in position on the display.. On Oct 10, 10:43?pm, Evelina Tapia wrote: > Gilis, > > under textbox properties you can specify text color, textbox > background color etc. You can also specify alignment there as well so > try that for you right display. Also, do you have separate text boxes > for each word or for each flanker object? There could be potential > word wrapping differences between the two items as well. > > Evelina > > On Oct 10, 11:46?am, gilis wrote: > > > > > > > > > Hi, > > > I have two flankers in my experiment display, one is on the right and > > the other is on the left. Each flanker is made of 3 words (separate > > text object for each), one above the other. The problem I get is that > > while on the left everything seems OK and balanced, on the right, the > > upper word is pushed from the beginning of the display, so while the > > flanker on the left side look like that: > > > FOOD > > WATER > > FORK > > > the flanker on the right side look like that: > > > ? SEA > > LAND > > BOAT > > > i.e., it doesn't start from the beginning of the row though it was > > defined to start from there..Also, I was thinking that it is a problem > > with the way the word is put in the list from which the text object > > call it-but apparently there is nothing wrong...Also, while all other > > words remain stable when the experiment goes from one slide to the > > other, the only moving word is off course the upper one (i.e., sea). > > > Thanks in advance, > > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Tue Oct 11 12:51:25 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Tue, 11 Oct 2011 08:51:25 -0400 Subject: Moving flanker to the right position In-Reply-To: <9c02e94b-0bab-4f5c-8166-f37cb9df577e@hd1g2000vbb.googlegroups.com> Message-ID: Hi Gilis, I faced with similar problem. The solution to my problem was making images of flankers using adobe or matlab or python (jpeg). The delay was less than 10 ms. Best luck Meltem On Oct 11, 2011 4:29 AM, "gilis" wrote: > Yes I do..as for the x alignment and etc, it's just like that of the > other words..there should be no reason why they appear so different in > position on the display.. > > On Oct 10, 10:43 pm, Evelina Tapia wrote: > > Gilis, > > > > under textbox properties you can specify text color, textbox > > background color etc. You can also specify alignment there as well so > > try that for you right display. Also, do you have separate text boxes > > for each word or for each flanker object? There could be potential > > word wrapping differences between the two items as well. > > > > Evelina > > > > On Oct 10, 11:46 am, gilis wrote: > > > > > > > > > > > > > > > > > Hi, > > > > > I have two flankers in my experiment display, one is on the right and > > > the other is on the left. Each flanker is made of 3 words (separate > > > text object for each), one above the other. The problem I get is that > > > while on the left everything seems OK and balanced, on the right, the > > > upper word is pushed from the beginning of the display, so while the > > > flanker on the left side look like that: > > > > > FOOD > > > WATER > > > FORK > > > > > the flanker on the right side look like that: > > > > > SEA > > > LAND > > > BOAT > > > > > i.e., it doesn't start from the beginning of the row though it was > > > defined to start from there..Also, I was thinking that it is a problem > > > with the way the word is put in the list from which the text object > > > call it-but apparently there is nothing wrong...Also, while all other > > > words remain stable when the experiment goes from one slide to the > > > other, the only moving word is off course the upper one (i.e., sea). > > > > > Thanks in advance, > > > Gilis > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From baltimore.ben at gmail.com Tue Oct 11 13:58:38 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Tue, 11 Oct 2011 09:58:38 -0400 Subject: Moving flanker to the right position In-Reply-To: <9c02e94b-0bab-4f5c-8166-f37cb9df577e@hd1g2000vbb.googlegroups.com> Message-ID: are you sure you don't have an extra space hidden at the beginning of that one flanker containing "SEA"... " [flanker]" instead of "[flanker]" ? On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > Yes I do..as for the x alignment and etc, it's just like that of the > other words..there should be no reason why they appear so different in > position on the display.. > > On Oct 10, 10:43?pm, Evelina Tapia wrote: >> Gilis, >> >> under textbox properties you can specify text color, textbox >> background color etc. You can also specify alignment there as well so >> try that for you right display. Also, do you have separate text boxes >> for each word or for each flanker object? There could be potential >> word wrapping differences between the two items as well. >> >> Evelina >> >> On Oct 10, 11:46?am, gilis wrote: >> >> >> >> >> >> >> >> > Hi, >> >> > I have two flankers in my experiment display, one is on the right and >> > the other is on the left. Each flanker is made of 3 words (separate >> > text object for each), one above the other. The problem I get is that >> > while on the left everything seems OK and balanced, on the right, the >> > upper word is pushed from the beginning of the display, so while the >> > flanker on the left side look like that: >> >> > FOOD >> > WATER >> > FORK >> >> > the flanker on the right side look like that: >> >> > ? SEA >> > LAND >> > BOAT >> >> > i.e., it doesn't start from the beginning of the row though it was >> > defined to start from there..Also, I was thinking that it is a problem >> > with the way the word is put in the list from which the text object >> > call it-but apparently there is nothing wrong...Also, while all other >> > words remain stable when the experiment goes from one slide to the >> > other, the only moving word is off course the upper one (i.e., sea). >> >> > Thanks in advance, >> > Gilis > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Wed Oct 12 11:06:45 2011 From: giladsabo at gmail.com (gilis) Date: Wed, 12 Oct 2011 04:06:45 -0700 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Absolutely sure...No minor possible mistake that wasn't check....It's a bag in eprime itself, I will try Meltem solution. On Oct 11, 3:58?pm, ben robinson wrote: > are you sure you don't have an extra space hidden at the beginning of > that one flanker containing "SEA"... > " [flanker]" instead of > "[flanker]" > ? > > > > > > > > On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > > Yes I do..as for the x alignment and etc, it's just like that of the > > other words..there should be no reason why they appear so different in > > position on the display.. > > > On Oct 10, 10:43?pm, Evelina Tapia wrote: > >> Gilis, > > >> under textbox properties you can specify text color, textbox > >> background color etc. You can also specify alignment there as well so > >> try that for you right display. Also, do you have separate text boxes > >> for each word or for each flanker object? There could be potential > >> word wrapping differences between the two items as well. > > >> Evelina > > >> On Oct 10, 11:46?am, gilis wrote: > > >> > Hi, > > >> > I have two flankers in my experiment display, one is on the right and > >> > the other is on the left. Each flanker is made of 3 words (separate > >> > text object for each), one above the other. The problem I get is that > >> > while on the left everything seems OK and balanced, on the right, the > >> > upper word is pushed from the beginning of the display, so while the > >> > flanker on the left side look like that: > > >> > FOOD > >> > WATER > >> > FORK > > >> > the flanker on the right side look like that: > > >> > ? SEA > >> > LAND > >> > BOAT > > >> > i.e., it doesn't start from the beginning of the row though it was > >> > defined to start from there..Also, I was thinking that it is a problem > >> > with the way the word is put in the list from which the text object > >> > call it-but apparently there is nothing wrong...Also, while all other > >> > words remain stable when the experiment goes from one slide to the > >> > other, the only moving word is off course the upper one (i.e., sea). > > >> > Thanks in advance, > >> > Gilis > > > -- > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Wed Oct 12 11:12:05 2011 From: giladsabo at gmail.com (gilis) Date: Wed, 12 Oct 2011 04:12:05 -0700 Subject: Eprime problem with labels Message-ID: Hi, The experiment session procedure includes first a label, then the experiment procedure itself (in a list object) and then after an inline in which I defined a as integer and after each time the experiment run its value is updated by +1 and as long as a value is less than 40 it should return to the label. When I tried to generate the experiment it become evident that ePrime has some kind of problem with the label itself. It write me that it encountered end of line while it expect statement...What could it be? Thanks Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 11:33:40 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 04:33:40 -0700 Subject: Eprime problem with labels In-Reply-To: Message-ID: Hi Gilis, This experiment of yours is becoming quite an ordeal, isn't it?? Check the script window, a blue square will indicate the exact line of script that is the problem (the error message also tells you at which line and position number the error is encountered). It sounds as if you have a line that has not been finished properly. Likely an IF THEN . Check whether you have all your IF THEN statements that need so, closed with an END IF line. END IF is needed for every IF THEN statement that does not have the IF and THEN on the same line, but on multiple lines, for instance to allow multiple "consequences of IF". For example: IF THEN ^ END IF is not needed IF THEN END IF best Liw On Oct 12, 1:12?pm, gilis wrote: > Hi, > > The experiment session procedure includes first a label, then the > experiment procedure itself (in a list object) and then after an > inline in which I defined a as integer and after each time the > experiment run its value is updated by +1 and as long as a value is > less than 40 it should return to the label. When I tried to generate > the experiment it become evident that ePrime has some kind of problem > with the label itself. It write me that it encountered end of line > while it expect statement...What could it be? > > Thanks > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 11:34:41 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 04:34:41 -0700 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Are the flankerwords taken from a list?? Are you as sure that there are no unwanted spaces in that list? On Oct 12, 1:06?pm, gilis wrote: > Absolutely sure...No minor possible mistake that wasn't check....It's > a bag in eprime itself, I will try Meltem solution. > > On Oct 11, 3:58?pm, ben robinson wrote: > > > > > > > > > are you sure you don't have an extra space hidden at the beginning of > > that one flanker containing "SEA"... > > " [flanker]" instead of > > "[flanker]" > > ? > > > On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > > > Yes I do..as for the x alignment and etc, it's just like that of the > > > other words..there should be no reason why they appear so different in > > > position on the display.. > > > > On Oct 10, 10:43?pm, Evelina Tapia wrote: > > >> Gilis, > > > >> under textbox properties you can specify text color, textbox > > >> background color etc. You can also specify alignment there as well so > > >> try that for you right display. Also, do you have separate text boxes > > >> for each word or for each flanker object? There could be potential > > >> word wrapping differences between the two items as well. > > > >> Evelina > > > >> On Oct 10, 11:46?am, gilis wrote: > > > >> > Hi, > > > >> > I have two flankers in my experiment display, one is on the right and > > >> > the other is on the left. Each flanker is made of 3 words (separate > > >> > text object for each), one above the other. The problem I get is that > > >> > while on the left everything seems OK and balanced, on the right, the > > >> > upper word is pushed from the beginning of the display, so while the > > >> > flanker on the left side look like that: > > > >> > FOOD > > >> > WATER > > >> > FORK > > > >> > the flanker on the right side look like that: > > > >> > ? SEA > > >> > LAND > > >> > BOAT > > > >> > i.e., it doesn't start from the beginning of the row though it was > > >> > defined to start from there..Also, I was thinking that it is a problem > > >> > with the way the word is put in the list from which the text object > > >> > call it-but apparently there is nothing wrong...Also, while all other > > >> > words remain stable when the experiment goes from one slide to the > > >> > other, the only moving word is off course the upper one (i.e., sea). > > > >> > Thanks in advance, > > >> > Gilis > > > > -- > > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From wafa.elise at gmail.com Wed Oct 12 11:58:27 2011 From: wafa.elise at gmail.com (welise) Date: Wed, 12 Oct 2011 04:58:27 -0700 Subject: Conditional cumulative feedback, help. Message-ID: Hi Everybody, I am hoping somebody can help me with presenting participants with cumulative RESP feedback that is conditional on two separate responses: In my experiment, participants are first presented with a slide and asked to press "1" if they will answer "A" or "2" if they will answer "B". I then have 6 slide states, randomly presented, with 4 different stimuli presented on each (I used 6 slides in order to change the positioning of each of the stimuli). If the participant chose "1" previously, they are expected to choose the corresponding stimuli accordingly (by pressing 1, 2, 3, or 4 to indicate the correct position of the stimuli). and if they chose "2" they are expected to choose the stimuli that corresponds to that choice. If they chose "1" and then chose the correct corresponding stimuli, they get no feedback. If they chose "1" and gave incorrect stimuli response then they get Incorrect feedback with a message that says "-5 points". If they chose "2" and made the correct stimuli response- I have feedback randomly set to give them one of two messages, and one of those messages includes "-10 points" while the other includes "+10 points" So far, so good. I have experiment designed up until this point. The problem arises when I try to present cumulative score feedback: Within each trial, after the participant receives the first set of feedback and the corresponding points lost of gained, I need to present them with feedback that tells them their new total score. so total score - 5 points, or total score + 10 points, or total score -10 points, and this needs to carry over from one trial to the net. I have no idea how to do this. I started off by trying to do this with a text slide but I can't figure out how to do an inline text that can make all this happen. I am in over my head and any help would be so much appreciated. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 12:06:03 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 05:06:03 -0700 Subject: Randomized maths questions In-Reply-To: <4e9347ed.82862b0a.399f.ffffc266SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hello Neil, what code do you use to consolidate the answer when the participant presses the right button? If you use the terminate code (i.e. IF textslide.resp = "2" THEN shmats.terminate or something the like) then that migth be the problem. Try ending the loop with another label at the end of your procedure (call it endlabel) and the code IF textslide.resp = "2" THEN goto endlabel best, liw On Oct 10, 9:30?pm, David McFarlane wrote: > Stock reminder: ?1) I do not work for PST. ?2) PST's trained staff > takes any and all questions athttp://support.pstnet.com/e%2Dprime/support/login.asp, and they > strive to respond to all requests in 24-48 hours -- this is pretty > much their substitute for proper documentation, so make full use of > it. ?3) If you do get an answer from PST Web Support, please extend > the courtesy of posting their reply back here for the sake of others. > > That said, here is my take... > > Seems like a pretty good description of your task structure, but I do > not follow your description of the symptoms. ?It seems like you are saying: > > 1) The program successfully runs one and only one trial from the List. > > 2) The program fails to run any trial, as it stops after the stimulus display. > > #1 is ambiguous (it could mean that the program runs one trial and > exits, or that it runs 10 trials of the same stimulus), and #1 and #2 > are mutually incompatible. ?Please clarify, and then maybe we can > think of something. > > -- David McFarlane, Professional Faultfinder > > At 10/10/2011 11:05 AM Monday, you wrote: > > > > > > > > >I'm trying to present participants with 10 maths questions. I've > >created a list ("shmaths"), with the procedure "shmathsproc". > > >In the list I've two attributes, one called "shquestion" and one > >called "shcorrect". I then created 10 rows with a different maths > >question/answer in each. > > >In the procedure, I have an inline, a label, a text display and > >another inline. This is because I want participants to answer by > >clicking the left mouse button as many times as they think the answer > >is (e.g. 7 times if the answer is 7), and then right-click to submit > >the answer. These are basically what the inlines and label are doing, > >and they work fine. > > >In the text I have "[shquestion] = [shmaths]", shmaths being the name > >of the participant's response as they click. > > >For some reason it is only showing 1 maths question and not going down > >the whole list. I have tried changing the selection sequence but > >seemingly to no avail. Also for some reason, the program stops running > >after this text box. > > >Any help will be greatly appreciated! > > >Cheers. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Wed Oct 12 12:10:13 2011 From: pquain at une.edu.au (Peter Quain) Date: Wed, 12 Oct 2011 23:10:13 +1100 Subject: Conditional cumulative feedback, help. In-Reply-To: <041f8258-54db-42ce-ad9a-3ad4f4086b3f@n15g2000vbn.googlegro ups.com> Message-ID: perhaps something like this (rough example) would work? ... go to User Tab in script, and create global variables - Dim intTotalScore, intTrialScore as integer ... then in inline at start of TrialProcedure - intTrialScore = 0 ... and in an inline wherever in the trial procedure you assign the values that your feedback presents (or at the end of the trial sequence) - intTtrialScore = [whatever the score is for that trial] intTotalScore = intTotalScore + intTtrialScore At 10:58 PM 12/10/2011, you wrote: >Hi Everybody, > >I am hoping somebody can help me with presenting participants with >cumulative RESP feedback that is conditional on two separate >responses: > >In my experiment, participants are first presented with a slide and >asked to press "1" if they will answer "A" or "2" if they will answer >"B". I then have 6 slide states, randomly presented, with 4 different >stimuli presented on each (I used 6 slides in order to change the >positioning of each of the stimuli). If the participant chose "1" >previously, they are expected to choose the corresponding stimuli >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct >position of the stimuli). and if they chose "2" they are expected to >choose the stimuli that corresponds to that choice. If they chose "1" >and then chose the correct corresponding stimuli, they get no >feedback. If they chose "1" and gave incorrect stimuli response then >they get Incorrect feedback with a message that says "-5 points". If >they chose "2" and made the correct stimuli response- I have feedback >randomly set to give them one of two messages, and one of those >messages includes "-10 points" while the other includes "+10 points" > >So far, so good. I have experiment designed up until this point. The >problem arises when I try to present cumulative score feedback: > >Within each trial, after the participant receives the first set of >feedback and the corresponding points lost of gained, I need to >present them with feedback that tells them their new total score. so >total score - 5 points, or total score + 10 points, or total score -10 >points, and this needs to carry over from one trial to the net. I >have no idea how to do this. I started off by trying to do this with a >text slide but I can't figure out how to do an inline text that can >make all this happen. I am in over my head and any help would be so >much appreciated. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 12:20:07 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 05:20:07 -0700 Subject: Conditional cumulative feedback, help. In-Reply-To: <041f8258-54db-42ce-ad9a-3ad4f4086b3f@n15g2000vbn.googlegroups.com> Message-ID: Hi! What you need is a global variable, a varibale that is indeed capable to carry over information from one trial to the next. First go to the user tab in the script window (bottom left corner script window). Here you declare a variable called... scorecounter: Dim scorecounter as integer Now... at the end of every trial the scorecounter need to be updated by adding the new trial score and since a variable is not automatically logged into the datafile, I always transfer the value of scorecounter onto an attribute (that is logged): Scorecounter = scorecounter + c.getattrib ("trialscore") (<- of course that 'trialscore' should be replaced by c.setattrib "scorecount", scorecounter you can then use the attribute scorecount on your display to provide feedback by showing a text like: "your new score is [scorecount]" The above is a very minimalistic explanation... I believe the e-primer has some more info on global variables, it can be downloaded at step.psy.cmu.edu/materials/EPrimer.pdf Best liw On Oct 12, 1:58?pm, welise wrote: > Hi Everybody, > > I am hoping somebody can help me with presenting participants with > cumulative RESP feedback that is conditional on two separate > responses: > > In my experiment, participants are first presented with a slide and > asked to press "1" if they will answer "A" or ?"2" if they will answer > "B". I then have 6 slide states, randomly presented, with 4 different > stimuli presented on each (I used 6 slides in order to change the > positioning of each of the stimuli). If the participant chose "1" > previously, they are expected to choose the corresponding stimuli > accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > position of the stimuli). and if they chose "2" they are expected to > choose the stimuli that corresponds to that choice. If they chose "1" > and then chose the correct corresponding stimuli, they get no > feedback. If they chose "1" and gave incorrect stimuli response then > they get ?Incorrect feedback with a message that says "-5 points". If > they chose "2" and made the correct stimuli response- I have feedback > randomly set to give them one of two messages, and one of those > messages includes "-10 points" while the other includes "+10 points" > > So far, so good. I have experiment designed up until this point. The > problem arises when I try to present cumulative score feedback: > > Within each trial, after the participant receives the first set of > feedback and the corresponding points lost of gained, I need to > present them with feedback that tells them their new total score. so > total score - 5 points, or total score + 10 points, or total score -10 > points, and this needs to carry over from one trial to the net. ?I > have no idea how to do this. I started off by trying to do this with a > text slide but I can't figure out how to do an inline text that can > make all this happen. I am in over my head and any help would be so > much appreciated. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 12:22:34 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 05:22:34 -0700 Subject: Conditional cumulative feedback, help. In-Reply-To: <201110121210.p9CCAHqW019111@mail9.tpg.com.au> Message-ID: Hi! What you need is a global variable, a varibale that is indeed capable to carry over information from one trial to the next. First go to the user tab in the script window (bottom left corner script window). Here you declare a variable called... scorecounter: Dim scorecounter as integer Now... at the end of every trial the scorecounter need to be updated by adding the new trial score and since a variable is not automatically logged into the datafile, I always transfer the value of scorecounter onto an attribute (that is logged): Scorecounter = scorecounter + c.getattrib ("trialscore") (<- or where ever you stored the score right now) c.setattrib "scorecount", scorecounter you can then use the attribute scorecount on your display to provide feedback by showing a text like: "your new score is [scorecount]" The above is a very minimalistic explanation... I believe the e-primer has some more info on global variables, it can be downloaded at step.psy.cmu.edu/materials/EPrimer.pdf Best liw On Oct 12, 2:10?pm, Peter Quain wrote: > perhaps something like this (rough example) would work? ... go to > User Tab in script, and create global variables - > > Dim intTotalScore, intTrialScore ?as integer > > ... then in inline at start of TrialProcedure - > > intTrialScore = 0 > > ... and in an inline wherever in the trial procedure you assign the > values that your feedback presents (or at the end of the trial sequence) - > > intTtrialScore = [whatever the score is for that trial] > intTotalScore = intTotalScore + intTtrialScore > > At 10:58 PM 12/10/2011, you wrote: > > > > > > > > >Hi Everybody, > > >I am hoping somebody can help me with presenting participants with > >cumulative RESP feedback that is conditional on two separate > >responses: > > >In my experiment, participants are first presented with a slide and > >asked to press "1" if they will answer "A" or ?"2" if they will answer > >"B". I then have 6 slide states, randomly presented, with 4 different > >stimuli presented on each (I used 6 slides in order to change the > >positioning of each of the stimuli). If the participant chose "1" > >previously, they are expected to choose the corresponding stimuli > >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > >position of the stimuli). and if they chose "2" they are expected to > >choose the stimuli that corresponds to that choice. If they chose "1" > >and then chose the correct corresponding stimuli, they get no > >feedback. If they chose "1" and gave incorrect stimuli response then > >they get ?Incorrect feedback with a message that says "-5 points". If > >they chose "2" and made the correct stimuli response- I have feedback > >randomly set to give them one of two messages, and one of those > >messages includes "-10 points" while the other includes "+10 points" > > >So far, so good. I have experiment designed up until this point. The > >problem arises when I try to present cumulative score feedback: > > >Within each trial, after the participant receives the first set of > >feedback and the corresponding points lost of gained, I need to > >present them with feedback that tells them their new total score. so > >total score - 5 points, or total score + 10 points, or total score -10 > >points, and this needs to carry over from one trial to the net. ?I > >have no idea how to do this. I started off by trying to do this with a > >text slide but I can't figure out how to do an inline text that can > >make all this happen. I am in over my head and any help would be so > >much appreciated. > > >-- > >You received this message because you are subscribed to the Google > >Groups "E-Prime" group. > >To post to this group, send email to e-prime at googlegroups.com. > >To unsubscribe from this group, send email to > >e-prime+unsubscribe at googlegroups.com. > >For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From wafa.elise at gmail.com Wed Oct 12 12:30:25 2011 From: wafa.elise at gmail.com (welise) Date: Wed, 12 Oct 2011 05:30:25 -0700 Subject: Conditional cumulative feedback, help. In-Reply-To: <6034a747-57d8-4fff-8253-960fcc82cead@u6g2000vbo.googlegroups.com> Message-ID: Thank you, both, so much. I also appreciate the quick replies. I will try these options. On Oct 12, 8:22?am, liwenna wrote: > Hi! > > What you need is a global variable, a varibale that is indeed capable > to carry over information from one trial to the next. > First go to the user tab in the script window (bottom left corner > script window). > Here you declare a variable called... scorecounter: > > Dim scorecounter as integer > > Now... at the end of every trial the scorecounter need to be updated > by adding the new trial score and since a variable is not > automatically logged into the datafile, I always transfer the value of > scorecounter onto an attribute (that is logged): > > Scorecounter = scorecounter + c.getattrib ("trialscore") ?(<- or where > ever you stored the score right now) > c.setattrib "scorecount", scorecounter > > you can then use the attribute scorecount on your display to provide > feedback by showing a text like: "your new score is [scorecount]" > > The above is a very minimalistic explanation... I believe the e-primer > has some more info on global variables, it can be downloaded at > step.psy.cmu.edu/materials/EPrimer.pdf > > Best > > liw > > On Oct 12, 2:10?pm, Peter Quain wrote: > > > > > > > > > perhaps something like this (rough example) would work? ... go to > > User Tab in script, and create global variables - > > > Dim intTotalScore, intTrialScore ?as integer > > > ... then in inline at start of TrialProcedure - > > > intTrialScore = 0 > > > ... and in an inline wherever in the trial procedure you assign the > > values that your feedback presents (or at the end of the trial sequence) - > > > intTtrialScore = [whatever the score is for that trial] > > intTotalScore = intTotalScore + intTtrialScore > > > At 10:58 PM 12/10/2011, you wrote: > > > >Hi Everybody, > > > >I am hoping somebody can help me with presenting participants with > > >cumulative RESP feedback that is conditional on two separate > > >responses: > > > >In my experiment, participants are first presented with a slide and > > >asked to press "1" if they will answer "A" or ?"2" if they will answer > > >"B". I then have 6 slide states, randomly presented, with 4 different > > >stimuli presented on each (I used 6 slides in order to change the > > >positioning of each of the stimuli). If the participant chose "1" > > >previously, they are expected to choose the corresponding stimuli > > >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > > >position of the stimuli). and if they chose "2" they are expected to > > >choose the stimuli that corresponds to that choice. If they chose "1" > > >and then chose the correct corresponding stimuli, they get no > > >feedback. If they chose "1" and gave incorrect stimuli response then > > >they get ?Incorrect feedback with a message that says "-5 points". If > > >they chose "2" and made the correct stimuli response- I have feedback > > >randomly set to give them one of two messages, and one of those > > >messages includes "-10 points" while the other includes "+10 points" > > > >So far, so good. I have experiment designed up until this point. The > > >problem arises when I try to present cumulative score feedback: > > > >Within each trial, after the participant receives the first set of > > >feedback and the corresponding points lost of gained, I need to > > >present them with feedback that tells them their new total score. so > > >total score - 5 points, or total score + 10 points, or total score -10 > > >points, and this needs to carry over from one trial to the net. ?I > > >have no idea how to do this. I started off by trying to do this with a > > >text slide but I can't figure out how to do an inline text that can > > >make all this happen. I am in over my head and any help would be so > > >much appreciated. > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Wed Oct 12 13:09:54 2011 From: giladsabo at gmail.com (gilis) Date: Wed, 12 Oct 2011 06:09:54 -0700 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Yes they are taken from a list, and no-no unwanted spaces, and I checked it more than once.... On Oct 12, 1:34?pm, liwenna wrote: > Are the flankerwords taken from a list?? Are you as sure that there > are no unwanted spaces in that list? > > On Oct 12, 1:06?pm, gilis wrote: > > > > > > > > > Absolutely sure...No minor possible mistake that wasn't check....It's > > a bag in eprime itself, I will try Meltem solution. > > > On Oct 11, 3:58?pm, ben robinson wrote: > > > > are you sure you don't have an extra space hidden at the beginning of > > > that one flanker containing "SEA"... > > > " [flanker]" instead of > > > "[flanker]" > > > ? > > > > On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > > > > Yes I do..as for the x alignment and etc, it's just like that of the > > > > other words..there should be no reason why they appear so different in > > > > position on the display.. > > > > > On Oct 10, 10:43?pm, Evelina Tapia wrote: > > > >> Gilis, > > > > >> under textbox properties you can specify text color, textbox > > > >> background color etc. You can also specify alignment there as well so > > > >> try that for you right display. Also, do you have separate text boxes > > > >> for each word or for each flanker object? There could be potential > > > >> word wrapping differences between the two items as well. > > > > >> Evelina > > > > >> On Oct 10, 11:46?am, gilis wrote: > > > > >> > Hi, > > > > >> > I have two flankers in my experiment display, one is on the right and > > > >> > the other is on the left. Each flanker is made of 3 words (separate > > > >> > text object for each), one above the other. The problem I get is that > > > >> > while on the left everything seems OK and balanced, on the right, the > > > >> > upper word is pushed from the beginning of the display, so while the > > > >> > flanker on the left side look like that: > > > > >> > FOOD > > > >> > WATER > > > >> > FORK > > > > >> > the flanker on the right side look like that: > > > > >> > ? SEA > > > >> > LAND > > > >> > BOAT > > > > >> > i.e., it doesn't start from the beginning of the row though it was > > > >> > defined to start from there..Also, I was thinking that it is a problem > > > >> > with the way the word is put in the list from which the text object > > > >> > call it-but apparently there is nothing wrong...Also, while all other > > > >> > words remain stable when the experiment goes from one slide to the > > > >> > other, the only moving word is off course the upper one (i.e., sea). > > > > >> > Thanks in advance, > > > >> > Gilis > > > > > -- > > > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > > > To post to this group, send email to e-prime at googlegroups.com. > > > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 13:17:04 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 06:17:04 -0700 Subject: Moving flanker to the right position In-Reply-To: <22b42ee2-5671-4114-b374-25cbb4e59cfe@q13g2000vby.googlegroups.com> Message-ID: mmm not sure if/why this should solve it, but sometimes simplification is bliss... did you try using one textobject with three lines instead of three separate textobjects on each side. [flanker1] [flanker2] [flanker3] ^ that in one textbox, rather than three. Also: press {return}, {space} then again {return} in order to create an empty line between two lines, if needed. On Oct 12, 3:09?pm, gilis wrote: > Yes they are taken from a list, and no-no unwanted spaces, and I > checked it more than once.... > > On Oct 12, 1:34?pm, liwenna wrote: > > > > > > > > > Are the flankerwords taken from a list?? Are you as sure that there > > are no unwanted spaces in that list? > > > On Oct 12, 1:06?pm, gilis wrote: > > > > Absolutely sure...No minor possible mistake that wasn't check....It's > > > a bag in eprime itself, I will try Meltem solution. > > > > On Oct 11, 3:58?pm, ben robinson wrote: > > > > > are you sure you don't have an extra space hidden at the beginning of > > > > that one flanker containing "SEA"... > > > > " [flanker]" instead of > > > > "[flanker]" > > > > ? > > > > > On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: > > > > > Yes I do..as for the x alignment and etc, it's just like that of the > > > > > other words..there should be no reason why they appear so different in > > > > > position on the display.. > > > > > > On Oct 10, 10:43?pm, Evelina Tapia wrote: > > > > >> Gilis, > > > > > >> under textbox properties you can specify text color, textbox > > > > >> background color etc. You can also specify alignment there as well so > > > > >> try that for you right display. Also, do you have separate text boxes > > > > >> for each word or for each flanker object? There could be potential > > > > >> word wrapping differences between the two items as well. > > > > > >> Evelina > > > > > >> On Oct 10, 11:46?am, gilis wrote: > > > > > >> > Hi, > > > > > >> > I have two flankers in my experiment display, one is on the right and > > > > >> > the other is on the left. Each flanker is made of 3 words (separate > > > > >> > text object for each), one above the other. The problem I get is that > > > > >> > while on the left everything seems OK and balanced, on the right, the > > > > >> > upper word is pushed from the beginning of the display, so while the > > > > >> > flanker on the left side look like that: > > > > > >> > FOOD > > > > >> > WATER > > > > >> > FORK > > > > > >> > the flanker on the right side look like that: > > > > > >> > ? SEA > > > > >> > LAND > > > > >> > BOAT > > > > > >> > i.e., it doesn't start from the beginning of the row though it was > > > > >> > defined to start from there..Also, I was thinking that it is a problem > > > > >> > with the way the word is put in the list from which the text object > > > > >> > call it-but apparently there is nothing wrong...Also, while all other > > > > >> > words remain stable when the experiment goes from one slide to the > > > > >> > other, the only moving word is off course the upper one (i.e., sea). > > > > > >> > Thanks in advance, > > > > >> > Gilis > > > > > > -- > > > > > You received this message because you are subscribed to the Google Groups "E-Prime" group. > > > > > To post to this group, send email to e-prime at googlegroups.com. > > > > > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > > > > > For more options, visit this group athttp://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 12 13:18:26 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 12 Oct 2011 06:18:26 -0700 Subject: Conditional cumulative feedback, help. In-Reply-To: <6554ef08-607b-4ff4-94ed-d286233e19ae@l6g2000vbd.googlegroups.com> Message-ID: good luck. Do note that Peter and I basically proposed the same solution, it's not really two different options. On Oct 12, 2:30?pm, welise wrote: > Thank you, both, so much. ?I also appreciate the quick replies. I will > try these options. > > On Oct 12, 8:22?am, liwenna wrote: > > > > > > > > > Hi! > > > What you need is a global variable, a varibale that is indeed capable > > to carry over information from one trial to the next. > > First go to the user tab in the script window (bottom left corner > > script window). > > Here you declare a variable called... scorecounter: > > > Dim scorecounter as integer > > > Now... at the end of every trial the scorecounter need to be updated > > by adding the new trial score and since a variable is not > > automatically logged into the datafile, I always transfer the value of > > scorecounter onto an attribute (that is logged): > > > Scorecounter = scorecounter + c.getattrib ("trialscore") ?(<- or where > > ever you stored the score right now) > > c.setattrib "scorecount", scorecounter > > > you can then use the attribute scorecount on your display to provide > > feedback by showing a text like: "your new score is [scorecount]" > > > The above is a very minimalistic explanation... I believe the e-primer > > has some more info on global variables, it can be downloaded at > > step.psy.cmu.edu/materials/EPrimer.pdf > > > Best > > > liw > > > On Oct 12, 2:10?pm, Peter Quain wrote: > > > > perhaps something like this (rough example) would work? ... go to > > > User Tab in script, and create global variables - > > > > Dim intTotalScore, intTrialScore ?as integer > > > > ... then in inline at start of TrialProcedure - > > > > intTrialScore = 0 > > > > ... and in an inline wherever in the trial procedure you assign the > > > values that your feedback presents (or at the end of the trial sequence) - > > > > intTtrialScore = [whatever the score is for that trial] > > > intTotalScore = intTotalScore + intTtrialScore > > > > At 10:58 PM 12/10/2011, you wrote: > > > > >Hi Everybody, > > > > >I am hoping somebody can help me with presenting participants with > > > >cumulative RESP feedback that is conditional on two separate > > > >responses: > > > > >In my experiment, participants are first presented with a slide and > > > >asked to press "1" if they will answer "A" or ?"2" if they will answer > > > >"B". I then have 6 slide states, randomly presented, with 4 different > > > >stimuli presented on each (I used 6 slides in order to change the > > > >positioning of each of the stimuli). If the participant chose "1" > > > >previously, they are expected to choose the corresponding stimuli > > > >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > > > >position of the stimuli). and if they chose "2" they are expected to > > > >choose the stimuli that corresponds to that choice. If they chose "1" > > > >and then chose the correct corresponding stimuli, they get no > > > >feedback. If they chose "1" and gave incorrect stimuli response then > > > >they get ?Incorrect feedback with a message that says "-5 points". If > > > >they chose "2" and made the correct stimuli response- I have feedback > > > >randomly set to give them one of two messages, and one of those > > > >messages includes "-10 points" while the other includes "+10 points" > > > > >So far, so good. I have experiment designed up until this point. The > > > >problem arises when I try to present cumulative score feedback: > > > > >Within each trial, after the participant receives the first set of > > > >feedback and the corresponding points lost of gained, I need to > > > >present them with feedback that tells them their new total score. so > > > >total score - 5 points, or total score + 10 points, or total score -10 > > > >points, and this needs to carry over from one trial to the net. ?I > > > >have no idea how to do this. I started off by trying to do this with a > > > >text slide but I can't figure out how to do an inline text that can > > > >make all this happen. I am in over my head and any help would be so > > > >much appreciated. > > > > >-- > > > >You received this message because you are subscribed to the Google > > > >Groups "E-Prime" group. > > > >To post to this group, send email to e-prime at googlegroups.com. > > > >To unsubscribe from this group, send email to > > > >e-prime+unsubscribe at googlegroups.com. > > > >For more options, visit this group at > > > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Wed Oct 12 13:48:22 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Wed, 12 Oct 2011 09:48:22 -0400 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Gilis, On Wed Oct 12, 1:06 pm, gilis wrote: > Absolutely sure...No minor possible mistake that wasn't check....It's > a bag [sic] in eprime itself. In 1978, fresh out of University, I started on a programming project at Ford Motor Company in Dearborn, Michigan (USA). Time and again my programs failed, and I convinced myself that I had uncovered a true bug in the underlying system. Time and again the lead engineer told me, "There is nothing wrong with the system, go back and find the mistake in your program." And in every case he was right -- the fault always lay in my program, never in the system. And ever since then I have become very circumspect about concluding that bugs lie in the system instead of in my source code. Not long ago on this very Group, someone (was it you?) led us all on a merry chase puzzling out why their stimulus files would not load. It turned out that the files were stored remotely on a networked computer somewhere, and the subject-running station had trouble accessing that remote drive. Sheesh! So Gilis, it comes down to this -- Although E-Prime does indeed have several identifiable bugs, in this case you have almost certainly *not* found a bug in E-Prime. I.e., your problem lies somewhere in the design of your program, or in your understanding of how E-Prime works, *not* in E-Prime itself. The problem almost certainly lies someplace where you are not looking for it, probably because you are too close to the problem and keep seeing only what you want to see. Because of this, you also cannot tell us the missing detail that would help us solve this for you -- if you could see enough to state that detail, then you would have already solved this yourself. Hence, you must think "outside the box" here. And when you do find the mistake, you will slap yourself in the forehead and say, "Why didn't I see that sooner?" -- David McFarlane, Professional Faultfinder "A poor workman blames his tools." On Wed 12 Oct 2011 liwenna wrote: > mmm not sure if/why this should solve it, but sometimes simplification > is bliss... > > did you try using one textobject with three lines instead of three > separate textobjects on each side. > > [flanker1] > [flanker2] > [flanker3] > > ^ that in one textbox, rather than three. Also: press {return}, > {space} then again {return} in order to create an empty line between > two lines, if needed. > > On Oct 12, 3:09 pm, gilis wrote: >> Yes they are taken from a list, and no-no unwanted spaces, and I >> checked it more than once.... >> >> On Oct 12, 1:34 pm, liwenna wrote: >> >> >> >> >> >> >> >>> Are the flankerwords taken from a list?? Are you as sure that there >>> are no unwanted spaces in that list? >>> On Oct 12, 1:06 pm, gilis wrote: >>>> Absolutely sure...No minor possible mistake that wasn't check....It's >>>> a bag in eprime itself, I will try Meltem solution. >>>> On Oct 11, 3:58 pm, ben robinson wrote: >>>>> are you sure you don't have an extra space hidden at the beginning of >>>>> that one flanker containing "SEA"... >>>>> " [flanker]" instead of >>>>> "[flanker]" >>>>> ? >>>>> On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: >>>>>> Yes I do..as for the x alignment and etc, it's just like that of the >>>>>> other words..there should be no reason why they appear so different in >>>>>> position on the display.. >>>>>> On Oct 10, 10:43 pm, Evelina Tapia wrote: >>>>>>> Gilis, >>>>>>> under textbox properties you can specify text color, textbox >>>>>>> background color etc. You can also specify alignment there as well so >>>>>>> try that for you right display. Also, do you have separate text boxes >>>>>>> for each word or for each flanker object? There could be potential >>>>>>> word wrapping differences between the two items as well. >>>>>>> Evelina >>>>>>> On Oct 10, 11:46 am, gilis wrote: >>>>>>>> Hi, >>>>>>>> I have two flankers in my experiment display, one is on the right and >>>>>>>> the other is on the left. Each flanker is made of 3 words (separate >>>>>>>> text object for each), one above the other. The problem I get is that >>>>>>>> while on the left everything seems OK and balanced, on the right, the >>>>>>>> upper word is pushed from the beginning of the display, so while the >>>>>>>> flanker on the left side look like that: >>>>>>>> FOOD >>>>>>>> WATER >>>>>>>> FORK >>>>>>>> the flanker on the right side look like that: >>>>>>>> SEA >>>>>>>> LAND >>>>>>>> BOAT >>>>>>>> i.e., it doesn't start from the beginning of the row though it was >>>>>>>> defined to start from there..Also, I was thinking that it is a problem >>>>>>>> with the way the word is put in the list from which the text object >>>>>>>> call it-but apparently there is nothing wrong...Also, while all other >>>>>>>> words remain stable when the experiment goes from one slide to the >>>>>>>> other, the only moving word is off course the upper one (i.e., sea). >>>>>>>> Thanks in advance, >>>>>>>> Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Wed Oct 12 15:02:50 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Wed, 12 Oct 2011 11:02:50 -0400 Subject: Moving flanker to the right position In-Reply-To: <4E959AA6.6060504@msu.edu> Message-ID: I cannot stop myself to say that I totally agree with David. It is always the bug in the script somewhere. Mostly, I have the tendency to short-cut things. But I am wrong. I am successful in the situations that I start from the scratch and program it over again. I would suggest you the same. I know we all fight against time but having a solid task is better than anything in this regard. Good luck with your problem Gilis and must tell that I am not crazy about Visual basic either. Contradictory to the name it is tricky. Meltem On Wed, Oct 12, 2011 at 9:48 AM, David McFarlane wrote: > Gilis, > > On Wed Oct 12, 1:06 pm, gilis wrote: > > Absolutely sure...No minor possible mistake that wasn't check....It's > > a bag [sic] in eprime itself. > > In 1978, fresh out of University, I started on a programming project at > Ford Motor Company in Dearborn, Michigan (USA). Time and again my programs > failed, and I convinced myself that I had uncovered a true bug in the > underlying system. Time and again the lead engineer told me, "There is > nothing wrong with the system, go back and find the mistake in your > program." And in every case he was right -- the fault always lay in my > program, never in the system. And ever since then I have become very > circumspect about concluding that bugs lie in the system instead of in my > source code. > > Not long ago on this very Group, someone (was it you?) led us all on a > merry chase puzzling out why their stimulus files would not load. It turned > out that the files were stored remotely on a networked computer somewhere, > and the subject-running station had trouble accessing that remote drive. > Sheesh! > > So Gilis, it comes down to this -- Although E-Prime does indeed have > several identifiable bugs, in this case you have almost certainly *not* > found a bug in E-Prime. I.e., your problem lies somewhere in the design of > your program, or in your understanding of how E-Prime works, *not* in > E-Prime itself. The problem almost certainly lies someplace where you are > not looking for it, probably because you are too close to the problem and > keep seeing only what you want to see. Because of this, you also cannot > tell us the missing detail that would help us solve this for you -- if you > could see enough to state that detail, then you would have already solved > this yourself. > > Hence, you must think "outside the box" here. And when you do find the > mistake, you will slap yourself in the forehead and say, "Why didn't I see > that sooner?" > > -- David McFarlane, Professional Faultfinder > "A poor workman blames his tools." > > > On Wed 12 Oct 2011 liwenna wrote: > >> mmm not sure if/why this should solve it, but sometimes simplification >> is bliss... >> >> did you try using one textobject with three lines instead of three >> separate textobjects on each side. >> >> [flanker1] >> [flanker2] >> [flanker3] >> >> ^ that in one textbox, rather than three. Also: press {return}, >> {space} then again {return} in order to create an empty line between >> two lines, if needed. >> >> On Oct 12, 3:09 pm, gilis wrote: >> >>> Yes they are taken from a list, and no-no unwanted spaces, and I >>> checked it more than once.... >>> >>> On Oct 12, 1:34 pm, liwenna wrote: >>> >>> >>> >>> >>> >>> >>> >>> Are the flankerwords taken from a list?? Are you as sure that there >>>> are no unwanted spaces in that list? >>>> On Oct 12, 1:06 pm, gilis wrote: >>>> >>>>> Absolutely sure...No minor possible mistake that wasn't check....It's >>>>> a bag in eprime itself, I will try Meltem solution. >>>>> On Oct 11, 3:58 pm, ben robinson wrote: >>>>> >>>>>> are you sure you don't have an extra space hidden at the beginning of >>>>>> that one flanker containing "SEA"... >>>>>> " [flanker]" instead of >>>>>> "[flanker]" >>>>>> ? >>>>>> On Tue, Oct 11, 2011 at 4:29 AM, gilis wrote: >>>>>> >>>>>>> Yes I do..as for the x alignment and etc, it's just like that of the >>>>>>> other words..there should be no reason why they appear so different >>>>>>> in >>>>>>> position on the display.. >>>>>>> On Oct 10, 10:43 pm, Evelina Tapia wrote: >>>>>>> >>>>>>>> Gilis, >>>>>>>> under textbox properties you can specify text color, textbox >>>>>>>> background color etc. You can also specify alignment there as well >>>>>>>> so >>>>>>>> try that for you right display. Also, do you have separate text >>>>>>>> boxes >>>>>>>> for each word or for each flanker object? There could be potential >>>>>>>> word wrapping differences between the two items as well. >>>>>>>> Evelina >>>>>>>> On Oct 10, 11:46 am, gilis wrote: >>>>>>>> >>>>>>>>> Hi, >>>>>>>>> I have two flankers in my experiment display, one is on the right >>>>>>>>> and >>>>>>>>> the other is on the left. Each flanker is made of 3 words (separate >>>>>>>>> text object for each), one above the other. The problem I get is >>>>>>>>> that >>>>>>>>> while on the left everything seems OK and balanced, on the right, >>>>>>>>> the >>>>>>>>> upper word is pushed from the beginning of the display, so while >>>>>>>>> the >>>>>>>>> flanker on the left side look like that: >>>>>>>>> FOOD >>>>>>>>> WATER >>>>>>>>> FORK >>>>>>>>> the flanker on the right side look like that: >>>>>>>>> SEA >>>>>>>>> LAND >>>>>>>>> BOAT >>>>>>>>> i.e., it doesn't start from the beginning of the row though it was >>>>>>>>> defined to start from there..Also, I was thinking that it is a >>>>>>>>> problem >>>>>>>>> with the way the word is put in the list from which the text object >>>>>>>>> call it-but apparently there is nothing wrong...Also, while all >>>>>>>>> other >>>>>>>>> words remain stable when the experiment goes from one slide to the >>>>>>>>> other, the only moving word is off course the upper one (i.e., >>>>>>>>> sea). >>>>>>>>> Thanks in advance, >>>>>>>>> Gilis >>>>>>>>> >>>>>>>> > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Michiel.Spape at nottingham.ac.uk Wed Oct 12 15:13:10 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Wed, 12 Oct 2011 16:13:10 +0100 Subject: Moving flanker to the right position In-Reply-To: Message-ID: Also agreeing with David's sentiment, I would add here that 1) I had tremendous difficulty understanding what exactly the problem was, hence, no help from me. If it takes me more time to understand than solve, I run out of patience. 2) Thinking out of the box, while good advice, is rather difficult to do. A bit like forcing free will. So, more suggestions: starting from scratch; starting with another project, returning after your mind has settled. 3) if you must, you could always break down the string (in a char array, though that's hardly necessary here) and placing each letter manually on the screen, thus aligning whichever way you like. Lots of work, but not too difficult. Not to mention, follow David's advice that is normally added to each and every post: chat with PST! Best, Mich Michiel Spap? Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Meltem BALLAN Sent: 12 October 2011 16:03 To: e-prime at googlegroups.com Subject: Re: Moving flanker to the right position I cannot stop myself to say that I totally agree with David. It is always the bug in the script somewhere. Mostly, I have the tendency to short-cut things. But I am wrong. I am successful in the situations that I start from the scratch and program it over again. I would suggest you the same. I know we all fight against time but having a solid task is better than anything in this regard. Good luck with your problem Gilis and must tell that I am not crazy about Visual basic either. Contradictory to the name it is tricky. Meltem On Wed, Oct 12, 2011 at 9:48 AM, David McFarlane > wrote: Gilis, On Wed Oct 12, 1:06 pm, gilis > wrote: > Absolutely sure...No minor possible mistake that wasn't check....It's > a bag [sic] in eprime itself. In 1978, fresh out of University, I started on a programming project at Ford Motor Company in Dearborn, Michigan (USA). Time and again my programs failed, and I convinced myself that I had uncovered a true bug in the underlying system. Time and again the lead engineer told me, "There is nothing wrong with the system, go back and find the mistake in your program." And in every case he was right -- the fault always lay in my program, never in the system. And ever since then I have become very circumspect about concluding that bugs lie in the system instead of in my source code. Not long ago on this very Group, someone (was it you?) led us all on a merry chase puzzling out why their stimulus files would not load. It turned out that the files were stored remotely on a networked computer somewhere, and the subject-running station had trouble accessing that remote drive. Sheesh! So Gilis, it comes down to this -- Although E-Prime does indeed have several identifiable bugs, in this case you have almost certainly *not* found a bug in E-Prime. I.e., your problem lies somewhere in the design of your program, or in your understanding of how E-Prime works, *not* in E-Prime itself. The problem almost certainly lies someplace where you are not looking for it, probably because you are too close to the problem and keep seeing only what you want to see. Because of this, you also cannot tell us the missing detail that would help us solve this for you -- if you could see enough to state that detail, then you would have already solved this yourself. Hence, you must think "outside the box" here. And when you do find the mistake, you will slap yourself in the forehead and say, "Why didn't I see that sooner?" -- David McFarlane, Professional Faultfinder "A poor workman blames his tools." On Wed 12 Oct 2011 liwenna wrote: mmm not sure if/why this should solve it, but sometimes simplification is bliss... did you try using one textobject with three lines instead of three separate textobjects on each side. [flanker1] [flanker2] [flanker3] ^ that in one textbox, rather than three. Also: press {return}, {space} then again {return} in order to create an empty line between two lines, if needed. On Oct 12, 3:09 pm, gilis > wrote: Yes they are taken from a list, and no-no unwanted spaces, and I checked it more than once.... On Oct 12, 1:34 pm, liwenna > wrote: Are the flankerwords taken from a list?? Are you as sure that there are no unwanted spaces in that list? On Oct 12, 1:06 pm, gilis > wrote: Absolutely sure...No minor possible mistake that wasn't check....It's a bag in eprime itself, I will try Meltem solution. On Oct 11, 3:58 pm, ben robinson > wrote: are you sure you don't have an extra space hidden at the beginning of that one flanker containing "SEA"... " [flanker]" instead of "[flanker]" ? On Tue, Oct 11, 2011 at 4:29 AM, gilis > wrote: Yes I do..as for the x alignment and etc, it's just like that of the other words..there should be no reason why they appear so different in position on the display.. On Oct 10, 10:43 pm, Evelina Tapia > wrote: Gilis, under textbox properties you can specify text color, textbox background color etc. You can also specify alignment there as well so try that for you right display. Also, do you have separate text boxes for each word or for each flanker object? There could be potential word wrapping differences between the two items as well. Evelina On Oct 10, 11:46 am, gilis > wrote: Hi, I have two flankers in my experiment display, one is on the right and the other is on the left. Each flanker is made of 3 words (separate text object for each), one above the other. The problem I get is that while on the left everything seems OK and balanced, on the right, the upper word is pushed from the beginning of the display, so while the flanker on the left side look like that: FOOD WATER FORK the flanker on the right side look like that: SEA LAND BOAT i.e., it doesn't start from the beginning of the row though it was defined to start from there..Also, I was thinking that it is a problem with the way the word is put in the list from which the text object call it-but apparently there is nothing wrong...Also, while all other words remain stable when the experiment goes from one slide to the other, the only moving word is off course the upper one (i.e., sea). Thanks in advance, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Wed Oct 12 16:41:42 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Wed, 12 Oct 2011 12:41:42 -0400 Subject: incrementing the trial count Message-ID: Hi All, I have a question that I cannot figure out by myself. I am trying to add a counter in my task which is counting the total number of trials during the task. I defined a global variable as totalTrial (in User Script) and assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My dillemma is how I can integrate TrialCount with my Stimulus count. I tried as Trial=TrialCount but it did not work. Any idea? Thanks Meltem -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Michiel.Spape at nottingham.ac.uk Wed Oct 12 16:49:53 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Wed, 12 Oct 2011 17:49:53 +0100 Subject: incrementing the trial count In-Reply-To: Message-ID: Hi Meltem, Not to sound sour, but these are quite elementary questions for which I think you might really want to do a quick walk through some tutorials. For example, our very own http://step.psy.cmu.edu/materials/EPrimer.pdf has an almost exact answer to what you seem to be looking for, in one of the two last chapters. Also, the quick start is a very useful way to begin. I think, with some additional information (such as what do you mean by Stimulus count?), anybody could answer your question, but you'd really be doing yourself a favour to take two days to learn how to use the software. Sorry to be not of more use. Best, Mich Michiel Spap? Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Meltem BALLAN Sent: 12 October 2011 17:42 To: e-prime at googlegroups.com Subject: incrementing the trial count Hi All, I have a question that I cannot figure out by myself. I am trying to add a counter in my task which is counting the total number of trials during the task. I defined a global variable as totalTrial (in User Script) and assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My dillemma is how I can integrate TrialCount with my Stimulus count. I tried as Trial=TrialCount but it did not work. Any idea? Thanks Meltem -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Wed Oct 12 17:02:31 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Wed, 12 Oct 2011 13:02:31 -0400 Subject: incrementing the trial count In-Reply-To: <09DAEA8BC192C94EB62C8E71FC35A5D930D2BE74A6@EXCHANGE3.ad.nottingham.ac.uk> Message-ID: Mich, No worries. I was looking to find a source. I used the explanation in the E-PRIME documentation but did not work. I read the E-PRIMER. It must be something I am missing within the lines. Thanks Meltem On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < Michiel.Spape at nottingham.ac.uk> wrote: > Hi Meltem,**** > > Not to sound sour, but these are quite elementary questions for which I > think you might really want to do a quick walk through some tutorials. For > example, our very own http://step.psy.cmu.edu/materials/EPrimer.pdf has an > almost exact answer to what you seem to be looking for, in one of the two > last chapters. Also, the quick start is a very useful way to begin. I think, > with some additional information (such as what do you mean by Stimulus > count?), anybody could answer your question, but you?d really be doing > yourself a favour to take two days to learn how to use the software. Sorry > to be not of more use.**** > > ** ** > > Best,**** > > Mich**** > > ** ** > > *Michiel Spap?* > > *Research Fellow* > > *Perception & Action group* > > *University of Nottingham* > > *School of Psychology* > > *www.cognitology.eu*** > > ** ** > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > Behalf Of *Meltem BALLAN > *Sent:* 12 October 2011 17:42 > *To:* e-prime at googlegroups.com > *Subject:* incrementing the trial count**** > > ** ** > > Hi All, > I have a question that I cannot figure out by myself. I am trying to add a > counter in my task which is counting the total number of trials during the > task. I defined a global variable as totalTrial (in User Script) and > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > dillemma is how I can integrate TrialCount with my Stimulus count. > I tried as Trial=TrialCount but it did not work. > Any idea? > Thanks > Meltem > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160**** > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kominiarczukj at gmail.com Wed Oct 12 17:28:29 2011 From: kominiarczukj at gmail.com (fledgeling e-Prime mastah) Date: Wed, 12 Oct 2011 10:28:29 -0700 Subject: a bunch of questions: sample/cycle count, accessing different context attributes Message-ID: Hello experienced e-Prime hackers! I have a few questions that don't seem to be explained in the e-Prime documentation, but I see that experienced e-Primer's should know how to tacke :). BTW: I am using e-Prime 1, not 2, but I don't know if there is much difference between the two. The first problem is, how do I display the sample / cycle number? I found here that you use c.getAttribute("List.sample") and the same with cycle. However, how do you find the total number of samples and cycles? I found a workaround for number of samples, i.e. you get List.Order.Count, but this is a hack because apparently certain orderings alter this number. However, the cycle count is still a mystery for me.. any thoughts? My bigger worry is something else, though. I have a TrialList with an appropriate Proc performing my main experiment, and iterating over a number of samples. In each sample the subject makes decisions that will affect his earnings, which are basically taken as earnings from a single, randomly chosen, round (or sample, in e-Prime terms). Let's say my structure looks more or less like this: MainProc: ... TrialList TrialProc: .. main experiment .. endProc DeterminePay (inline script) endProc So, in the TrialProc the experiment goes on and sets an attribute in TrialList (i.e., one of the columns) to AmountWon. Then, in the script DeterminePay, which is one level above the experimental procedure, I need to read in that amount and display a message saying how much the subject earned. I tried accessing things through TrialList.getAttribute(payingRound, "AmountWon"), but turns out that this only allows one to access the ORIGINAL values in the TrialList table, not the values set by the subject during the experiment. Hence, this approach is lost, at least I can't figure out how to make it work. My second approach has the following structure: MainProc: ... DetermineRound (inline script) TrialList TrialProc: .. main experiment .. SetWinningAmount (inline script) endProc DeterminePay (inline script) endProc where I set the (random) paying round and a global attribute WinningAmount through c.SetAttrib("WinningAmount"), -1 in the DetermineRound script, then if the script SetWinningAmount detects that we reached that round (i.e., c.GetAttrib("TrialList.sample") = payingRound) it sets WinningAmount to the value won in that sample. Finally, the script DeterminePay tries to read in the WinningAmount attribute and display it. The problem with this second solution is that the attribute WinningAmount is visible in both MainProc and TrialProc, but changes made within TrialProc are not visible in MainProc; in C++ terms, it seems as if the context is passed to TrialProc by value and not by reference :). I have seen many times that people were somehow able to determine subject pay at the end, so does anyone know a workaround for this? If everything fails, I can read this manually at the end of the experiment from the data recorded by e-Prime, but being able to code it up would be much preferred :). Thanks in advance! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Wed Oct 12 21:55:25 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Wed, 12 Oct 2011 17:55:25 -0400 Subject: a bunch of questions: sample/cycle count, accessing different context attributes In-Reply-To: Message-ID: Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... I see two questions here: (1) How to find the sum of the Weights in a List (which I gather is what you mean by "total number of samples and cycles")? (2) How to pass a value to Procedures at the same or higher working/logging levels? And the answers remain the same for EP1 or EP2. So... (1) Well, based on both my own experience and information from Brandon Cernicky (one of the architects of E-Prime), E-Prime has no facility for providing the sum of Weights of a List; in fact, EP does not even have a facility for reading any of the individual Weight values. So you can only resort to a workaround, as outlined by Brandon himself long ago at http://support.pstnet.com/forum/Topic1244-5-1.aspx : create an attribute in the List to mirror the Weight values. Your program could then sum those mirrored values, etc. Of course, that puts the burden upon you to make sure that whenever you change a weight value you also change the mirrored value in the List. So let me here propose an alternative workaround that occurred to me just now. Although EP does not have a List.GetWeight method, it does have a List.SetWeight method. So just reverse Brandon's advice: Add a normal List attribute where you enter the intended weights, and then use inline code to set the List Weights using the "mirrored" values at runtime. That should be interesting. (2) This question comes up again and again and again (even this week already), and the answer is simple: You need to study Chapter 4 ("Using E-Basic") of the User's Guide that came with E-Prime, and use a global variable. But I will elaborate a bit this time. First, this has nothing to do with whether or not the "context is passed to TrialProc by value and not by reference". Rather, you simply misunderstand the concept of the EP "Context", not surprising because PST does such a poor job of explaining this (although you could start again with Chapter 4 of the User's Guide). Contrary to common impressions, Context attributes are *not* variables. Only variables are variables. And attributes propogate only downward to lower branches off of the same Procedure, they do *not* propogate upward or "sideways", not even to the next iteration of the same Procedure (because to do the next iteration you must first exit the Procedure, pop up a level, and then push down into the Procedure again). So that is the long way of saying that you want to use a global variable for this, not an attribute, and you will learn about that in Chapter 4. Attributes have an entirely different purpose, although I do not know how to describe that at the moment so this will have to suffice. -- David McFarlane, Professional Faultfinder "For a successful technology, reality must take precedence over public relations, for nature cannot be fooled." (Richard Feynman, Nobel prize-winning physicist) At 10/12/2011 01:28 PM Wednesday, you wrote: >Hello experienced e-Prime hackers! > >I have a few questions that don't seem to be explained in the e-Prime >documentation, but I see that experienced e-Primer's should know how >to tacke :). BTW: I am using e-Prime 1, not 2, but I don't know if >there is much difference between the two. > >The first problem is, how do I display the sample / cycle number? I >found here that you use c.getAttribute("List.sample") and the same >with cycle. However, how do you find the total number of samples and >cycles? I found a workaround for number of samples, i.e. you get >List.Order.Count, but this is a hack because apparently certain >orderings alter this number. However, the cycle count is still a >mystery for me.. any thoughts? > >My bigger worry is something else, though. I have a TrialList with an >appropriate Proc performing my main experiment, and iterating over a >number of samples. In each sample the subject makes decisions that >will affect his earnings, which are basically taken as earnings from a >single, randomly chosen, round (or sample, in e-Prime terms). > >Let's say my structure looks more or less like this: > > > MainProc: > ... > TrialList > TrialProc: > .. main experiment .. > endProc > DeterminePay (inline script) > endProc > >So, in the TrialProc the experiment goes on and sets an attribute in >TrialList (i.e., one of the columns) to AmountWon. Then, in the script >DeterminePay, which is one level above the experimental procedure, I >need to read in that amount and display a message saying how much the >subject earned. > >I tried accessing things through TrialList.getAttribute(payingRound, >"AmountWon"), but turns out that this only allows one to access the >ORIGINAL values in the TrialList table, not the values set by the >subject during the experiment. Hence, this approach is lost, at least >I can't figure out how to make it work. > >My second approach has the following structure: > > MainProc: > ... > DetermineRound (inline script) > TrialList > TrialProc: > .. main experiment .. > SetWinningAmount (inline script) > endProc > DeterminePay (inline script) > endProc > >where I set the (random) paying round and a global attribute >WinningAmount through > >c.SetAttrib("WinningAmount"), -1 > >in the DetermineRound script, then if the script SetWinningAmount >detects that we reached that round (i.e., >c.GetAttrib("TrialList.sample") = payingRound) it sets WinningAmount >to the value won in that sample. Finally, the script DeterminePay >tries to read in the WinningAmount attribute and display it. > >The problem with this second solution is that the attribute >WinningAmount is visible in both MainProc and TrialProc, but changes >made within TrialProc are not visible in MainProc; in C++ terms, it >seems as if the context is passed to TrialProc by value and not by >reference :). > >I have seen many times that people were somehow able to determine >subject pay at the end, so does anyone know a workaround for this? If >everything fails, I can read this manually at the end of the >experiment from the data recorded by e-Prime, but being able to code >it up would be much preferred :). > >Thanks in advance! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From kominiarczukj at gmail.com Wed Oct 12 23:42:54 2011 From: kominiarczukj at gmail.com (fledgeling e-Prime mastah) Date: Wed, 12 Oct 2011 16:42:54 -0700 Subject: a bunch of questions: sample/cycle count, accessing different context attributes In-Reply-To: <4e960cd5.04cc2a0a.2b68.2577SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Great answer. I must say, I am learning EP1 from the documentation and some tutorials, like the E-Primer and such, which unfortunately don't talk much about the coding part of it. Also, since coding ability is a bit limited (like that 'you can't find the sum of weights' part), it seems to me that one is doomed if he wants to do something that E- Prime architects did not think of, even though most people would be happy with it. It's a generic problem, so do not think of me dissing E- Prime, it does have great features. I found on PST website that you can access .sample and .cycle attributes, but they never mentioned the totals of those; in fact, they hardcoded theirs in the examples provided on the website, which is very peculiar. Is there any reason why one would not allow you to check the bounds of an array? Regarding attributes, I simply don't understand why you would have attributes.. Chapter 4 doesn't touch that very much, apart from saying that attributes are logged by default, which is what I want. From the code that I studied while writing my own thing, they seemed like global variables and were used like normal variables, actually. Similarly, accessing the elements of a List is done through attributes, so that compounds the issue for me, suggesting that somehow e-Prime's work horse is attributes, not variables. Anyways, your solution is very good and I will put it to use as soon as I can. Thanks a bunch! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Thu Oct 13 11:02:19 2011 From: liwenna at gmail.com (liwenna) Date: Thu, 13 Oct 2011 04:02:19 -0700 Subject: incrementing the trial count In-Reply-To: Message-ID: Not sure if this is what you're looking for (if I remember correctly the e-primer is quite clear on this one) but you did add an inline that increments the value assigned to totaltrial on each trial? I.e. an inline on the proc reading: totaltrial = totaltrial +1 (followed by another line to log it onto the attribute trialcount: c. SetAttrib "TrialCount", totalTrial) ? On Oct 12, 7:02?pm, Meltem BALLAN wrote: > Mich, > No worries. I was looking to find a source. I used the explanation in the > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > something I am missing within the lines. > Thanks > Meltem > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > Hi Meltem,**** > > > Not to sound sour, but these are quite elementary questions for which I > > think you might really want to do a quick walk through some tutorials. For > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhas an > > almost exact answer to what you seem to be looking for, in one of the two > > last chapters. Also, the quick start is a very useful way to begin. I think, > > with some additional information (such as what do you mean by Stimulus > > count?), anybody could answer your question, but you?d really be doing > > yourself a favour to take two days to learn how to use the software. Sorry > > to be not of more use.**** > > > ** ** > > > Best,**** > > > Mich**** > > > ** ** > > > *Michiel Spap?* > > > *Research Fellow* > > > *Perception & Action group* > > > *University of Nottingham* > > > *School of Psychology* > > > *www.cognitology.eu*** > > > ** ** > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > Behalf Of *Meltem BALLAN > > *Sent:* 12 October 2011 17:42 > > *To:* e-prime at googlegroups.com > > *Subject:* incrementing the trial count**** > > > ** ** > > > Hi All, > > I have a question that I cannot figure out by myself. I am trying to add a > > counter in my task which is counting the total number of trials during the > > task. I defined a global variable as totalTrial (in User Script) and > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > dillemma is how I can integrate TrialCount with my Stimulus count. > > I tried as Trial=TrialCount but it did not work. > > Any idea? > > Thanks > > Meltem > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160**** > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en.**** > > > ?This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 13 11:26:43 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 13 Oct 2011 12:26:43 +0100 Subject: a bunch of questions: sample/cycle count, accessing different context attributes In-Reply-To: <67721504-7c8e-4ca9-823d-bfceac2068dd@r30g2000prd.googlegroups.com> Message-ID: Hi, Just to say, sorry about the lack of coding bits and bops in the E-Primer, we'd been working to extend that, but with a target audience of students without *any* coding experience, and a limited amount of time, there's so much you can do. Secondly, I find that, unlike you, the "coding ability" in E-Prime is not limited at all, unless you want to do awfully cool stuff, like accessing databases, 3d graphics, whathaveyou, which is generally outside the scope of psychologists. If you want, and I had such a phase as well, it's really rather easy to do your whole experiment in inline, using canvas, loops, etc. At that point, it becomes quite clear why one would use attributes at all: it provides a lot of clarity, not only for yourself, but also for others. Tons of code with somewhere saying somewhere something along the lines of Fixationduration = currentTrial[reorder[trialnum]].FixDur is mindboggling. 2p. Best, M (and I think you're welcome to 'disrespect' the mighty e(vil)-prime all you want!) Michiel Spap? Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of fledgeling e-Prime mastah Sent: 13 October 2011 00:43 To: E-Prime Subject: Re: a bunch of questions: sample/cycle count, accessing different context attributes Great answer. I must say, I am learning EP1 from the documentation and some tutorials, like the E-Primer and such, which unfortunately don't talk much about the coding part of it. Also, since coding ability is a bit limited (like that 'you can't find the sum of weights' part), it seems to me that one is doomed if he wants to do something that E- Prime architects did not think of, even though most people would be happy with it. It's a generic problem, so do not think of me dissing E- Prime, it does have great features. I found on PST website that you can access .sample and .cycle attributes, but they never mentioned the totals of those; in fact, they hardcoded theirs in the examples provided on the website, which is very peculiar. Is there any reason why one would not allow you to check the bounds of an array? Regarding attributes, I simply don't understand why you would have attributes.. Chapter 4 doesn't touch that very much, apart from saying that attributes are logged by default, which is what I want. From the code that I studied while writing my own thing, they seemed like global variables and were used like normal variables, actually. Similarly, accessing the elements of a List is done through attributes, so that compounds the issue for me, suggesting that somehow e-Prime's work horse is attributes, not variables. Anyways, your solution is very good and I will put it to use as soon as I can. Thanks a bunch! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 13 11:33:36 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 13 Oct 2011 12:33:36 +0100 Subject: incrementing the trial count In-Reply-To: Message-ID: That's quite correct, but I'd suggest to Meltem: don't read it, _do_ it. Also important: start simple, see if you can first get that trial counter to work, then build it in your real experiment. Because, really, I'm not so convinced about the e-primer, but what it says in the e-prime documentation, it really should work (apart from a few isolated cases, but surely not in trial counters). Also, it sounds a bit weird perhaps, but I generally hit that F7 every 3 minutes if I'm coding something. Still no clear and helpful suggestions, sorry about that. Cheers, Mich Michiel Spap? Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of liwenna Sent: 13 October 2011 12:02 To: E-Prime Subject: Re: incrementing the trial count Not sure if this is what you're looking for (if I remember correctly the e-primer is quite clear on this one) but you did add an inline that increments the value assigned to totaltrial on each trial? I.e. an inline on the proc reading: totaltrial = totaltrial +1 (followed by another line to log it onto the attribute trialcount: c. SetAttrib "TrialCount", totalTrial) ? On Oct 12, 7:02?pm, Meltem BALLAN wrote: > Mich, > No worries. I was looking to find a source. I used the explanation in the > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > something I am missing within the lines. > Thanks > Meltem > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > Hi Meltem,**** > > > Not to sound sour, but these are quite elementary questions for which I > > think you might really want to do a quick walk through some tutorials. For > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhas an > > almost exact answer to what you seem to be looking for, in one of the two > > last chapters. Also, the quick start is a very useful way to begin. I think, > > with some additional information (such as what do you mean by Stimulus > > count?), anybody could answer your question, but you'd really be doing > > yourself a favour to take two days to learn how to use the software. Sorry > > to be not of more use.**** > > > ** ** > > > Best,**** > > > Mich**** > > > ** ** > > > *Michiel Spap?* > > > *Research Fellow* > > > *Perception & Action group* > > > *University of Nottingham* > > > *School of Psychology* > > > *www.cognitology.eu*** > > > ** ** > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > Behalf Of *Meltem BALLAN > > *Sent:* 12 October 2011 17:42 > > *To:* e-prime at googlegroups.com > > *Subject:* incrementing the trial count**** > > > ** ** > > > Hi All, > > I have a question that I cannot figure out by myself. I am trying to add a > > counter in my task which is counting the total number of trials during the > > task. I defined a global variable as totalTrial (in User Script) and > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > dillemma is how I can integrate TrialCount with my Stimulus count. > > I tried as Trial=TrialCount but it did not work. > > Any idea? > > Thanks > > Meltem > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160**** > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en.**** > > > ?This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Thu Oct 13 12:00:41 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Thu, 13 Oct 2011 08:00:41 -0400 Subject: incrementing the trial count In-Reply-To: Message-ID: Hi All, Thank you.I did all you described but somehow I could not call from another function. I am running infant subjects. So it is not a case for me to complete the task 60% of the time. Therefore, I wanna count the max number of trials. If it is more than 60% I wanna increase the subject number. I followed instructions but increment did not work. Thanks Meltem On Oct 13, 2011 7:02 AM, "liwenna" wrote: > Not sure if this is what you're looking for (if I remember correctly > the e-primer is quite clear on this one) but you did add an inline > that increments the value assigned to totaltrial on each trial? I.e. > an inline on the proc reading: > > totaltrial = totaltrial +1 > (followed by another line to log it onto the attribute trialcount: c. > SetAttrib "TrialCount", totalTrial) ? > > On Oct 12, 7:02 pm, Meltem BALLAN wrote: > > Mich, > > No worries. I was looking to find a source. I used the explanation in the > > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > > something I am missing within the lines. > > Thanks > > Meltem > > > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > > Hi Meltem,**** > > > > > Not to sound sour, but these are quite elementary questions for which I > > > think you might really want to do a quick walk through some tutorials. > For > > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhasan > > > almost exact answer to what you seem to be looking for, in one of the > two > > > last chapters. Also, the quick start is a very useful way to begin. I > think, > > > with some additional information (such as what do you mean by Stimulus > > > count?), anybody could answer your question, but you?d really be doing > > > yourself a favour to take two days to learn how to use the software. > Sorry > > > to be not of more use.**** > > > > > ** ** > > > > > Best,**** > > > > > Mich**** > > > > > ** ** > > > > > *Michiel Spap?* > > > > > *Research Fellow* > > > > > *Perception & Action group* > > > > > *University of Nottingham* > > > > > *School of Psychology* > > > > > *www.cognitology.eu*** > > > > > ** ** > > > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > > Behalf Of *Meltem BALLAN > > > *Sent:* 12 October 2011 17:42 > > > *To:* e-prime at googlegroups.com > > > *Subject:* incrementing the trial count**** > > > > > ** ** > > > > > Hi All, > > > I have a question that I cannot figure out by myself. I am trying to > add a > > > counter in my task which is counting the total number of trials during > the > > > task. I defined a global variable as totalTrial (in User Script) and > > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > > dillemma is how I can integrate TrialCount with my Stimulus count. > > > I tried as Trial=TrialCount but it did not work. > > > Any idea? > > > Thanks > > > Meltem > > > > > -- > > > Meltem Ballan, PhD > > > Department of Psychiatry, CB# 7160 > > > University of North Carolina School of Medicine > > > 7023 Neurosciences Hospital > > > Chapel Hill, NC 27599-7160**** > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to > > > e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en.**** > > > > > This message and any attachment are intended solely for the addressee > and > > > may contain confidential information. If you have received this message > in > > > error, please send it back to me, and immediately delete it. Please do > not > > > use, copy or disclose the information contained in this message or in > any > > > attachment. Any views or opinions expressed by the author of this email > do > > > not necessarily reflect the views of the University of Nottingham. > > > > > This message has been checked for viruses but the contents of an > attachment > > > may still contain software viruses which could damage your computer > system: > > > you are advised to perform your own checks. Email communications with > the > > > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to > > > e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. > > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From liwenna at gmail.com Thu Oct 13 12:31:33 2011 From: liwenna at gmail.com (liwenna) Date: Thu, 13 Oct 2011 05:31:33 -0700 Subject: incrementing the trial count In-Reply-To: Message-ID: Sorry to say but your last post is kinda puzzling... do you intend to merely count the number of trials? (as I though you wanted) Or do you want to increase the number of trials based on some criteria? Surely you don't want to change the subject number, like you wrote above?? On Oct 13, 2:00?pm, Meltem BALLAN wrote: > Hi All, > Thank you.I did all you described but somehow I could not call from another > function. I am running infant subjects. So it is not a case for me to > complete the task 60% of the time. Therefore, I wanna count the max number > of trials. If it is more than 60% ?I wanna increase the subject number. I > followed instructions but ?increment did not work. > Thanks > Meltem > On Oct 13, 2011 7:02 AM, "liwenna" wrote: > > > > > > > > > Not sure if this is what you're looking for (if I remember correctly > > the e-primer is quite clear on this one) but you did add an inline > > that increments the value assigned to totaltrial on each trial? I.e. > > an inline on the proc reading: > > > totaltrial = totaltrial +1 > > (followed by another line to log it onto the attribute trialcount: c. > > SetAttrib "TrialCount", totalTrial) ?? > > > On Oct 12, 7:02 pm, Meltem BALLAN wrote: > > > Mich, > > > No worries. I was looking to find a source. I used the explanation in the > > > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > > > something I am missing within the lines. > > > Thanks > > > Meltem > > > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > > > Hi Meltem,**** > > > > > Not to sound sour, but these are quite elementary questions for which I > > > > think you might really want to do a quick walk through some tutorials. > > For > > > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhasan > > > > almost exact answer to what you seem to be looking for, in one of the > > two > > > > last chapters. Also, the quick start is a very useful way to begin. I > > think, > > > > with some additional information (such as what do you mean by Stimulus > > > > count?), anybody could answer your question, but you?d really be doing > > > > yourself a favour to take two days to learn how to use the software. > > Sorry > > > > to be not of more use.**** > > > > > ** ** > > > > > Best,**** > > > > > Mich**** > > > > > ** ** > > > > > *Michiel Spap?* > > > > > *Research Fellow* > > > > > *Perception & Action group* > > > > > *University of Nottingham* > > > > > *School of Psychology* > > > > > *www.cognitology.eu*** > > > > > ** ** > > > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > > > Behalf Of *Meltem BALLAN > > > > *Sent:* 12 October 2011 17:42 > > > > *To:* e-prime at googlegroups.com > > > > *Subject:* incrementing the trial count**** > > > > > ** ** > > > > > Hi All, > > > > I have a question that I cannot figure out by myself. I am trying to > > add a > > > > counter in my task which is counting the total number of trials during > > the > > > > task. I defined a global variable as totalTrial (in User Script) and > > > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > > > dillemma is how I can integrate TrialCount with my Stimulus count. > > > > I tried as Trial=TrialCount but it did not work. > > > > Any idea? > > > > Thanks > > > > Meltem > > > > > -- > > > > Meltem Ballan, PhD > > > > Department of Psychiatry, CB# 7160 > > > > University of North Carolina School of Medicine > > > > 7023 Neurosciences Hospital > > > > Chapel Hill, NC 27599-7160**** > > > > > -- > > > > You received this message because you are subscribed to the Google > > Groups > > > > "E-Prime" group. > > > > To post to this group, send email to e-prime at googlegroups.com. > > > > To unsubscribe from this group, send email to > > > > e-prime+unsubscribe at googlegroups.com. > > > > For more options, visit this group at > > > >http://groups.google.com/group/e-prime?hl=en.**** > > > > > ?This message and any attachment are intended solely for the addressee > > and > > > > may contain confidential information. If you have received this message > > in > > > > error, please send it back to me, and immediately delete it. Please do > > not > > > > use, copy or disclose the information contained in this message or in > > any > > > > attachment. Any views or opinions expressed by the author of this email > > do > > > > not necessarily reflect the views of the University of Nottingham. > > > > > This message has been checked for viruses but the contents of an > > attachment > > > > may still contain software viruses which could damage your computer > > system: > > > > you are advised to perform your own checks. Email communications with > > the > > > > University of Nottingham may be monitored as permitted by UK > > legislation. > > > > > -- > > > > You received this message because you are subscribed to the Google > > Groups > > > > "E-Prime" group. > > > > To post to this group, send email to e-prime at googlegroups.com. > > > > To unsubscribe from this group, send email to > > > > e-prime+unsubscribe at googlegroups.com. > > > > For more options, visit this group at > > > >http://groups.google.com/group/e-prime?hl=en. > > > > -- > > > Meltem Ballan, PhD > > > Department of Psychiatry, CB# 7160 > > > University of North Carolina School of Medicine > > > 7023 Neurosciences Hospital > > > Chapel Hill, NC 27599-7160 > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 13 12:41:49 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 13 Oct 2011 13:41:49 +0100 Subject: incrementing the trial count In-Reply-To: Message-ID: Hi, So, do I understand correct you want to use the same e-prime data-file for more than one subject? Any good reason for that? Normally, I'd say, just rerun the experiment, type in subject number, and from the .edat files, filter out those subjects who have few data (in E-DataAid, count number of trials, write those subjects with few trials on a piece of paper, and filter those out from analysis) - I think that's pretty much what we always do (whether subjects be infants or psych students). What you seem to want to do is rather counterintuitive: if a participant completes 60% of trials, at which point you want to increase subject number, why should this participant suddenly have 2 subject numbers (so that subject with the next subject number, which is actually the same subject, now has 40% of trials at most)? Why not just create a filter? You can even do that online: Create user script (global, alt+5, user tab) variables: Dim TotalTrials as integer Dim PropDone as double Initialise variable (only TotalTrials, because initialising in basic also sets to 0), by adding to beginning of experiment (upmost procedure, before everything else): TotalTrials = 300 'or whatever is the maximum Check to see, during each trial, how far the subject is, by adding to end of trial procedure: PropDone = PropDone + 1 / TotalTrials c.SetAttrib "PropDone", PropDone voila, and by finding the maximum of propdone, per subject, you can find how many trials the participant has done. You can take it from there, coding the participant number, for whatever reason, in there as well (I'd just suggest not to use the subject number attribute) and increasing it if need be. If, on the other hand, you're doing some infinite loop thing, where you want ALL infants in 1 edat, perhaps it might be a good idea to build in a sneaky key. So that, if you have some textdisplay, and you press X (for next), a variable is updated: User script: Dim CurrentParticipant as Integer Initialise: currentparticipant = c.GetAttrib ("Subject") After critical stimulus: If myCriticalStimulus.RESP = X then currentparticipant = currentparticipant + 1 c.SetAttrib "CurrentParticipant", currentparticipant Something like that. Hope that helps. Best, Mich Michiel Spap? Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Meltem BALLAN Sent: 13 October 2011 13:01 To: e-prime at googlegroups.com Subject: Re: incrementing the trial count Hi All, Thank you.I did all you described but somehow I could not call from another function. I am running infant subjects. So it is not a case for me to complete the task 60% of the time. Therefore, I wanna count the max number of trials. If it is more than 60% I wanna increase the subject number. I followed instructions but increment did not work. Thanks Meltem On Oct 13, 2011 7:02 AM, "liwenna" > wrote: Not sure if this is what you're looking for (if I remember correctly the e-primer is quite clear on this one) but you did add an inline that increments the value assigned to totaltrial on each trial? I.e. an inline on the proc reading: totaltrial = totaltrial +1 (followed by another line to log it onto the attribute trialcount: c. SetAttrib "TrialCount", totalTrial) ? On Oct 12, 7:02 pm, Meltem BALLAN > wrote: > Mich, > No worries. I was looking to find a source. I used the explanation in the > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > something I am missing within the lines. > Thanks > Meltem > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > Hi Meltem,**** > > > Not to sound sour, but these are quite elementary questions for which I > > think you might really want to do a quick walk through some tutorials. For > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhas an > > almost exact answer to what you seem to be looking for, in one of the two > > last chapters. Also, the quick start is a very useful way to begin. I think, > > with some additional information (such as what do you mean by Stimulus > > count?), anybody could answer your question, but you'd really be doing > > yourself a favour to take two days to learn how to use the software. Sorry > > to be not of more use.**** > > > ** ** > > > Best,**** > > > Mich**** > > > ** ** > > > *Michiel Spap?* > > > *Research Fellow* > > > *Perception & Action group* > > > *University of Nottingham* > > > *School of Psychology* > > > *www.cognitology.eu*** > > > ** ** > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > Behalf Of *Meltem BALLAN > > *Sent:* 12 October 2011 17:42 > > *To:* e-prime at googlegroups.com > > *Subject:* incrementing the trial count**** > > > ** ** > > > Hi All, > > I have a question that I cannot figure out by myself. I am trying to add a > > counter in my task which is counting the total number of trials during the > > task. I defined a global variable as totalTrial (in User Script) and > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > dillemma is how I can integrate TrialCount with my Stimulus count. > > I tried as Trial=TrialCount but it did not work. > > Any idea? > > Thanks > > Meltem > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160**** > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en.**** > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > -- > > You received this message because you are subscribed to the Google Groups > > "E-Prime" group. > > To post to this group, send email to e-prime at googlegroups.com. > > To unsubscribe from this group, send email to > > e-prime+unsubscribe at googlegroups.com. > > For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Thu Oct 13 17:08:24 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Thu, 13 Oct 2011 13:08:24 -0400 Subject: incrementing the trial count In-Reply-To: <09DAEA8BC192C94EB62C8E71FC35A5D930D2BE75CC@EXCHANGE3.ad.nottingham.ac.uk> Message-ID: Hi Mich, Thank you very much for the trick. You are right that I can enter the subject numbers manually during the experiment (which I have been doing until now). When I am not here it gets mixed up as the person running the subject does not know how to change the subject name or too busy to remember it. Therefore, I decided to minimize the user role in the task. Although the task is a passive task I am using the Edat files to cross check the system delays, netstation triggers, etc. I feel like it is essential to cross check everything. I also like the idea decreasing the number of counter (in e-PRIMER). I was thinking to implement that logic. I know the total number of trials I wanna run . Therefore, I can define a counter and count down. We will all see how it goes down to the road as I have a lot of challenges which will be discussed in the forum. Cheers, Meltem On Thu, Oct 13, 2011 at 8:41 AM, Michiel Spape < Michiel.Spape at nottingham.ac.uk> wrote: > Hi,**** > > So, do I understand correct you want to use the same e-prime data-file for > more than one subject? Any good reason for that? Normally, I?d say, just > rerun the experiment, type in subject number, and from the .edat files, > filter out those subjects who have few data (in E-DataAid, count number of > trials, write those subjects with few trials on a piece of paper, and filter > those out from analysis) ? I think that?s pretty much what we always do > (whether subjects be infants or psych students). What you seem to want to do > is rather counterintuitive: if a participant completes 60% of trials, at > which point you want to increase subject number, why should this participant > suddenly have 2 subject numbers (so that subject with the next subject > number, which is actually the same subject, now has 40% of trials at most)? > Why not just create a filter? You can even do that online:**** > > Create user script (global, alt+5, user tab) variables:**** > > Dim TotalTrials as integer**** > > Dim PropDone as double**** > > Initialise variable (only TotalTrials, because initialising in basic also > sets to 0), by adding to beginning of experiment (upmost procedure, before > everything else):**** > > TotalTrials = 300 ?or whatever is the maximum**** > > Check to see, during each trial, how far the subject is, by adding to end > of trial procedure:**** > > PropDone = PropDone + 1 / TotalTrials**** > > c.SetAttrib ?PropDone?, PropDone**** > > ** ** > > voila, and by finding the maximum of propdone, per subject, you can find > how many trials the participant has done. You can take it from there, coding > the participant number, for whatever reason, in there as well (I?d just > suggest not to use the subject number attribute) and increasing it if need > be.**** > > ** ** > > If, on the other hand, you?re doing some infinite loop thing, where you > want ALL infants in 1 edat, perhaps it might be a good idea to build in a > sneaky key. So that, if you have some textdisplay, and you press X (for > next), a variable is updated:**** > > User script:**** > > Dim CurrentParticipant as Integer**** > > Initialise:**** > > currentparticipant = c.GetAttrib (?Subject?)**** > > ** ** > > After critical stimulus:**** > > If myCriticalStimulus.RESP = X then currentparticipant = currentparticipant > + 1**** > > c.SetAttrib ?CurrentParticipant?, currentparticipant**** > > ** ** > > Something like that. Hope that helps.**** > > Best,**** > > Mich**** > > ** ** > > ** ** > > ** ** > > *Michiel Spap?* > > *Research Fellow* > > *Perception & Action group* > > *University of Nottingham* > > *School of Psychology* > > *www.cognitology.eu*** > > ** ** > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > Behalf Of *Meltem BALLAN > *Sent:* 13 October 2011 13:01 > *To:* e-prime at googlegroups.com > > *Subject:* Re: incrementing the trial count**** > > ** ** > > Hi All, > > Thank you.I did all you described but somehow I could not call from another > function. I am running infant subjects. So it is not a case for me to > complete the task 60% of the time. Therefore, I wanna count the max number > of trials. If it is more than 60% I wanna increase the subject number. I > followed instructions but increment did not work. > Thanks > Meltem**** > > On Oct 13, 2011 7:02 AM, "liwenna" wrote:**** > > Not sure if this is what you're looking for (if I remember correctly > the e-primer is quite clear on this one) but you did add an inline > that increments the value assigned to totaltrial on each trial? I.e. > an inline on the proc reading: > > totaltrial = totaltrial +1 > (followed by another line to log it onto the attribute trialcount: c. > SetAttrib "TrialCount", totalTrial) ? > > On Oct 12, 7:02 pm, Meltem BALLAN wrote: > > Mich, > > No worries. I was looking to find a source. I used the explanation in the > > E-PRIME documentation but did not work. I read the E-PRIMER. It must be > > something I am missing within the lines. > > Thanks > > Meltem > > > > On Wed, Oct 12, 2011 at 12:49 PM, Michiel Spape < > > > > > > > > > > > > > > > > > > > > Michiel.Sp... at nottingham.ac.uk> wrote: > > > Hi Meltem,**** > > > > > Not to sound sour, but these are quite elementary questions for which I > > > think you might really want to do a quick walk through some tutorials. > For > > > example, our very ownhttp://step.psy.cmu.edu/materials/EPrimer.pdfhasan > > > almost exact answer to what you seem to be looking for, in one of the > two > > > last chapters. Also, the quick start is a very useful way to begin. I > think, > > > with some additional information (such as what do you mean by Stimulus > > > count?), anybody could answer your question, but you?d really be doing > > > yourself a favour to take two days to learn how to use the software. > Sorry > > > to be not of more use.**** > > > > > ** ** > > > > > Best,**** > > > > > Mich**** > > > > > ** ** > > > > > *Michiel Spap?* > > > > > *Research Fellow* > > > > > *Perception & Action group* > > > > > *University of Nottingham* > > > > > *School of Psychology* > > > > > *www.cognitology.eu*** > > > > > ** ** > > > > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > > > Behalf Of *Meltem BALLAN > > > *Sent:* 12 October 2011 17:42 > > > *To:* e-prime at googlegroups.com > > > *Subject:* incrementing the trial count**** > > > > > ** ** > > > > > Hi All, > > > I have a question that I cannot figure out by myself. I am trying to > add a > > > counter in my task which is counting the total number of trials during > the > > > task. I defined a global variable as totalTrial (in User Script) and > > > assigned it as TrialCount (c. SetAttrib "TrialCount", totalTrial). My > > > dillemma is how I can integrate TrialCount with my Stimulus count. > > > I tried as Trial=TrialCount but it did not work. > > > Any idea? > > > Thanks > > > Meltem > > > > > -- > > > Meltem Ballan, PhD > > > Department of Psychiatry, CB# 7160 > > > University of North Carolina School of Medicine > > > 7023 Neurosciences Hospital > > > Chapel Hill, NC 27599-7160**** > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to > > > e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en.**** > > > > > This message and any attachment are intended solely for the addressee > and > > > may contain confidential information. If you have received this message > in > > > error, please send it back to me, and immediately delete it. Please do > not > > > use, copy or disclose the information contained in this message or in > any > > > attachment. Any views or opinions expressed by the author of this email > do > > > not necessarily reflect the views of the University of Nottingham. > > > > > This message has been checked for viruses but the contents of an > attachment > > > may still contain software viruses which could damage your computer > system: > > > you are advised to perform your own checks. Email communications with > the > > > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "E-Prime" group. > > > To post to this group, send email to e-prime at googlegroups.com. > > > To unsubscribe from this group, send email to > > > e-prime+unsubscribe at googlegroups.com. > > > For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. > > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Erika_Nyhus at brown.edu Thu Oct 13 17:18:34 2011 From: Erika_Nyhus at brown.edu (Erika Nyhus) Date: Thu, 13 Oct 2011 13:18:34 -0400 Subject: .edat file not created Message-ID: My experimental program is having the following problem. The text file is created, but not the .edat file and I am getting an error saying, "Reading txt file- variable name is same as level name". And when I try to recover the .edat file using E-Recovery the resulting .edat file only contains one row. I think it might have to do with naming one of my variables Block. Please let me know if there is anyway to 1) modify my code to be able to have it automatically generate an .edat file and 2) convert the txt files I have to .edat. I have attached the code, txt, and .edat files. -- Erika Nyhus, Ph.D. Cognitive, Linguistic, and Psychological Sciences Brown University 190 Thayer St. Providence, RI 02912-1821 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- ?*** Header Start *** VersionPersist: 1 LevelName: Session LevelName: Block LevelName: Trial LevelName: SubTrial LevelName: LogLevel5 LevelName: LogLevel6 LevelName: LogLevel7 LevelName: LogLevel8 LevelName: LogLevel9 LevelName: LogLevel10 Experiment: Kahn5Test SessionDate: 09-16-2011 SessionTime: 11:08:49 SessionTimeUtc: 3:08:49 PM Subject: 1 Session: 1 Group: 1 Name: Age: 20 Sex: male Handedness: right ResearcherID: 1 RandomSeed: -1144062026 Display.RefreshRate: 60.020 *** Header End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1 Block: 1 DelDur: NullDur: Word: DANGEROUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 67 Running: TestList TestList.Cycle: 1 TestList.Sample: 1 TrialCount: 1 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 19196 TestWord.DurationError: 99 TestWord.RTTime: 21077 TestWord.ACC: 0 TestWord.RT: 1881 TestWord.RESP: {-3}z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 19945 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 19949 Keyrelease: 21683 ResponseTime: 1734 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 2 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 2 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 3 Block: 1 DelDur: NullDur: Word: BRAINY ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 27 Running: TestList TestList.Cycle: 1 TestList.Sample: 3 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 4 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 4 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 5 Block: 1 DelDur: NullDur: Word: CAUTIONARY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 2 Running: TestList TestList.Cycle: 1 TestList.Sample: 5 TrialCount: 2 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 24760 TestWord.DurationError: 100 TestWord.RTTime: 25611 TestWord.ACC: 1 TestWord.RT: 851 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 25510 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 25611 Keyrelease: 27257 ResponseTime: 1646 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 6 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 6 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 7 Block: 1 DelDur: NullDur: Word: DRY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 97 Running: TestList TestList.Cycle: 1 TestList.Sample: 7 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 8 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 8 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 9 Block: 1 DelDur: NullDur: PlaceList: 87 Word: FOOLISH ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 9 TrialCount: 3 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 35340 TestWord.DurationError: 100 TestWord.RTTime: 36947 TestWord.ACC: 1 TestWord.RT: 1607 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 36090 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 36947 Keyrelease: 37831 ResponseTime: 884 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 10 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 10 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 11 Block: 1 DelDur: NullDur: PlaceList: 56 Word: ABLAZE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 11 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 12 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 12 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 13 Block: 1 DelDur: NullDur: Word: DARK ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 100 Running: TestList TestList.Cycle: 1 TestList.Sample: 13 TrialCount: 4 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 40406 TestWord.DurationError: 99 TestWord.RTTime: 41811 TestWord.ACC: 0 TestWord.RT: 1405 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 41155 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 41707 Keyrelease: 42894 ResponseTime: 1187 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 14 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 14 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 15 Block: 1 DelDur: NullDur: Word: ANXIOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 144 Running: TestList TestList.Cycle: 1 TestList.Sample: 15 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 16 Block: 1 DelDur: NullDur: Word: SLEEPY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 87 Running: TestList TestList.Cycle: 1 TestList.Sample: 16 TrialCount: 5 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 44454 TestWord.DurationError: 100 TestWord.RTTime: 45771 TestWord.ACC: 0 TestWord.RT: 1317 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 45204 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 45771 Keyrelease: 46950 ResponseTime: 1179 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 17 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 17 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 18 Block: 1 DelDur: NullDur: Word: IMPOSING ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 188 Running: TestList TestList.Cycle: 1 TestList.Sample: 18 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 19 Block: 1 DelDur: NullDur: PlaceList: 12 Word: LOVABLE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 19 TrialCount: 6 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 53518 TestWord.DurationError: 99 TestWord.RTTime: 54251 TestWord.ACC: 0 TestWord.RT: 733 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 54268 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 54272 Keyrelease: 56014 ResponseTime: 1742 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 20 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 20 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 21 Block: 1 DelDur: NullDur: PlaceList: 95 Word: AMPHIBIOUS ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 21 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 22 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 22 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 23 Block: 1 DelDur: NullDur: Word: MODEST ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 25 Running: TestList TestList.Cycle: 1 TestList.Sample: 23 TrialCount: 7 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 60099 TestWord.DurationError: 100 TestWord.RTTime: 61491 TestWord.ACC: 1 TestWord.RT: 1392 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 60849 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 61491 Keyrelease: 62590 ResponseTime: 1098 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 24 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 24 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 25 Block: 1 DelDur: NullDur: Word: SIAMESE ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 51 Running: TestList TestList.Cycle: 1 TestList.Sample: 25 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 26 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 26 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 27 Block: 1 DelDur: NullDur: PlaceList: 53 Word: SLUMMY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 27 TrialCount: 8 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 65664 TestWord.DurationError: 100 TestWord.RTTime: 67139 TestWord.ACC: 0 TestWord.RT: 1475 TestWord.RESP: x{-x} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 66414 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 66812 Keyrelease: 68152 ResponseTime: 1340 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 28 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 28 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 29 Block: 1 DelDur: NullDur: PlaceList: 85 Word: CELTIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 29 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 30 Block: 1 DelDur: NullDur: PlaceList: 75 Word: MYTHICAL ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 30 TrialCount: 9 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 69713 TestWord.DurationError: 99 TestWord.RTTime: 70771 TestWord.ACC: 1 TestWord.RT: 1058 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 70463 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 70772 Keyrelease: 72203 ResponseTime: 1431 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 31 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 31 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 32 Block: 1 DelDur: NullDur: PlaceList: 7 Word: PATHOLOGIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 32 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 33 Block: 1 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 33 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 34 Block: 1 DelDur: NullDur: PlaceList: 10 Word: AMATEURISH ListOrigin: List7B Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 34 TrialCount: 10 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 83275 TestWord.DurationError: 100 TestWord.RTTime: 84596 TestWord.ACC: 1 TestWord.RT: 1321 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 84025 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 84596 Keyrelease: 85775 ResponseTime: 1179 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 35 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 35 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 36 Block: 1 DelDur: NullDur: PlaceList: 73 Word: GRAY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 36 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 37 Block: 1 DelDur: NullDur: Word: NOTORIOUS ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 38 Running: TestList TestList.Cycle: 1 TestList.Sample: 37 TrialCount: 11 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 92339 TestWord.DurationError: 100 TestWord.RTTime: 93580 TestWord.ACC: 1 TestWord.RT: 1241 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 93089 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 93580 Keyrelease: 94838 ResponseTime: 1258 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 38 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 38 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 39 Block: 1 DelDur: NullDur: Word: ASYMMETRIC ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 80 Running: TestList TestList.Cycle: 1 TestList.Sample: 39 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 40 Block: 1 DelDur: NullDur: Word: HYSTERICAL ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 87 Running: TestList TestList.Cycle: 1 TestList.Sample: 40 TrialCount: 12 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 102403 TestWord.DurationError: 99 TestWord.RTTime: 103420 TestWord.ACC: 0 TestWord.RT: 1017 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 103152 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 103420 Keyrelease: 104892 ResponseTime: 1472 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 41 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 41 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 42 Block: 1 DelDur: NullDur: Word: UNBECOMING ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 63 Running: TestList TestList.Cycle: 1 TestList.Sample: 42 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 43 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 43 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 44 Block: 1 DelDur: NullDur: Word: UNHEALTHY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 9 Running: TestList TestList.Cycle: 1 TestList.Sample: 44 TrialCount: 13 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 108967 TestWord.DurationError: 100 TestWord.RTTime: 110252 TestWord.ACC: 1 TestWord.RT: 1285 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 109717 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 110252 Keyrelease: 111456 ResponseTime: 1204 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 45 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 45 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 46 Block: 1 DelDur: NullDur: Word: EPIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 81 Running: TestList TestList.Cycle: 1 TestList.Sample: 46 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 47 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 47 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 48 Block: 1 DelDur: NullDur: Word: PATERNAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 176 Running: TestList TestList.Cycle: 1 TestList.Sample: 48 TrialCount: 14 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 114032 TestWord.DurationError: 100 TestWord.RTTime: 115260 TestWord.ACC: 1 TestWord.RT: 1228 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 114782 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 115260 Keyrelease: 116531 ResponseTime: 1271 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 49 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 49 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 50 Block: 1 DelDur: NullDur: Word: SNOWY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 11 Running: TestList TestList.Cycle: 1 TestList.Sample: 50 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 51 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 51 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 52 Block: 1 DelDur: NullDur: Word: EXTERIOR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 15 Running: TestList TestList.Cycle: 1 TestList.Sample: 52 TrialCount: 15 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 118614 TestWord.DurationError: 100 TestWord.RTTime: 119532 TestWord.ACC: 1 TestWord.RT: 918 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 119364 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 119532 Keyrelease: 121112 ResponseTime: 1580 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 53 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 53 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 54 Block: 1 DelDur: NullDur: Word: GAUDY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 138 Running: TestList TestList.Cycle: 1 TestList.Sample: 54 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 55 Block: 1 DelDur: NullDur: Word: DROLL ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 2 Running: TestList TestList.Cycle: 1 TestList.Sample: 55 TrialCount: 16 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 122680 TestWord.DurationError: 99 TestWord.RTTime: 124156 TestWord.ACC: 1 TestWord.RT: 1476 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 123429 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 124156 Keyrelease: 125175 ResponseTime: 1019 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 56 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 56 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 57 Block: 1 DelDur: NullDur: Word: BABYISH ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 72 Running: TestList TestList.Cycle: 1 TestList.Sample: 57 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 58 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 58 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 59 Block: 1 DelDur: NullDur: Word: PHALLIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 28 Running: TestList TestList.Cycle: 1 TestList.Sample: 59 TrialCount: 17 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 134759 TestWord.DurationError: 100 TestWord.RTTime: 135460 TestWord.ACC: 1 TestWord.RT: 701 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 135509 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 135513 Keyrelease: 137252 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 60 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 60 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 61 Block: 1 DelDur: NullDur: Word: WINTRY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 7 Running: TestList TestList.Cycle: 1 TestList.Sample: 61 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 62 Block: 1 DelDur: NullDur: PlaceList: 27 Word: DELINQUENT ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 62 TrialCount: 18 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 139808 TestWord.DurationError: 99 TestWord.RTTime: 141076 TestWord.ACC: 0 TestWord.RT: 1268 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 140557 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 141077 Keyrelease: 142296 ResponseTime: 1219 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 63 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 63 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 64 Block: 1 DelDur: NullDur: PlaceList: 36 Word: ANCIENT ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 64 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 65 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 65 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 66 Block: 1 DelDur: NullDur: Word: WEIRD ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 140 Running: TestList TestList.Cycle: 1 TestList.Sample: 66 TrialCount: 19 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 144873 TestWord.DurationError: 99 TestWord.RTTime: 145548 TestWord.ACC: 1 TestWord.RT: 675 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 145622 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 145626 Keyrelease: 147368 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 67 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 67 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 68 Block: 1 DelDur: NullDur: Word: MANLY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 106 Running: TestList TestList.Cycle: 1 TestList.Sample: 68 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 69 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 69 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 70 Block: 1 DelDur: NullDur: Word: FINAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 99 Running: TestList TestList.Cycle: 1 TestList.Sample: 70 TrialCount: 20 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 149938 TestWord.DurationError: 99 TestWord.RTTime: 150660 TestWord.ACC: 1 TestWord.RT: 722 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 150687 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 150691 Keyrelease: 152431 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 71 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 71 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 72 Block: 1 DelDur: NullDur: Word: DETECTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 171 Running: TestList TestList.Cycle: 1 TestList.Sample: 72 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 73 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 73 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 74 Block: 1 DelDur: NullDur: PlaceList: 76 Word: DREAMY ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 74 TrialCount: 21 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 160001 TestWord.DurationError: 100 TestWord.RTTime: 161101 TestWord.ACC: 0 TestWord.RT: 1100 TestWord.RESP: z{-z} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 160751 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 160989 Keyrelease: 162490 ResponseTime: 1501 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 75 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 75 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 76 Block: 1 DelDur: NullDur: PlaceList: 68 Word: VIETNAMESE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 76 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 77 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 77 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 78 Block: 1 DelDur: NullDur: PlaceList: 55 Word: HEINOUS ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 78 TrialCount: 22 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 170065 TestWord.DurationError: 99 TestWord.RTTime: 171501 TestWord.ACC: 1 TestWord.RT: 1436 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 170814 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 171501 Keyrelease: 172557 ResponseTime: 1056 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 79 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 79 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 80 Block: 1 DelDur: NullDur: PlaceList: 11 Word: JEWISH ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 80 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 81 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 81 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 82 Block: 1 DelDur: NullDur: Word: EARTHY ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 18 Running: TestList TestList.Cycle: 1 TestList.Sample: 82 TrialCount: 23 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 178629 TestWord.DurationError: 99 TestWord.RTTime: 179333 TestWord.ACC: 1 TestWord.RT: 704 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 179378 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 179382 Keyrelease: 181121 ResponseTime: 1739 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 83 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 83 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 84 Block: 1 DelDur: NullDur: Word: TAME ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 77 Running: TestList TestList.Cycle: 1 TestList.Sample: 84 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 85 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 85 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 86 Block: 1 DelDur: NullDur: Word: MESSY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 133 Running: TestList TestList.Cycle: 1 TestList.Sample: 86 TrialCount: 24 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 183194 TestWord.DurationError: 99 TestWord.RTTime: 184493 TestWord.ACC: 0 TestWord.RT: 1299 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 183944 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 184493 Keyrelease: 185684 ResponseTime: 1191 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 87 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 87 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 88 Block: 1 DelDur: NullDur: Word: DUSTY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 41 Running: TestList TestList.Cycle: 1 TestList.Sample: 88 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 89 Block: 1 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 89 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 90 Block: 1 DelDur: NullDur: Word: AMBITIOUS ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 16 Running: TestList TestList.Cycle: 1 TestList.Sample: 90 TrialCount: 25 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 190758 TestWord.DurationError: 100 TestWord.RTTime: 191853 TestWord.ACC: 1 TestWord.RT: 1095 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 191508 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 191854 Keyrelease: 193246 ResponseTime: 1392 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 91 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 91 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 92 Block: 1 DelDur: NullDur: Word: AUSTRALIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 65 Running: TestList TestList.Cycle: 1 TestList.Sample: 92 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 93 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 93 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 94 Block: 1 DelDur: NullDur: PlaceList: 65 Word: ASSYRIAN ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 94 TrialCount: 26 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 197323 TestWord.DurationError: 99 TestWord.RTTime: 198741 TestWord.ACC: 0 TestWord.RT: 1418 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 198073 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 198453 Keyrelease: 199811 ResponseTime: 1358 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 95 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 95 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 96 Block: 1 DelDur: NullDur: PlaceList: 14 Word: SOLITARY ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 96 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 97 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 97 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 98 Block: 1 DelDur: NullDur: Word: SNOBBISH ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 31 Running: TestList TestList.Cycle: 1 TestList.Sample: 98 TrialCount: 27 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 202388 TestWord.DurationError: 99 TestWord.RTTime: 203221 TestWord.ACC: 1 TestWord.RT: 833 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 203138 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 203222 Keyrelease: 204881 ResponseTime: 1659 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 99 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 99 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 100 Block: 1 DelDur: NullDur: Word: DOMINANT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 122 Running: TestList TestList.Cycle: 1 TestList.Sample: 100 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 101 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 101 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 102 Block: 1 DelDur: NullDur: Word: AERONAUTIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 61 Running: TestList TestList.Cycle: 1 TestList.Sample: 102 TrialCount: 28 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 213451 TestWord.DurationError: 99 TestWord.RTTime: 215821 TestWord.ACC: 0 TestWord.RT: 2370 TestWord.RESP: x{-x} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 214201 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 214846 Keyrelease: 215939 ResponseTime: 1093 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 103 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 103 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 104 Block: 1 DelDur: NullDur: Word: STATUESQUE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 43 Running: TestList TestList.Cycle: 1 TestList.Sample: 104 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 105 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 105 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 106 Block: 1 DelDur: NullDur: Word: AGRARIAN ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 66 Running: TestList TestList.Cycle: 1 TestList.Sample: 106 TrialCount: 29 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 222515 TestWord.DurationError: 99 TestWord.RTTime: 224565 TestWord.ACC: 0 TestWord.RT: 2050 TestWord.RESP: 3{-3} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 223265 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 223470 Keyrelease: 225003 ResponseTime: 1533 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 107 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 107 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 108 Block: 1 DelDur: NullDur: Word: CHERUBIC ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 5 Running: TestList TestList.Cycle: 1 TestList.Sample: 108 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 109 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 109 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 110 Block: 1 DelDur: NullDur: Word: TENSE ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 82 Running: TestList TestList.Cycle: 1 TestList.Sample: 110 TrialCount: 30 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 229079 TestWord.DurationError: 100 TestWord.RTTime: 230982 TestWord.ACC: 0 TestWord.RT: 1903 TestWord.RESP: 3{-3} TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 229829 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 229878 Keyrelease: 231567 ResponseTime: 1689 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 111 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 111 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 112 Block: 1 DelDur: NullDur: Word: VULGAR ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 28 Running: TestList TestList.Cycle: 1 TestList.Sample: 112 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 113 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 113 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 114 Block: 1 DelDur: NullDur: Word: LEWD ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 78 Running: TestList TestList.Cycle: 1 TestList.Sample: 114 TrialCount: 31 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 240143 TestWord.DurationError: 99 TestWord.RTTime: 241838 TestWord.ACC: 0 TestWord.RT: 1695 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 240892 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 241838 Keyrelease: 242642 ResponseTime: 804 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 115 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 115 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 116 Block: 1 DelDur: NullDur: Word: NARROW ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 83 Running: TestList TestList.Cycle: 1 TestList.Sample: 116 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 117 Block: 1 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 117 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 118 Block: 1 DelDur: NullDur: PlaceList: 50 Word: DOGMATIC ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 118 TrialCount: 32 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 248223 TestWord.DurationError: 100 TestWord.RTTime: 249535 TestWord.ACC: 0 TestWord.RT: 1312 TestWord.RESP: z{-z} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 248973 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 249478 Keyrelease: 250711 ResponseTime: 1233 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 119 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 119 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 120 Block: 1 DelDur: NullDur: PlaceList: 40 Word: FAINT ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 120 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 121 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 121 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 122 Block: 1 DelDur: NullDur: Word: COPIOUS ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 93 Running: TestList TestList.Cycle: 1 TestList.Sample: 122 TrialCount: 33 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 259287 TestWord.DurationError: 99 TestWord.RTTime: 260326 TestWord.ACC: 0 TestWord.RT: 1039 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 260036 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 260326 Keyrelease: 261787 ResponseTime: 1461 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 123 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 123 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 124 Block: 1 DelDur: NullDur: Word: FORENSIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 55 Running: TestList TestList.Cycle: 1 TestList.Sample: 124 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 125 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 125 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 126 Block: 1 DelDur: NullDur: PlaceList: 33 Word: ASIAN ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 126 TrialCount: 34 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 264368 TestWord.DurationError: 100 TestWord.RTTime: 265470 TestWord.ACC: 1 TestWord.RT: 1102 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 265118 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 265470 Keyrelease: 266863 ResponseTime: 1393 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 127 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 127 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 128 Block: 1 DelDur: NullDur: PlaceList: 42 Word: INTERIOR ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 128 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 129 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 129 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 130 Block: 1 DelDur: NullDur: PlaceList: 30 Word: MODERN ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 130 TrialCount: 35 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 271433 TestWord.DurationError: 99 TestWord.RTTime: 272374 TestWord.ACC: 1 TestWord.RT: 941 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 272183 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 272374 Keyrelease: 273926 ResponseTime: 1551 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 131 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 131 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 132 Block: 1 DelDur: NullDur: PlaceList: 19 Word: FRAGILE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 132 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 133 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 133 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 134 Block: 1 DelDur: NullDur: Word: RARE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 42 Running: TestList TestList.Cycle: 1 TestList.Sample: 134 TrialCount: 36 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 275998 TestWord.DurationError: 99 TestWord.RTTime: 277528 TestWord.ACC: 0 TestWord.RT: 1530 TestWord.RESP: z{-z} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 276748 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 277471 Keyrelease: 278487 ResponseTime: 1016 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 135 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 135 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 136 Block: 1 DelDur: NullDur: Word: INDUSTRIAL ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 45 Running: TestList TestList.Cycle: 1 TestList.Sample: 136 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 137 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 137 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 138 Block: 1 DelDur: NullDur: Word: CYNICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 114 Running: TestList TestList.Cycle: 1 TestList.Sample: 138 TrialCount: 37 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 281563 TestWord.DurationError: 99 TestWord.RTTime: 283198 TestWord.ACC: 1 TestWord.RT: 1635 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 282313 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 283199 Keyrelease: 284056 ResponseTime: 857 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 139 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 139 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 140 Block: 1 DelDur: NullDur: Word: JOYOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 136 Running: TestList TestList.Cycle: 1 TestList.Sample: 140 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 141 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 141 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 142 Block: 1 DelDur: NullDur: PlaceList: 48 Word: RECENT ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 142 TrialCount: 38 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 287628 TestWord.DurationError: 99 TestWord.RTTime: 289702 TestWord.ACC: 0 TestWord.RT: 2074 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 288377 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 288381 Keyrelease: 290117 ResponseTime: 1736 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 143 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 143 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 144 Block: 1 DelDur: NullDur: PlaceList: 37 Word: NATURAL ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 144 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 145 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 145 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 146 Block: 1 DelDur: NullDur: Word: CUNNING ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 22 Running: TestList TestList.Cycle: 1 TestList.Sample: 146 TrialCount: 39 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 299691 TestWord.DurationError: 99 TestWord.RTTime: 301127 TestWord.ACC: 1 TestWord.RT: 1436 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 300440 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 301127 Keyrelease: 302183 ResponseTime: 1056 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 147 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 147 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 148 Block: 1 DelDur: NullDur: Word: SANDY ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 75 Running: TestList TestList.Cycle: 1 TestList.Sample: 148 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 149 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 149 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 150 Block: 1 DelDur: NullDur: Word: CANINE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 105 Running: TestList TestList.Cycle: 1 TestList.Sample: 150 TrialCount: 40 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 309254 TestWord.DurationError: 100 TestWord.RTTime: 310319 TestWord.ACC: 1 TestWord.RT: 1065 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 310004 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 310319 Keyrelease: 311751 ResponseTime: 1432 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 151 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 151 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 152 Block: 1 DelDur: NullDur: Word: COLD ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 24 Running: TestList TestList.Cycle: 1 TestList.Sample: 152 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 153 Block: 1 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 153 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 154 Block: 1 DelDur: NullDur: PlaceList: 23 Word: WORLDLY ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 154 TrialCount: 41 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 317335 TestWord.DurationError: 99 TestWord.RTTime: 318695 TestWord.ACC: 1 TestWord.RT: 1360 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 318085 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 318695 Keyrelease: 319832 ResponseTime: 1137 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 155 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 155 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 156 Block: 1 DelDur: NullDur: PlaceList: 44 Word: CONFIDENT ListOrigin: List4A Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 156 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 157 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 157 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 158 Block: 1 DelDur: NullDur: Word: SALTY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 86 Running: TestList TestList.Cycle: 1 TestList.Sample: 158 TrialCount: 42 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 322417 TestWord.DurationError: 99 TestWord.RTTime: 323255 TestWord.ACC: 1 TestWord.RT: 838 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 323166 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 323255 Keyrelease: 324916 ResponseTime: 1661 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 159 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 159 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 160 Block: 1 DelDur: NullDur: Word: BOTHERSOME ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 80 Running: TestList TestList.Cycle: 1 TestList.Sample: 160 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 161 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 161 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 162 Block: 1 DelDur: NullDur: Word: AWFUL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 117 Running: TestList TestList.Cycle: 1 TestList.Sample: 162 TrialCount: 43 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 329498 TestWord.DurationError: 100 TestWord.RTTime: 330983 TestWord.ACC: 0 TestWord.RT: 1485 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 330248 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 330983 Keyrelease: 331988 ResponseTime: 1005 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 163 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 163 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 164 Block: 1 DelDur: NullDur: Word: DREARY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 112 Running: TestList TestList.Cycle: 1 TestList.Sample: 164 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 165 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 165 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 166 Block: 1 DelDur: NullDur: Word: PIOUS ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 71 Running: TestList TestList.Cycle: 1 TestList.Sample: 166 TrialCount: 44 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 335563 TestWord.DurationError: 99 TestWord.RTTime: 336847 TestWord.ACC: 1 TestWord.RT: 1284 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 336312 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 336847 Keyrelease: 338064 ResponseTime: 1217 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 167 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 167 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 168 Block: 1 DelDur: NullDur: Word: ETERNAL ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 95 Running: TestList TestList.Cycle: 1 TestList.Sample: 168 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 169 Block: 1 DelDur: NullDur: Word: REGAL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 132 Running: TestList TestList.Cycle: 1 TestList.Sample: 169 TrialCount: 45 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 340628 TestWord.DurationError: 99 TestWord.RTTime: 341967 TestWord.ACC: 0 TestWord.RT: 1339 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 341377 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 341967 Keyrelease: 343118 ResponseTime: 1150 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 170 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 170 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 171 Block: 1 DelDur: NullDur: Word: GENEROUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 143 Running: TestList TestList.Cycle: 1 TestList.Sample: 171 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 172 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 172 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 173 Block: 1 DelDur: NullDur: Word: HOLY ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 74 Running: TestList TestList.Cycle: 1 TestList.Sample: 173 TrialCount: 46 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 351191 TestWord.DurationError: 99 TestWord.RTTime: 352399 TestWord.ACC: 1 TestWord.RT: 1208 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 351941 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 352400 Keyrelease: 353686 ResponseTime: 1286 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 174 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 174 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 175 Block: 1 DelDur: NullDur: Word: CLEAN ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 86 Running: TestList TestList.Cycle: 1 TestList.Sample: 175 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 176 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 176 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 177 Block: 1 DelDur: NullDur: Word: AESTHETIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 43 Running: TestList TestList.Cycle: 1 TestList.Sample: 177 TrialCount: 47 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 357256 TestWord.DurationError: 99 TestWord.RTTime: 359079 TestWord.ACC: 0 TestWord.RT: 1823 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 358006 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 358392 Keyrelease: 359745 ResponseTime: 1353 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 178 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 178 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 179 Block: 1 DelDur: NullDur: Word: MYSTERIOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 93 Running: TestList TestList.Cycle: 1 TestList.Sample: 179 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 180 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 180 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 181 Block: 1 DelDur: NullDur: Word: IMPECCABLE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 113 Running: TestList TestList.Cycle: 1 TestList.Sample: 181 TrialCount: 48 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 368819 TestWord.DurationError: 99 TestWord.RTTime: 371200 TestWord.ACC: 0 TestWord.RT: 2381 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 369569 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 369776 Keyrelease: 371308 ResponseTime: 1532 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 182 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 182 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 183 Block: 1 DelDur: NullDur: Word: AGLOW ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 77 Running: TestList TestList.Cycle: 1 TestList.Sample: 183 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 184 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 184 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 185 Block: 1 DelDur: NullDur: Word: HECTIC ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 108 Running: TestList TestList.Cycle: 1 TestList.Sample: 185 TrialCount: 49 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 378882 TestWord.DurationError: 100 TestWord.RTTime: 380192 TestWord.ACC: 1 TestWord.RT: 1310 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 379632 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 380192 Keyrelease: 381371 ResponseTime: 1179 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 186 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 186 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 187 Block: 1 DelDur: NullDur: Word: COOL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 172 Running: TestList TestList.Cycle: 1 TestList.Sample: 187 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 188 Block: 1 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 188 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 189 Block: 1 DelDur: NullDur: Word: BOTANICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 104 Running: TestList TestList.Cycle: 1 TestList.Sample: 189 TrialCount: 50 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 391945 TestWord.DurationError: 99 TestWord.RTTime: 394304 TestWord.ACC: 0 TestWord.RT: 2359 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 392695 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 393176 Keyrelease: 394434 ResponseTime: 1258 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 190 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 190 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 191 Block: 1 DelDur: NullDur: Word: FOUL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 84 Running: TestList TestList.Cycle: 1 TestList.Sample: 191 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 192 Block: 1 DelDur: NullDur: 4500 Running: TestList TestList.Cycle: 1 TestList.Sample: 192 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 193 Block: 1 DelDur: NullDur: Word: ADAPTABLE ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 64 Running: TestList TestList.Cycle: 1 TestList.Sample: 193 TrialCount: 51 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 405507 TestWord.DurationError: 100 TestWord.RTTime: 406784 TestWord.ACC: 1 TestWord.RT: 1277 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 406257 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 406784 Keyrelease: 408002 ResponseTime: 1218 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 194 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 194 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 195 Block: 1 DelDur: NullDur: Word: CHEERY ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 30 Running: TestList TestList.Cycle: 1 TestList.Sample: 195 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 196 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 196 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 197 Block: 1 DelDur: NullDur: Word: CERAMIC ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 89 Running: TestList TestList.Cycle: 1 TestList.Sample: 197 TrialCount: 52 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 412072 TestWord.DurationError: 99 TestWord.RTTime: 413200 TestWord.ACC: 1 TestWord.RT: 1128 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 412822 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 413200 Keyrelease: 414566 ResponseTime: 1365 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 198 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 198 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 199 Block: 1 DelDur: NullDur: Word: RADICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 169 Running: TestList TestList.Cycle: 1 TestList.Sample: 199 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 200 Block: 1 DelDur: NullDur: Word: EMPTY ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 54 Running: TestList TestList.Cycle: 1 TestList.Sample: 200 TrialCount: 53 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 416121 TestWord.DurationError: 99 TestWord.RTTime: 417272 TestWord.ACC: 1 TestWord.RT: 1151 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 416870 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 417273 Keyrelease: 418610 ResponseTime: 1337 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 201 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 201 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 202 Block: 1 DelDur: NullDur: Word: VAGRANT ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 31 Running: TestList TestList.Cycle: 1 TestList.Sample: 202 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 203 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 203 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 204 Block: 1 DelDur: NullDur: Word: BRIEF ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 98 Running: TestList TestList.Cycle: 1 TestList.Sample: 204 TrialCount: 54 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 421686 TestWord.DurationError: 99 TestWord.RTTime: 422520 TestWord.ACC: 1 TestWord.RT: 834 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 422435 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 422521 Keyrelease: 424182 ResponseTime: 1661 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 205 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 205 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 206 Block: 1 DelDur: NullDur: Word: BELGIAN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 191 Running: TestList TestList.Cycle: 1 TestList.Sample: 206 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 207 Block: 1 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 207 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 208 Block: 1 DelDur: NullDur: Word: PERFUMED ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 57 Running: TestList TestList.Cycle: 1 TestList.Sample: 208 TrialCount: 55 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 429766 TestWord.DurationError: 100 TestWord.RTTime: 431121 TestWord.ACC: 0 TestWord.RT: 1355 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 430516 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 431049 Keyrelease: 432255 ResponseTime: 1206 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 209 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 209 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 210 Block: 1 DelDur: NullDur: Word: ORIENTAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 91 Running: TestList TestList.Cycle: 1 TestList.Sample: 210 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 211 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 211 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 212 Block: 1 DelDur: NullDur: Word: ATYPICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 154 Running: TestList TestList.Cycle: 1 TestList.Sample: 212 TrialCount: 56 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 438830 TestWord.DurationError: 100 TestWord.RTTime: 440777 TestWord.ACC: 0 TestWord.RT: 1947 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 439580 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 440777 Keyrelease: 441326 ResponseTime: 549 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 213 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 213 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 214 Block: 1 DelDur: NullDur: Word: UNCIVIL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 129 Running: TestList TestList.Cycle: 1 TestList.Sample: 214 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 215 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 215 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 216 Block: 1 DelDur: NullDur: Word: COMICAL ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 27 Running: TestList TestList.Cycle: 1 TestList.Sample: 216 TrialCount: 57 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 450910 TestWord.DurationError: 99 TestWord.RTTime: 452585 TestWord.ACC: 1 TestWord.RT: 1675 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 451659 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 452585 Keyrelease: 453402 ResponseTime: 817 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 217 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 217 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 218 Block: 1 DelDur: NullDur: Word: TECHY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 101 Running: TestList TestList.Cycle: 1 TestList.Sample: 218 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 219 Block: 1 DelDur: NullDur: 4500 Running: TestList TestList.Cycle: 1 TestList.Sample: 219 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 220 Block: 1 DelDur: NullDur: Word: UNIVERSAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 20 Running: TestList TestList.Cycle: 1 TestList.Sample: 220 TrialCount: 58 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 459474 TestWord.DurationError: 99 TestWord.RTTime: 460289 TestWord.ACC: 1 TestWord.RT: 815 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 460223 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 460289 Keyrelease: 461962 ResponseTime: 1673 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 221 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 221 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 222 Block: 1 DelDur: NullDur: Word: FUNKY ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 153 Running: TestList TestList.Cycle: 1 TestList.Sample: 222 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 223 Block: 1 DelDur: NullDur: PlaceList: 34 Word: EXPENSIVE ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 223 TrialCount: 59 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 464522 TestWord.DurationError: 99 TestWord.RTTime: 466057 TestWord.ACC: 0 TestWord.RT: 1535 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 465272 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 466057 Keyrelease: 467020 ResponseTime: 963 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 224 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 224 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 225 Block: 1 DelDur: NullDur: PlaceList: 35 Word: LEGAL ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 225 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 226 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 226 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 227 Block: 1 DelDur: NullDur: PlaceList: 6 Word: CLERICAL ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 227 TrialCount: 60 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 476602 TestWord.DurationError: 99 TestWord.RTTime: 477649 TestWord.ACC: 0 TestWord.RT: 1047 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 477351 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 477521 Keyrelease: 479090 ResponseTime: 1569 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 228 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 228 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 229 Block: 1 DelDur: NullDur: PlaceList: 80 Word: MALODOROUS ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 229 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 230 Block: 1 DelDur: NullDur: 4500 Running: TestList TestList.Cycle: 1 TestList.Sample: 230 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 231 Block: 1 DelDur: NullDur: Word: BOVINE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 81 Running: TestList TestList.Cycle: 1 TestList.Sample: 231 TrialCount: 61 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 485166 TestWord.DurationError: 99 TestWord.RTTime: 486033 TestWord.ACC: 1 TestWord.RT: 867 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 485915 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 486034 Keyrelease: 487655 ResponseTime: 1621 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 232 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 232 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 233 Block: 1 DelDur: NullDur: Word: UNPLEASANT ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 141 Running: TestList TestList.Cycle: 1 TestList.Sample: 233 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 234 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 234 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 235 Block: 1 DelDur: NullDur: PlaceList: 46 Word: UNFRIENDLY ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 235 TrialCount: 62 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 493729 TestWord.DurationError: 100 TestWord.RTTime: 494873 TestWord.ACC: 0 TestWord.RT: 1144 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 494479 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 494874 Keyrelease: 496227 ResponseTime: 1353 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 236 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 236 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 237 Block: 1 DelDur: NullDur: PlaceList: 63 Word: DECADENT ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 237 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 238 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 238 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 239 Block: 1 DelDur: NullDur: Word: TERRIBLE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 21 Running: TestList TestList.Cycle: 1 TestList.Sample: 239 TrialCount: 63 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 502310 TestWord.DurationError: 100 TestWord.RTTime: 503474 TestWord.ACC: 0 TestWord.RT: 1164 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 503060 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 503474 Keyrelease: 504798 ResponseTime: 1325 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 240 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 240 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 241 Block: 1 DelDur: NullDur: Word: FAVOURABLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 51 Running: TestList TestList.Cycle: 1 TestList.Sample: 241 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 242 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 242 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 243 Block: 1 DelDur: NullDur: Word: FELINE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 157 Running: TestList TestList.Cycle: 1 TestList.Sample: 243 TrialCount: 64 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 508375 TestWord.DurationError: 100 TestWord.RTTime: 509116 TestWord.ACC: 1 TestWord.RT: 741 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 509125 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 509129 Keyrelease: 510871 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 244 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 244 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 245 Block: 1 DelDur: NullDur: Word: INDECENT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 160 Running: TestList TestList.Cycle: 1 TestList.Sample: 245 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 246 Block: 1 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 246 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 247 Block: 1 DelDur: NullDur: PlaceList: 99 Word: IRISH ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 247 TrialCount: 65 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 515456 TestWord.DurationError: 99 TestWord.RTTime: 516530 TestWord.ACC: 1 TestWord.RT: 1074 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 516206 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 516530 Keyrelease: 517947 ResponseTime: 1417 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 248 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 248 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 249 Block: 1 DelDur: NullDur: PlaceList: 91 Word: GAY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 249 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 250 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 250 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 251 Block: 1 DelDur: NullDur: Word: GOTHIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 33 Running: TestList TestList.Cycle: 1 TestList.Sample: 251 TrialCount: 66 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 522520 TestWord.DurationError: 100 TestWord.RTTime: 523330 TestWord.ACC: 1 TestWord.RT: 810 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 523270 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 523330 Keyrelease: 525019 ResponseTime: 1689 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 252 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 252 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 253 Block: 1 DelDur: NullDur: Word: LITERARY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 198 Running: TestList TestList.Cycle: 1 TestList.Sample: 253 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 254 Block: 1 DelDur: NullDur: Word: CLASSY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 24 Running: TestList TestList.Cycle: 1 TestList.Sample: 254 TrialCount: 67 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 526586 TestWord.DurationError: 99 TestWord.RTTime: 527570 TestWord.ACC: 0 TestWord.RT: 984 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 527336 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 527570 Keyrelease: 529082 ResponseTime: 1512 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 255 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 255 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 256 Block: 1 DelDur: NullDur: Word: OFFICIAL ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 56 Running: TestList TestList.Cycle: 1 TestList.Sample: 256 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 257 Block: 1 DelDur: NullDur: PlaceList: 74 Word: AFRICAN ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 257 TrialCount: 68 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 536649 TestWord.DurationError: 100 TestWord.RTTime: 538370 TestWord.ACC: 1 TestWord.RT: 1721 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 537399 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 538370 Keyrelease: 539146 ResponseTime: 776 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 258 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 258 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 259 Block: 1 DelDur: NullDur: PlaceList: 97 Word: LONELY ListOrigin: List3A Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 259 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 260 Block: 1 DelDur: NullDur: Word: NATIVE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 46 Running: TestList TestList.Cycle: 1 TestList.Sample: 260 TrialCount: 69 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 545713 TestWord.DurationError: 100 TestWord.RTTime: 546394 TestWord.ACC: 1 TestWord.RT: 681 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 546463 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 546467 Keyrelease: 548208 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 261 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 261 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 262 Block: 1 DelDur: NullDur: Word: ORNATE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 155 Running: TestList TestList.Cycle: 1 TestList.Sample: 262 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 263 Block: 1 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 263 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 264 Block: 1 DelDur: NullDur: Word: FEUDAL ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 38 Running: TestList TestList.Cycle: 1 TestList.Sample: 264 TrialCount: 70 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 553777 TestWord.DurationError: 100 TestWord.RTTime: 554402 TestWord.ACC: 1 TestWord.RT: 625 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 554527 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 554531 Keyrelease: 556271 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 265 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 265 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 266 Block: 1 DelDur: NullDur: Word: AQUATIC ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 177 Running: TestList TestList.Cycle: 1 TestList.Sample: 266 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 267 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 267 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 268 Block: 1 DelDur: NullDur: Word: BRAVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 168 Running: TestList TestList.Cycle: 1 TestList.Sample: 268 TrialCount: 71 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 561342 TestWord.DurationError: 99 TestWord.RTTime: 562074 TestWord.ACC: 1 TestWord.RT: 732 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 562091 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 562095 Keyrelease: 563834 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 269 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 269 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 270 Block: 1 DelDur: NullDur: Word: SPIRITUAL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 147 Running: TestList TestList.Cycle: 1 TestList.Sample: 270 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 271 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 271 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 272 Block: 1 DelDur: NullDur: Word: ROTTEN ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 44 Running: TestList TestList.Cycle: 1 TestList.Sample: 272 TrialCount: 72 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 569906 TestWord.DurationError: 99 TestWord.RTTime: 571098 TestWord.ACC: 1 TestWord.RT: 1192 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 570655 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 571099 Keyrelease: 572397 ResponseTime: 1298 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 273 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 273 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 274 Block: 1 DelDur: NullDur: Word: WOMANLIKE ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 3 Running: TestList TestList.Cycle: 1 TestList.Sample: 274 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 275 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 275 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 276 Block: 1 DelDur: NullDur: Word: ALGEBRAIC ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 6 Running: TestList TestList.Cycle: 1 TestList.Sample: 276 TrialCount: 73 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 579969 TestWord.DurationError: 99 TestWord.RTTime: 582123 TestWord.ACC: 0 TestWord.RT: 2154 TestWord.RESP: 3{-3} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 580719 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 580723 Keyrelease: 582457 ResponseTime: 1734 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 277 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 277 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 278 Block: 1 DelDur: NullDur: Word: ROUGH ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 58 Running: TestList TestList.Cycle: 1 TestList.Sample: 278 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 279 Block: 1 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 279 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 280 Block: 1 DelDur: NullDur: PlaceList: 93 Word: DUSK ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 280 TrialCount: 74 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 593531 TestWord.DurationError: 100 TestWord.RTTime: 594715 TestWord.ACC: 1 TestWord.RT: 1184 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 594281 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 594715 Keyrelease: 596028 ResponseTime: 1313 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 281 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 281 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 282 Block: 1 DelDur: NullDur: PlaceList: 79 Word: AMORPHOUS ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 282 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 283 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 283 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 284 Block: 1 DelDur: NullDur: PlaceList: 18 Word: BLIND ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 284 TrialCount: 75 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 599113 TestWord.DurationError: 99 TestWord.RTTime: 600507 TestWord.ACC: 0 TestWord.RT: 1394 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 599863 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 600507 Keyrelease: 601604 ResponseTime: 1097 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 285 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 285 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 286 Block: 1 DelDur: NullDur: PlaceList: 61 Word: SEEDY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 286 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 287 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 287 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 288 Block: 1 DelDur: NullDur: Word: LAZY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 40 Running: TestList TestList.Cycle: 1 TestList.Sample: 288 TrialCount: 76 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 604678 TestWord.DurationError: 99 TestWord.RTTime: 606363 TestWord.ACC: 1 TestWord.RT: 1685 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 605428 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 606363 Keyrelease: 607167 ResponseTime: 804 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 289 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 289 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 290 Block: 1 DelDur: NullDur: Word: ELEGANT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 166 Running: TestList TestList.Cycle: 1 TestList.Sample: 290 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 291 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 291 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 292 Block: 1 DelDur: NullDur: Word: BOHEMIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 55 Running: TestList TestList.Cycle: 1 TestList.Sample: 292 TrialCount: 77 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 610743 TestWord.DurationError: 99 TestWord.RTTime: 611811 TestWord.ACC: 0 TestWord.RT: 1068 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 611492 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 611811 Keyrelease: 613244 ResponseTime: 1433 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 293 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 293 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 294 Block: 1 DelDur: NullDur: Word: ATTRACTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 170 Running: TestList TestList.Cycle: 1 TestList.Sample: 294 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 295 Block: 1 DelDur: NullDur: Word: MEDICAL ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 21 Running: TestList TestList.Cycle: 1 TestList.Sample: 295 TrialCount: 78 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 619806 TestWord.DurationError: 100 TestWord.RTTime: 622067 TestWord.ACC: 1 TestWord.RT: 2261 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 620556 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 622067 Keyrelease: 622295 ResponseTime: 228 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 296 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 296 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 297 Block: 1 DelDur: NullDur: Word: CLINICAL ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 32 Running: TestList TestList.Cycle: 1 TestList.Sample: 297 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 298 Block: 1 DelDur: NullDur: 7500 Running: TestList TestList.Cycle: 1 TestList.Sample: 298 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 299 Block: 1 DelDur: NullDur: Word: CAUTIOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 139 Running: TestList TestList.Cycle: 1 TestList.Sample: 299 TrialCount: 79 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 636368 TestWord.DurationError: 99 TestWord.RTTime: 637555 TestWord.ACC: 0 TestWord.RT: 1187 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 637118 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 637556 Keyrelease: 638866 ResponseTime: 1310 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 300 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 300 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 301 Block: 1 DelDur: NullDur: Word: SIMPLE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 49 Running: TestList TestList.Cycle: 1 TestList.Sample: 301 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 302 Block: 1 DelDur: NullDur: Word: ADMIRABLE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 189 Running: TestList TestList.Cycle: 1 TestList.Sample: 302 TrialCount: 80 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 641433 TestWord.DurationError: 99 TestWord.RTTime: 642851 TestWord.ACC: 1 TestWord.RT: 1418 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 642183 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 642852 Keyrelease: 643924 ResponseTime: 1073 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 303 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 303 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 304 Block: 1 DelDur: NullDur: Word: CREATIVE ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 146 Running: TestList TestList.Cycle: 1 TestList.Sample: 304 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 305 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 305 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 306 Block: 1 DelDur: NullDur: Word: DRAMATIC ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 197 Running: TestList TestList.Cycle: 1 TestList.Sample: 306 TrialCount: 81 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 650997 TestWord.DurationError: 99 TestWord.RTTime: 652076 TestWord.ACC: 1 TestWord.RT: 1079 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 651746 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 652076 Keyrelease: 653496 ResponseTime: 1420 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 307 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 307 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 308 Block: 1 DelDur: NullDur: Word: BOYISH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 60 Running: TestList TestList.Cycle: 1 TestList.Sample: 308 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 309 Block: 1 DelDur: NullDur: Word: HYPNOTIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 54 Running: TestList TestList.Cycle: 1 TestList.Sample: 309 TrialCount: 82 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 661060 TestWord.DurationError: 100 TestWord.RTTime: 661884 TestWord.ACC: 1 TestWord.RT: 824 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 661810 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 661884 Keyrelease: 663560 ResponseTime: 1676 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 310 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 310 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 311 Block: 1 DelDur: NullDur: Word: ETHICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 119 Running: TestList TestList.Cycle: 1 TestList.Sample: 311 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 312 Block: 1 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 312 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 313 Block: 1 DelDur: NullDur: PlaceList: 72 Word: SQUARE ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 313 TrialCount: 83 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 666142 TestWord.DurationError: 100 TestWord.RTTime: 668438 TestWord.ACC: 0 TestWord.RT: 2296 TestWord.RESP: z{-z} TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 666892 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 667244 Keyrelease: 668630 ResponseTime: 1386 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 314 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 314 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 315 Block: 1 DelDur: NullDur: PlaceList: 81 Word: AFFLUENT ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 315 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 316 Block: 1 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 316 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 317 Block: 1 DelDur: NullDur: Word: EXCLUSIVE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 94 Running: TestList TestList.Cycle: 1 TestList.Sample: 317 TrialCount: 84 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 672706 TestWord.DurationError: 100 TestWord.RTTime: 673516 TestWord.ACC: 1 TestWord.RT: 810 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 673456 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 673516 Keyrelease: 675203 ResponseTime: 1688 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 318 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 318 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 319 Block: 1 DelDur: NullDur: Word: DISORDERLY ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 159 Running: TestList TestList.Cycle: 1 TestList.Sample: 319 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 320 Block: 1 DelDur: NullDur: Word: PERSONABLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 52 Running: TestList TestList.Cycle: 1 TestList.Sample: 320 TrialCount: 85 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 681770 TestWord.DurationError: 100 TestWord.RTTime: 683204 TestWord.ACC: 1 TestWord.RT: 1434 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 682520 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 683204 Keyrelease: 684262 ResponseTime: 1058 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 321 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 321 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 322 Block: 1 DelDur: NullDur: Word: PLAIN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 71 Running: TestList TestList.Cycle: 1 TestList.Sample: 322 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 323 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 323 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 324 Block: 1 DelDur: NullDur: Word: PRECIOUS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 194 Running: TestList TestList.Cycle: 1 TestList.Sample: 324 TrialCount: 86 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 687335 TestWord.DurationError: 100 TestWord.RTTime: 688828 TestWord.ACC: 0 TestWord.RT: 1493 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 688085 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 688828 Keyrelease: 689834 ResponseTime: 1006 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 325 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 325 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 326 Block: 1 DelDur: NullDur: Word: VAIN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 190 Running: TestList TestList.Cycle: 1 TestList.Sample: 326 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 327 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 327 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 328 Block: 1 DelDur: NullDur: Word: PROMINENT ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 79 Running: TestList TestList.Cycle: 1 TestList.Sample: 328 TrialCount: 87 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 698915 TestWord.DurationError: 99 TestWord.RTTime: 700188 TestWord.ACC: 0 TestWord.RT: 1273 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 699665 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 700189 Keyrelease: 701406 ResponseTime: 1217 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 329 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 329 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 330 Block: 1 DelDur: NullDur: Word: SOGGY ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 65 Running: TestList TestList.Cycle: 1 TestList.Sample: 330 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 331 Block: 1 DelDur: NullDur: PlaceList: 60 Word: OUTDOOR ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 331 TrialCount: 88 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 703963 TestWord.DurationError: 100 TestWord.RTTime: 705284 TestWord.ACC: 1 TestWord.RT: 1321 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 704713 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 705285 Keyrelease: 706464 ResponseTime: 1179 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 332 Block: 1 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 332 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 333 Block: 1 DelDur: NullDur: PlaceList: 32 Word: FAIRY ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 333 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 334 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 334 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 335 Block: 1 DelDur: NullDur: Word: EXTINCT ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 29 Running: TestList TestList.Cycle: 1 TestList.Sample: 335 TrialCount: 89 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 713544 TestWord.DurationError: 99 TestWord.RTTime: 714251 TestWord.ACC: 1 TestWord.RT: 707 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 714293 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 714297 Keyrelease: 716036 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 336 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 336 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 337 Block: 1 DelDur: NullDur: Word: JAMAICAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 5 Running: TestList TestList.Cycle: 1 TestList.Sample: 337 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 338 Block: 1 DelDur: NullDur: Word: BLEAK ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 26 Running: TestList TestList.Cycle: 1 TestList.Sample: 338 TrialCount: 90 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 717592 TestWord.DurationError: 100 TestWord.RTTime: 718572 TestWord.ACC: 0 TestWord.RT: 980 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 718342 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 718573 Keyrelease: 720086 ResponseTime: 1513 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 339 Block: 1 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 339 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 340 Block: 1 DelDur: NullDur: Word: NEEDY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 35 Running: TestList TestList.Cycle: 1 TestList.Sample: 340 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 341 Block: 1 DelDur: NullDur: Word: AFLOAT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 163 Running: TestList TestList.Cycle: 1 TestList.Sample: 341 TrialCount: 91 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 725640 TestWord.DurationError: 99 TestWord.RTTime: 726717 TestWord.ACC: 1 TestWord.RT: 1077 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 726390 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 726717 Keyrelease: 728135 ResponseTime: 1418 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 342 Block: 1 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 342 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 343 Block: 1 DelDur: NullDur: Word: SWEET ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 47 Running: TestList TestList.Cycle: 1 TestList.Sample: 343 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 344 Block: 1 DelDur: NullDur: Word: DEFICIENT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 158 Running: TestList TestList.Cycle: 1 TestList.Sample: 344 TrialCount: 92 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 735703 TestWord.DurationError: 100 TestWord.RTTime: 736501 TestWord.ACC: 1 TestWord.RT: 798 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 736453 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 736501 Keyrelease: 738203 ResponseTime: 1702 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 345 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 345 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 346 Block: 1 DelDur: NullDur: Word: MILITARY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 125 Running: TestList TestList.Cycle: 1 TestList.Sample: 346 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 347 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 347 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 348 Block: 1 DelDur: NullDur: Word: ABYSMAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 182 Running: TestList TestList.Cycle: 1 TestList.Sample: 348 TrialCount: 93 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 741285 TestWord.DurationError: 99 TestWord.RTTime: 742325 TestWord.ACC: 0 TestWord.RT: 1040 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 742035 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 742325 Keyrelease: 743784 ResponseTime: 1459 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 349 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 349 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 350 Block: 1 DelDur: NullDur: Word: CHRISTIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 74 Running: TestList TestList.Cycle: 1 TestList.Sample: 350 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 351 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 351 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 352 Block: 1 DelDur: NullDur: Word: ZEALOUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 19 Running: TestList TestList.Cycle: 1 TestList.Sample: 352 TrialCount: 94 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 747366 TestWord.DurationError: 100 TestWord.RTTime: 748525 TestWord.ACC: 1 TestWord.RT: 1159 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 748116 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 748525 Keyrelease: 749865 ResponseTime: 1340 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 353 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 353 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 354 Block: 1 DelDur: NullDur: Word: ENDURABLE ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 91 Running: TestList TestList.Cycle: 1 TestList.Sample: 354 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 355 Block: 1 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 355 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 356 Block: 1 DelDur: NullDur: Word: BEAUTIFUL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 174 Running: TestList TestList.Cycle: 1 TestList.Sample: 356 TrialCount: 95 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 751948 TestWord.DurationError: 100 TestWord.RTTime: 752741 TestWord.ACC: 1 TestWord.RT: 793 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 752698 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 752741 Keyrelease: 754441 ResponseTime: 1700 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 357 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 357 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 358 Block: 1 DelDur: NullDur: Word: DWARFISH ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 151 Running: TestList TestList.Cycle: 1 TestList.Sample: 358 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 359 Block: 1 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 359 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 360 Block: 1 DelDur: NullDur: Word: BIBLICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 167 Running: TestList TestList.Cycle: 1 TestList.Sample: 360 TrialCount: 96 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 761012 TestWord.DurationError: 99 TestWord.RTTime: 761997 TestWord.ACC: 1 TestWord.RT: 985 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 761762 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 761997 Keyrelease: 763510 ResponseTime: 1513 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 361 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 361 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 362 Block: 1 DelDur: NullDur: Word: DELICATE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 19 Running: TestList TestList.Cycle: 1 TestList.Sample: 362 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 363 Block: 1 DelDur: NullDur: PlaceList: 78 Word: STYLISH ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 363 TrialCount: 97 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 765077 TestWord.DurationError: 100 TestWord.RTTime: 766093 TestWord.ACC: 1 TestWord.RT: 1016 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 765827 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 766093 Keyrelease: 767567 ResponseTime: 1474 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 364 Block: 1 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 364 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 365 Block: 1 DelDur: NullDur: PlaceList: 45 Word: VILE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 365 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 366 Block: 1 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 366 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 367 Block: 1 DelDur: NullDur: Word: DIDACTIC ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 1 Running: TestList TestList.Cycle: 1 TestList.Sample: 367 TrialCount: 98 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 771642 TestWord.DurationError: 100 TestWord.RTTime: 772469 TestWord.ACC: 1 TestWord.RT: 827 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 772392 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 772470 Keyrelease: 774143 ResponseTime: 1673 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 368 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 368 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 369 Block: 1 DelDur: NullDur: Word: CHEAP ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 193 Running: TestList TestList.Cycle: 1 TestList.Sample: 369 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 370 Block: 1 DelDur: NullDur: 4500 Running: TestList TestList.Cycle: 1 TestList.Sample: 370 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 371 Block: 1 DelDur: NullDur: Word: CULINARY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 126 Running: TestList TestList.Cycle: 1 TestList.Sample: 371 TrialCount: 99 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 780223 TestWord.DurationError: 99 TestWord.RTTime: 780976 TestWord.ACC: 1 TestWord.RT: 753 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 780972 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 780977 Keyrelease: 782715 ResponseTime: 1738 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 372 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 372 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 373 Block: 1 DelDur: NullDur: Word: ALIEN ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 116 Running: TestList TestList.Cycle: 1 TestList.Sample: 373 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 374 Block: 1 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 374 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 375 Block: 1 DelDur: NullDur: PlaceList: 54 Word: VICIOUS ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 375 TrialCount: 100 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 786287 TestWord.DurationError: 100 TestWord.RTTime: 787278 TestWord.ACC: 1 TestWord.RT: 991 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 787037 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 787278 Keyrelease: 788778 ResponseTime: 1500 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 376 Block: 1 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 376 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 377 Block: 1 DelDur: NullDur: PlaceList: 92 Word: TRIUMPHANT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 377 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 378 Block: 1 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 378 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: BreakProc TestList: 379 Block: 1 DelDur: NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 379 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 380 Block: 2 DelDur: NullDur: PlaceList: 77 Word: UNWOMANLY ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 380 TrialCount: 101 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 812446 TestWord.DurationError: 99 TestWord.RTTime: 813518 TestWord.ACC: 1 TestWord.RT: 1072 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 813196 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 813518 Keyrelease: 814936 ResponseTime: 1418 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 381 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 381 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 382 Block: 2 DelDur: NullDur: PlaceList: 29 Word: SMOOTH ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 382 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 383 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 383 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 384 Block: 2 DelDur: NullDur: Word: MYSTICAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 185 Running: TestList TestList.Cycle: 1 TestList.Sample: 384 TrialCount: 102 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 817011 TestWord.DurationError: 100 TestWord.RTTime: 818350 TestWord.ACC: 0 TestWord.RT: 1339 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 817761 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 818350 Keyrelease: 819503 ResponseTime: 1153 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 385 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 385 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 386 Block: 2 DelDur: NullDur: Word: GENTLE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 44 Running: TestList TestList.Cycle: 1 TestList.Sample: 386 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 387 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 387 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 388 Block: 2 DelDur: NullDur: Word: UNCULTURED ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 103 Running: TestList TestList.Cycle: 1 TestList.Sample: 388 TrialCount: 103 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 829074 TestWord.DurationError: 99 TestWord.RTTime: 829870 TestWord.ACC: 1 TestWord.RT: 796 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 829824 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 829870 Keyrelease: 831571 ResponseTime: 1701 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 389 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 389 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 390 Block: 2 DelDur: NullDur: Word: BOURGEOIS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 183 Running: TestList TestList.Cycle: 1 TestList.Sample: 390 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 391 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 391 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 392 Block: 2 DelDur: NullDur: PlaceList: 13 Word: AIRBORNE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 392 TrialCount: 104 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 834156 TestWord.DurationError: 99 TestWord.RTTime: 835478 TestWord.ACC: 1 TestWord.RT: 1322 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 834905 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 835478 Keyrelease: 836656 ResponseTime: 1178 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 393 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 393 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 394 Block: 2 DelDur: NullDur: PlaceList: 71 Word: HORRID ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 394 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 395 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 395 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 396 Block: 2 DelDur: NullDur: Word: DIPLOMATIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 69 Running: TestList TestList.Cycle: 1 TestList.Sample: 396 TrialCount: 105 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 844236 TestWord.DurationError: 99 TestWord.RTTime: 845062 TestWord.ACC: 1 TestWord.RT: 826 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 844986 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 845063 Keyrelease: 846724 ResponseTime: 1661 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 397 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 397 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 398 Block: 2 DelDur: NullDur: Word: UNCLEAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 58 Running: TestList TestList.Cycle: 1 TestList.Sample: 398 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 399 Block: 2 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 399 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 400 Block: 2 DelDur: NullDur: Word: UNKEPT ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 78 Running: TestList TestList.Cycle: 1 TestList.Sample: 400 TrialCount: 106 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 858298 TestWord.DurationError: 100 TestWord.RTTime: 859119 TestWord.ACC: 1 TestWord.RT: 821 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 859048 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 859119 Keyrelease: 860792 ResponseTime: 1673 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 401 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 401 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 402 Block: 2 DelDur: NullDur: Word: AGED ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 192 Running: TestList TestList.Cycle: 1 TestList.Sample: 402 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 403 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 403 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 404 Block: 2 DelDur: NullDur: Word: LUNAR ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 165 Running: TestList TestList.Cycle: 1 TestList.Sample: 404 TrialCount: 107 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 869861 TestWord.DurationError: 100 TestWord.RTTime: 870551 TestWord.ACC: 1 TestWord.RT: 690 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 870611 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 870615 Keyrelease: 872355 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 405 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 405 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 406 Block: 2 DelDur: NullDur: Word: SERBIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 26 Running: TestList TestList.Cycle: 1 TestList.Sample: 406 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 407 Block: 2 DelDur: NullDur: Word: HAWAIIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 37 Running: TestList TestList.Cycle: 1 TestList.Sample: 407 TrialCount: 108 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 874910 TestWord.DurationError: 99 TestWord.RTTime: 875583 TestWord.ACC: 1 TestWord.RT: 673 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 875659 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 875664 Keyrelease: 877405 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 408 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 408 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 409 Block: 2 DelDur: NullDur: Word: PATRIOTIC ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 164 Running: TestList TestList.Cycle: 1 TestList.Sample: 409 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 410 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 410 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 411 Block: 2 DelDur: NullDur: PlaceList: 24 Word: PUPAL ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 411 TrialCount: 109 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 885973 TestWord.DurationError: 99 TestWord.RTTime: 887655 TestWord.ACC: 1 TestWord.RT: 1682 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 886722 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 887655 Keyrelease: 888472 ResponseTime: 817 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 412 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 412 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 413 Block: 2 DelDur: NullDur: PlaceList: 15 Word: TIDY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 413 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 414 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 414 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 415 Block: 2 DelDur: NullDur: Word: FULL ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 15 Running: TestList TestList.Cycle: 1 TestList.Sample: 415 TrialCount: 110 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 892054 TestWord.DurationError: 100 TestWord.RTTime: 894335 TestWord.ACC: 0 TestWord.RT: 2281 TestWord.RESP: z{-z} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 892804 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 893351 Keyrelease: 894542 ResponseTime: 1191 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 416 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 416 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 417 Block: 2 DelDur: NullDur: Word: FLOWERY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 17 Running: TestList TestList.Cycle: 1 TestList.Sample: 417 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 418 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 418 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 419 Block: 2 DelDur: NullDur: Word: ITALIAN ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 96 Running: TestList TestList.Cycle: 1 TestList.Sample: 419 TrialCount: 111 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 897619 TestWord.DurationError: 99 TestWord.RTTime: 898607 TestWord.ACC: 1 TestWord.RT: 988 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 898369 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 898607 Keyrelease: 900107 ResponseTime: 1500 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 420 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 420 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 421 Block: 2 DelDur: NullDur: Word: FAMILIAR ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 48 Running: TestList TestList.Cycle: 1 TestList.Sample: 421 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 422 Block: 2 DelDur: NullDur: PlaceList: 47 Word: SICK ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 422 TrialCount: 112 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 901668 TestWord.DurationError: 99 TestWord.RTTime: 902983 TestWord.ACC: 0 TestWord.RT: 1315 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 902418 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 902983 Keyrelease: 904161 ResponseTime: 1178 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 423 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 423 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 424 Block: 2 DelDur: NullDur: PlaceList: 4 Word: DOMESTIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 424 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 425 Block: 2 DelDur: NullDur: Word: COLLEGIATE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 36 Running: TestList TestList.Cycle: 1 TestList.Sample: 425 TrialCount: 113 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 911715 TestWord.DurationError: 99 TestWord.RTTime: 912431 TestWord.ACC: 1 TestWord.RT: 716 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 912464 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 912469 Keyrelease: 914211 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 426 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 426 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 427 Block: 2 DelDur: NullDur: Word: ACROBATIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 56 Running: TestList TestList.Cycle: 1 TestList.Sample: 427 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 428 Block: 2 DelDur: NullDur: PlaceList: 98 Word: DEATHLY ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 428 TrialCount: 114 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 915780 TestWord.DurationError: 100 TestWord.RTTime: 916927 TestWord.ACC: 1 TestWord.RT: 1147 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 916530 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 916928 Keyrelease: 918278 ResponseTime: 1350 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 429 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 429 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 430 Block: 2 DelDur: NullDur: PlaceList: 20 Word: CONCRETE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 430 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 431 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 431 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 432 Block: 2 DelDur: NullDur: Word: AFLAME ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 184 Running: TestList TestList.Cycle: 1 TestList.Sample: 432 TrialCount: 115 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 922361 TestWord.DurationError: 100 TestWord.RTTime: 923688 TestWord.ACC: 0 TestWord.RT: 1327 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 923111 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 923688 Keyrelease: 924855 ResponseTime: 1167 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 433 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 433 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 434 Block: 2 DelDur: NullDur: Word: ROWDY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 8 Running: TestList TestList.Cycle: 1 TestList.Sample: 434 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 435 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 435 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 436 Block: 2 DelDur: NullDur: Word: ACCESSIBLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 61 Running: TestList TestList.Cycle: 1 TestList.Sample: 436 TrialCount: 116 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 926926 TestWord.DurationError: 100 TestWord.RTTime: 928280 TestWord.ACC: 0 TestWord.RT: 1354 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 927676 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 928280 Keyrelease: 929417 ResponseTime: 1137 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 437 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 437 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 438 Block: 2 DelDur: NullDur: Word: BUFF ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 110 Running: TestList TestList.Cycle: 1 TestList.Sample: 438 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 439 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 439 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 440 Block: 2 DelDur: NullDur: Word: SHOWY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 130 Running: TestList TestList.Cycle: 1 TestList.Sample: 440 TrialCount: 117 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 932991 TestWord.DurationError: 100 TestWord.RTTime: 933840 TestWord.ACC: 1 TestWord.RT: 849 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 933741 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 933840 Keyrelease: 935485 ResponseTime: 1645 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 441 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 441 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 442 Block: 2 DelDur: NullDur: Word: SANITARY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 35 Running: TestList TestList.Cycle: 1 TestList.Sample: 442 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 443 Block: 2 DelDur: NullDur: 6500 Running: TestList TestList.Cycle: 1 TestList.Sample: 443 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 444 Block: 2 DelDur: NullDur: Word: HISTORICAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 22 Running: TestList TestList.Cycle: 1 TestList.Sample: 444 TrialCount: 118 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 947553 TestWord.DurationError: 100 TestWord.RTTime: 948240 TestWord.ACC: 1 TestWord.RT: 687 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 948303 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 948307 Keyrelease: 950048 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 445 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 445 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 446 Block: 2 DelDur: NullDur: Word: TRASHY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 178 Running: TestList TestList.Cycle: 1 TestList.Sample: 446 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 447 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 447 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 448 Block: 2 DelDur: NullDur: PlaceList: 66 Word: BEASTLY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 448 TrialCount: 119 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 953618 TestWord.DurationError: 100 TestWord.RTTime: 954848 TestWord.ACC: 1 TestWord.RT: 1230 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 954368 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 954848 Keyrelease: 956107 ResponseTime: 1259 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 449 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 449 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 450 Block: 2 DelDur: NullDur: PlaceList: 8 Word: WARM ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 450 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 451 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 451 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 452 Block: 2 DelDur: NullDur: PlaceList: 49 Word: EMOTIONAL ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 452 TrialCount: 120 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 960183 TestWord.DurationError: 99 TestWord.RTTime: 961128 TestWord.ACC: 1 TestWord.RT: 945 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 960932 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 961128 Keyrelease: 962683 ResponseTime: 1555 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 453 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 453 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 454 Block: 2 DelDur: NullDur: PlaceList: 3 Word: CLIMACTIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 454 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 455 Block: 2 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 455 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 456 Block: 2 DelDur: NullDur: Word: ACOUSTIC ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 29 Running: TestList TestList.Cycle: 1 TestList.Sample: 456 TrialCount: 121 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 968263 TestWord.DurationError: 100 TestWord.RTTime: 969856 TestWord.ACC: 1 TestWord.RT: 1593 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 969013 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 969856 Keyrelease: 970754 ResponseTime: 899 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 457 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 457 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 458 Block: 2 DelDur: NullDur: Word: BRILLIANT ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 62 Running: TestList TestList.Cycle: 1 TestList.Sample: 458 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 459 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 459 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 460 Block: 2 DelDur: NullDur: Word: ADOPTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 152 Running: TestList TestList.Cycle: 1 TestList.Sample: 460 TrialCount: 122 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 978827 TestWord.DurationError: 99 TestWord.RTTime: 980648 TestWord.ACC: 1 TestWord.RT: 1821 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 979577 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 980649 Keyrelease: 981318 ResponseTime: 669 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 461 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 461 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 462 Block: 2 DelDur: NullDur: Word: DELICIOUS ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 109 Running: TestList TestList.Cycle: 1 TestList.Sample: 462 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 463 Block: 2 DelDur: NullDur: Word: BANKRUPT ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 14 Running: TestList TestList.Cycle: 1 TestList.Sample: 463 TrialCount: 123 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 987874 TestWord.DurationError: 99 TestWord.RTTime: 990184 TestWord.ACC: 0 TestWord.RT: 2310 TestWord.RESP: 3{-3} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 988624 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 989761 Keyrelease: 990362 ResponseTime: 601 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 464 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 464 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 465 Block: 2 DelDur: NullDur: Word: SUBTLE ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 11 Running: TestList TestList.Cycle: 1 TestList.Sample: 465 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 466 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 466 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 467 Block: 2 DelDur: NullDur: Word: BRIDAL ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 12 Running: TestList TestList.Cycle: 1 TestList.Sample: 467 TrialCount: 124 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 999437 TestWord.DurationError: 99 TestWord.RTTime: 1001689 TestWord.ACC: 0 TestWord.RT: 2252 TestWord.RESP: x{-x} TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1000187 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1000481 Keyrelease: 1001925 ResponseTime: 1444 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 468 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 468 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 469 Block: 2 DelDur: NullDur: Word: PERSIAN ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 88 Running: TestList TestList.Cycle: 1 TestList.Sample: 469 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 470 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 470 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 471 Block: 2 DelDur: NullDur: Word: FLAT ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 72 Running: TestList TestList.Cycle: 1 TestList.Sample: 471 TrialCount: 125 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1011000 TestWord.DurationError: 99 TestWord.RTTime: 1012281 TestWord.ACC: 1 TestWord.RT: 1281 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1011750 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1012281 Keyrelease: 1013499 ResponseTime: 1218 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 472 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 472 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 473 Block: 2 DelDur: NullDur: Word: YIDDISH ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 85 Running: TestList TestList.Cycle: 1 TestList.Sample: 473 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 474 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 474 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 475 Block: 2 DelDur: NullDur: Word: DRIZZLY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 30 Running: TestList TestList.Cycle: 1 TestList.Sample: 475 TrialCount: 126 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1016582 TestWord.DurationError: 99 TestWord.RTTime: 1017681 TestWord.ACC: 1 TestWord.RT: 1099 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1017331 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1017681 Keyrelease: 1019075 ResponseTime: 1394 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 476 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 476 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 477 Block: 2 DelDur: NullDur: Word: POSTAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 187 Running: TestList TestList.Cycle: 1 TestList.Sample: 477 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 478 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 478 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 479 Block: 2 DelDur: NullDur: Word: MALICIOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 82 Running: TestList TestList.Cycle: 1 TestList.Sample: 479 TrialCount: 127 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1027145 TestWord.DurationError: 99 TestWord.RTTime: 1028257 TestWord.ACC: 1 TestWord.RT: 1112 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1027895 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1028257 Keyrelease: 1029635 ResponseTime: 1378 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 480 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 480 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 481 Block: 2 DelDur: NullDur: Word: ARTIFICIAL ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 67 Running: TestList TestList.Cycle: 1 TestList.Sample: 481 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 482 Block: 2 DelDur: NullDur: Word: CARIBBEAN ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 137 Running: TestList TestList.Cycle: 1 TestList.Sample: 482 TrialCount: 128 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1031194 TestWord.DurationError: 99 TestWord.RTTime: 1031993 TestWord.ACC: 1 TestWord.RT: 799 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1031943 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1031993 Keyrelease: 1033693 ResponseTime: 1700 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 483 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 483 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 484 Block: 2 DelDur: NullDur: Word: ARCTIC ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 10 Running: TestList TestList.Cycle: 1 TestList.Sample: 484 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 485 Block: 2 DelDur: NullDur: Word: DULL ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 34 Running: TestList TestList.Cycle: 1 TestList.Sample: 485 TrialCount: 129 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1035259 TestWord.DurationError: 99 TestWord.RTTime: 1036649 TestWord.ACC: 0 TestWord.RT: 1390 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1036009 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1036649 Keyrelease: 1037747 ResponseTime: 1098 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 486 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 486 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 487 Block: 2 DelDur: NullDur: Word: SHALLOW ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 16 Running: TestList TestList.Cycle: 1 TestList.Sample: 487 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 488 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 488 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 489 Block: 2 DelDur: NullDur: Word: IMMIGRANT ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 39 Running: TestList TestList.Cycle: 1 TestList.Sample: 489 TrialCount: 130 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1040324 TestWord.DurationError: 100 TestWord.RTTime: 1041169 TestWord.ACC: 0 TestWord.RT: 845 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1041074 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1041169 Keyrelease: 1042818 ResponseTime: 1649 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 490 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 490 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 491 Block: 2 DelDur: NullDur: Word: FAST ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 59 Running: TestList TestList.Cycle: 1 TestList.Sample: 491 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 492 Block: 2 DelDur: NullDur: Word: RUDE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 12 Running: TestList TestList.Cycle: 1 TestList.Sample: 492 TrialCount: 131 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1050371 TestWord.DurationError: 99 TestWord.RTTime: 1051145 TestWord.ACC: 1 TestWord.RT: 774 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1051121 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1051146 Keyrelease: 1052872 ResponseTime: 1726 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 493 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 493 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 494 Block: 2 DelDur: NullDur: Word: FUTURE ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 150 Running: TestList TestList.Cycle: 1 TestList.Sample: 494 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 495 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 495 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 496 Block: 2 DelDur: NullDur: Word: EVIL ListOrigin: List1B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 100 Running: TestList TestList.Cycle: 1 TestList.Sample: 496 TrialCount: 132 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1060951 TestWord.DurationError: 99 TestWord.RTTime: 1062545 TestWord.ACC: 0 TestWord.RT: 1594 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1061701 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1062546 Keyrelease: 1063444 ResponseTime: 898 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 497 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 497 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 498 Block: 2 DelDur: NullDur: Word: FABULOUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 48 Running: TestList TestList.Cycle: 1 TestList.Sample: 498 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 499 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 499 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 500 Block: 2 DelDur: NullDur: Word: FORMAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 121 Running: TestList TestList.Cycle: 1 TestList.Sample: 500 TrialCount: 133 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1066516 TestWord.DurationError: 99 TestWord.RTTime: 1067305 TestWord.ACC: 1 TestWord.RT: 789 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1067266 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1067306 Keyrelease: 1069007 ResponseTime: 1701 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 501 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 501 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 502 Block: 2 DelDur: NullDur: Word: COSMIC ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 142 Running: TestList TestList.Cycle: 1 TestList.Sample: 502 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 503 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 503 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 504 Block: 2 DelDur: NullDur: Word: VIVID ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 41 Running: TestList TestList.Cycle: 1 TestList.Sample: 504 TrialCount: 134 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1075080 TestWord.DurationError: 99 TestWord.RTTime: 1076906 TestWord.ACC: 0 TestWord.RT: 1826 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1075830 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1076906 Keyrelease: 1077575 ResponseTime: 669 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 505 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 505 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 506 Block: 2 DelDur: NullDur: Word: SECULAR ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 47 Running: TestList TestList.Cycle: 1 TestList.Sample: 506 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 507 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 507 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 508 Block: 2 DelDur: NullDur: PlaceList: 9 Word: CLEVER ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 508 TrialCount: 135 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1084644 TestWord.DurationError: 99 TestWord.RTTime: 1085818 TestWord.ACC: 1 TestWord.RT: 1174 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1085393 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1085818 Keyrelease: 1087142 ResponseTime: 1325 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 509 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 509 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 510 Block: 2 DelDur: NullDur: PlaceList: 82 Word: PLACID ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 510 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 511 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 511 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 512 Block: 2 DelDur: NullDur: Word: HOMELY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 39 Running: TestList TestList.Cycle: 1 TestList.Sample: 512 TrialCount: 136 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1094224 TestWord.DurationError: 99 TestWord.RTTime: 1095226 TestWord.ACC: 1 TestWord.RT: 1002 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1094974 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1095226 Keyrelease: 1096714 ResponseTime: 1488 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 513 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 513 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 514 Block: 2 DelDur: NullDur: Word: EGYPTIAN ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 161 Running: TestList TestList.Cycle: 1 TestList.Sample: 514 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 515 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 515 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 516 Block: 2 DelDur: NullDur: Word: TYPICAL ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 4 Running: TestList TestList.Cycle: 1 TestList.Sample: 516 TrialCount: 137 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1105787 TestWord.DurationError: 99 TestWord.RTTime: 1107018 TestWord.ACC: 1 TestWord.RT: 1231 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1106537 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1107018 Keyrelease: 1108278 ResponseTime: 1260 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 517 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 517 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 518 Block: 2 DelDur: NullDur: Word: JUVENILE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 36 Running: TestList TestList.Cycle: 1 TestList.Sample: 518 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 519 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 519 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 520 Block: 2 DelDur: NullDur: Word: INTACT ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 53 Running: TestList TestList.Cycle: 1 TestList.Sample: 520 TrialCount: 138 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1116850 TestWord.DurationError: 99 TestWord.RTTime: 1119314 TestWord.ACC: 0 TestWord.RT: 2464 TestWord.RESP: 3x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1117600 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1117605 Keyrelease: 1119338 ResponseTime: 1733 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 521 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 521 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 522 Block: 2 DelDur: NullDur: Word: RIGHTEOUS ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 13 Running: TestList TestList.Cycle: 1 TestList.Sample: 522 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 523 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 523 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 524 Block: 2 DelDur: NullDur: Word: GROTESQUE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 64 Running: TestList TestList.Cycle: 1 TestList.Sample: 524 TrialCount: 139 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1122415 TestWord.DurationError: 99 TestWord.RTTime: 1124714 TestWord.ACC: 1 TestWord.RT: 2299 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1123165 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1124715 Keyrelease: 1124916 ResponseTime: 201 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 525 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 525 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 526 Block: 2 DelDur: NullDur: Word: ANGRY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 45 Running: TestList TestList.Cycle: 1 TestList.Sample: 526 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 527 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 527 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 528 Block: 2 DelDur: NullDur: Word: PECULIAR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 18 Running: TestList TestList.Cycle: 1 TestList.Sample: 528 TrialCount: 140 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1128496 TestWord.DurationError: 100 TestWord.RTTime: 1130586 TestWord.ACC: 1 TestWord.RT: 2090 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1129246 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1130587 Keyrelease: 1130989 ResponseTime: 402 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 529 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 529 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 530 Block: 2 DelDur: NullDur: Word: SEASONAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 14 Running: TestList TestList.Cycle: 1 TestList.Sample: 530 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 531 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 531 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 532 Block: 2 DelDur: NullDur: Word: POMPOUS ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 49 Running: TestList TestList.Cycle: 1 TestList.Sample: 532 TrialCount: 141 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1139060 TestWord.DurationError: 99 TestWord.RTTime: 1140379 TestWord.ACC: 1 TestWord.RT: 1319 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1139809 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1140379 Keyrelease: 1141557 ResponseTime: 1178 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 533 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 533 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 534 Block: 2 DelDur: NullDur: Word: GRASSY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 1 Running: TestList TestList.Cycle: 1 TestList.Sample: 534 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 535 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 535 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 536 Block: 2 DelDur: NullDur: Word: VALUABLE ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 84 Running: TestList TestList.Cycle: 1 TestList.Sample: 536 TrialCount: 142 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1143642 TestWord.DurationError: 99 TestWord.RTTime: 1144843 TestWord.ACC: 1 TestWord.RT: 1201 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1144391 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1144843 Keyrelease: 1146142 ResponseTime: 1299 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 537 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 537 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 538 Block: 2 DelDur: NullDur: Word: BROWN ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 23 Running: TestList TestList.Cycle: 1 TestList.Sample: 538 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 539 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 539 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 540 Block: 2 DelDur: NullDur: PlaceList: 67 Word: RIGID ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 540 TrialCount: 143 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1150223 TestWord.DurationError: 99 TestWord.RTTime: 1151083 TestWord.ACC: 1 TestWord.RT: 860 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1150973 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1151083 Keyrelease: 1152714 ResponseTime: 1631 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 541 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 541 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 542 Block: 2 DelDur: NullDur: PlaceList: 69 Word: ABUSIVE ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 542 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 543 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 543 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 544 Block: 2 DelDur: NullDur: PlaceList: 84 Word: ALONE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 544 TrialCount: 144 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1155288 TestWord.DurationError: 99 TestWord.RTTime: 1156155 TestWord.ACC: 1 TestWord.RT: 867 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1156038 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1156155 Keyrelease: 1157776 ResponseTime: 1622 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 545 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 545 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 546 Block: 2 DelDur: NullDur: PlaceList: 17 Word: DORMANT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 546 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 547 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 547 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 548 Block: 2 DelDur: NullDur: PlaceList: 5 Word: REPULSIVE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 548 TrialCount: 145 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1161353 TestWord.DurationError: 99 TestWord.RTTime: 1162435 TestWord.ACC: 1 TestWord.RT: 1082 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1162102 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1162435 Keyrelease: 1163853 ResponseTime: 1418 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 549 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 549 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 550 Block: 2 DelDur: NullDur: PlaceList: 57 Word: STERILE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 550 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 551 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 551 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 552 Block: 2 DelDur: NullDur: Word: WESTERN ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 85 Running: TestList TestList.Cycle: 1 TestList.Sample: 552 TrialCount: 146 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1173932 TestWord.DurationError: 100 TestWord.RTTime: 1175155 TestWord.ACC: 1 TestWord.RT: 1223 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1174682 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1175155 Keyrelease: 1176426 ResponseTime: 1271 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 553 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 553 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 554 Block: 2 DelDur: NullDur: Word: NERVOUS ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 76 Running: TestList TestList.Cycle: 1 TestList.Sample: 554 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 555 Block: 2 DelDur: NullDur: Word: CAUCASIAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 4 Running: TestList TestList.Cycle: 1 TestList.Sample: 555 TrialCount: 147 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1181980 TestWord.DurationError: 99 TestWord.RTTime: 1182771 TestWord.ACC: 1 TestWord.RT: 791 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1182729 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1182771 Keyrelease: 1184470 ResponseTime: 1699 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 556 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 556 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 557 Block: 2 DelDur: NullDur: Word: DISASTROUS ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 42 Running: TestList TestList.Cycle: 1 TestList.Sample: 557 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 558 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 558 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 559 Block: 2 DelDur: NullDur: PlaceList: 94 Word: ANGULAR ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 559 TrialCount: 148 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1187045 TestWord.DurationError: 99 TestWord.RTTime: 1188043 TestWord.ACC: 1 TestWord.RT: 998 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1187794 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1188043 Keyrelease: 1189542 ResponseTime: 1498 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 560 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 560 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 561 Block: 2 DelDur: NullDur: PlaceList: 62 Word: ILLUSORY ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 561 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 562 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 562 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 563 Block: 2 DelDur: NullDur: Word: UNREFINED ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 57 Running: TestList TestList.Cycle: 1 TestList.Sample: 563 TrialCount: 149 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1196625 TestWord.DurationError: 99 TestWord.RTTime: 1197899 TestWord.ACC: 1 TestWord.RT: 1274 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1197375 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1197900 Keyrelease: 1199118 ResponseTime: 1219 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 564 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 564 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 565 Block: 2 DelDur: NullDur: Word: FILTHY ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 40 Running: TestList TestList.Cycle: 1 TestList.Sample: 565 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 566 Block: 2 DelDur: NullDur: 7500 Running: TestList TestList.Cycle: 1 TestList.Sample: 566 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 567 Block: 2 DelDur: NullDur: Word: OMNIPOTENT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 102 Running: TestList TestList.Cycle: 1 TestList.Sample: 567 TrialCount: 150 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1208188 TestWord.DurationError: 99 TestWord.RTTime: 1209763 TestWord.ACC: 0 TestWord.RT: 1575 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1208938 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1209764 Keyrelease: 1210687 ResponseTime: 923 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 568 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 568 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 569 Block: 2 DelDur: NullDur: Word: CLOSE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 200 Running: TestList TestList.Cycle: 1 TestList.Sample: 569 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 570 Block: 2 DelDur: NullDur: Word: URBAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 70 Running: TestList TestList.Cycle: 1 TestList.Sample: 570 TrialCount: 151 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1216252 TestWord.DurationError: 100 TestWord.RTTime: 1217668 TestWord.ACC: 1 TestWord.RT: 1416 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1217002 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1217668 Keyrelease: 1218741 ResponseTime: 1073 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 571 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 571 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 572 Block: 2 DelDur: NullDur: Word: OUTRAGEOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 131 Running: TestList TestList.Cycle: 1 TestList.Sample: 572 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 573 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 573 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 574 Block: 2 DelDur: NullDur: Word: NORMAL ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 10 Running: TestList TestList.Cycle: 1 TestList.Sample: 574 TrialCount: 152 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1221817 TestWord.DurationError: 99 TestWord.RTTime: 1223108 TestWord.ACC: 1 TestWord.RT: 1291 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1222567 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1223108 Keyrelease: 1224313 ResponseTime: 1205 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 575 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 575 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 576 Block: 2 DelDur: NullDur: Word: ALOOF ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 89 Running: TestList TestList.Cycle: 1 TestList.Sample: 576 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 577 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 577 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 578 Block: 2 DelDur: NullDur: Word: SHABBY ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 94 Running: TestList TestList.Cycle: 1 TestList.Sample: 578 TrialCount: 153 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1226899 TestWord.DurationError: 99 TestWord.RTTime: 1228340 TestWord.ACC: 0 TestWord.RT: 1441 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1227648 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1228340 Keyrelease: 1229398 ResponseTime: 1058 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 579 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 579 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 580 Block: 2 DelDur: NullDur: Word: MORTAL ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 68 Running: TestList TestList.Cycle: 1 TestList.Sample: 580 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 581 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 581 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 582 Block: 2 DelDur: NullDur: Word: OBSCURE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 92 Running: TestList TestList.Cycle: 1 TestList.Sample: 582 TrialCount: 154 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1231980 TestWord.DurationError: 100 TestWord.RTTime: 1232868 TestWord.ACC: 1 TestWord.RT: 888 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1232730 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1232868 Keyrelease: 1234474 ResponseTime: 1606 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 583 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 583 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 584 Block: 2 DelDur: NullDur: Word: SOUTHERN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 199 Running: TestList TestList.Cycle: 1 TestList.Sample: 584 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 585 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 585 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 586 Block: 2 DelDur: NullDur: Word: FANCY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 66 Running: TestList TestList.Cycle: 1 TestList.Sample: 586 TrialCount: 155 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1243044 TestWord.DurationError: 99 TestWord.RTTime: 1243588 TestWord.ACC: 1 TestWord.RT: 544 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1243793 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1243797 Keyrelease: 1245537 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 587 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 587 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 588 Block: 2 DelDur: NullDur: Word: QUIET ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 148 Running: TestList TestList.Cycle: 1 TestList.Sample: 588 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 589 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 589 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 590 Block: 2 DelDur: NullDur: Word: SKETCHY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 128 Running: TestList TestList.Cycle: 1 TestList.Sample: 590 TrialCount: 156 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1250608 TestWord.DurationError: 99 TestWord.RTTime: 1251140 TestWord.ACC: 1 TestWord.RT: 532 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1251358 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1251362 Keyrelease: 1253101 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 591 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 591 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 592 Block: 2 DelDur: NullDur: Word: POLITICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 175 Running: TestList TestList.Cycle: 1 TestList.Sample: 592 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 593 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 593 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 594 Block: 2 DelDur: NullDur: PlaceList: 38 Word: BUOYANT ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 594 TrialCount: 157 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1255173 TestWord.DurationError: 100 TestWord.RTTime: 1256132 TestWord.ACC: 0 TestWord.RT: 959 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1255923 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1256132 Keyrelease: 1257672 ResponseTime: 1540 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 595 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 595 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 596 Block: 2 DelDur: NullDur: PlaceList: 90 Word: IMPURE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 596 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 597 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 597 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 598 Block: 2 DelDur: NullDur: PlaceList: 89 Word: ABUNDANT ListOrigin: List2B Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 598 TrialCount: 158 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1264753 TestWord.DurationError: 100 TestWord.RTTime: 1265876 TestWord.ACC: 0 TestWord.RT: 1123 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1265503 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1265877 Keyrelease: 1267244 ResponseTime: 1367 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 599 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 599 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 600 Block: 2 DelDur: NullDur: PlaceList: 51 Word: FISHY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 600 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 601 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 601 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 602 Block: 2 DelDur: NullDur: PlaceList: 41 Word: ALPINE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 602 TrialCount: 159 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1272318 TestWord.DurationError: 99 TestWord.RTTime: 1273356 TestWord.ACC: 1 TestWord.RT: 1038 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1273068 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1273357 Keyrelease: 1274816 ResponseTime: 1459 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 603 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 603 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 604 Block: 2 DelDur: NullDur: PlaceList: 70 Word: HOT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 604 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 605 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 605 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 606 Block: 2 DelDur: NullDur: Word: SOPHISTIC ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 127 Running: TestList TestList.Cycle: 1 TestList.Sample: 606 TrialCount: 160 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1282898 TestWord.DurationError: 99 TestWord.RTTime: 1283781 TestWord.ACC: 1 TestWord.RT: 883 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1283648 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1283781 Keyrelease: 1285388 ResponseTime: 1607 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 607 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 607 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 608 Block: 2 DelDur: NullDur: Word: MUSCULAR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 17 Running: TestList TestList.Cycle: 1 TestList.Sample: 608 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 609 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 609 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 610 Block: 2 DelDur: NullDur: Word: ABOMINABLE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 76 Running: TestList TestList.Cycle: 1 TestList.Sample: 610 TrialCount: 161 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1288963 TestWord.DurationError: 99 TestWord.RTTime: 1290141 TestWord.ACC: 0 TestWord.RT: 1178 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1289712 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1290141 Keyrelease: 1291452 ResponseTime: 1311 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 611 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 611 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 612 Block: 2 DelDur: NullDur: Word: INTENSE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 195 Running: TestList TestList.Cycle: 1 TestList.Sample: 612 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 613 Block: 2 DelDur: NullDur: PlaceList: 25 Word: CHEESY ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 613 TrialCount: 162 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1293011 TestWord.DurationError: 100 TestWord.RTTime: 1294461 TestWord.ACC: 0 TestWord.RT: 1450 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1293761 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1294461 Keyrelease: 1295505 ResponseTime: 1044 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 614 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 614 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 615 Block: 2 DelDur: NullDur: PlaceList: 64 Word: GEOMETRIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 615 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 616 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 616 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 617 Block: 2 DelDur: NullDur: Word: ALBANIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 32 Running: TestList TestList.Cycle: 1 TestList.Sample: 617 TrialCount: 163 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1298576 TestWord.DurationError: 100 TestWord.RTTime: 1299493 TestWord.ACC: 1 TestWord.RT: 917 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1299326 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1299493 Keyrelease: 1301072 ResponseTime: 1579 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 618 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 618 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 619 Block: 2 DelDur: NullDur: Word: DEAD ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 25 Running: TestList TestList.Cycle: 1 TestList.Sample: 619 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 620 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 620 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 621 Block: 2 DelDur: NullDur: Word: HUMOROUS ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 20 Running: TestList TestList.Cycle: 1 TestList.Sample: 621 TrialCount: 164 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1303158 TestWord.DurationError: 99 TestWord.RTTime: 1304317 TestWord.ACC: 1 TestWord.RT: 1159 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1303908 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1304317 Keyrelease: 1305657 ResponseTime: 1340 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 622 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 622 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 623 Block: 2 DelDur: NullDur: Word: MUNDANE ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 46 Running: TestList TestList.Cycle: 1 TestList.Sample: 623 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 624 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 624 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 625 Block: 2 DelDur: NullDur: PlaceList: 88 Word: ATHLETIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 625 TrialCount: 165 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1313238 TestWord.DurationError: 100 TestWord.RTTime: 1314517 TestWord.ACC: 1 TestWord.RT: 1279 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1313988 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1314517 Keyrelease: 1315734 ResponseTime: 1217 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 626 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 626 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 627 Block: 2 DelDur: NullDur: PlaceList: 43 Word: CLOUDY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 627 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 628 Block: 2 DelDur: NullDur: 8000 Running: TestList TestList.Cycle: 1 TestList.Sample: 628 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 629 Block: 2 DelDur: NullDur: Word: RIOTOUS ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 107 Running: TestList TestList.Cycle: 1 TestList.Sample: 629 TrialCount: 166 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1331316 TestWord.DurationError: 100 TestWord.RTTime: 1332157 TestWord.ACC: 1 TestWord.RT: 841 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1332066 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1332157 Keyrelease: 1333816 ResponseTime: 1658 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 630 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 630 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 631 Block: 2 DelDur: NullDur: Word: DUMPY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 53 Running: TestList TestList.Cycle: 1 TestList.Sample: 631 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 632 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 632 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 633 Block: 2 DelDur: NullDur: Word: DEVILISH ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 73 Running: TestList TestList.Cycle: 1 TestList.Sample: 633 TrialCount: 167 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1342396 TestWord.DurationError: 99 TestWord.RTTime: 1343637 TestWord.ACC: 1 TestWord.RT: 1241 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1343145 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1343638 Keyrelease: 1344897 ResponseTime: 1259 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 634 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 634 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 635 Block: 2 DelDur: NullDur: Word: CANADIAN ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 33 Running: TestList TestList.Cycle: 1 TestList.Sample: 635 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 636 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 636 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 637 Block: 2 DelDur: NullDur: PlaceList: 2 Word: LIQUID ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 637 TrialCount: 168 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1346978 TestWord.DurationError: 99 TestWord.RTTime: 1347797 TestWord.ACC: 1 TestWord.RT: 819 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1347727 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1347798 Keyrelease: 1349473 ResponseTime: 1675 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 638 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 638 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 639 Block: 2 DelDur: NullDur: PlaceList: 83 Word: HANDSOME ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 639 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 640 Block: 2 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 640 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 641 Block: 2 DelDur: NullDur: Word: CHORAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 156 Running: TestList TestList.Cycle: 1 TestList.Sample: 641 TrialCount: 169 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1356041 TestWord.DurationError: 100 TestWord.RTTime: 1356774 TestWord.ACC: 1 TestWord.RT: 733 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1356791 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1356795 Keyrelease: 1358536 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 642 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 642 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 643 Block: 2 DelDur: NullDur: Word: MONUMENTAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 186 Running: TestList TestList.Cycle: 1 TestList.Sample: 643 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 644 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 644 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 645 Block: 2 DelDur: NullDur: PlaceList: 26 Word: SPECIAL ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 645 TrialCount: 170 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1365105 TestWord.DurationError: 100 TestWord.RTTime: 1366134 TestWord.ACC: 1 TestWord.RT: 1029 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1365855 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1366134 Keyrelease: 1367594 ResponseTime: 1460 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 646 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 646 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 647 Block: 2 DelDur: NullDur: PlaceList: 58 Word: AROMATIC ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 647 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 648 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 648 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 649 Block: 2 DelDur: NullDur: Word: PROUD ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 196 Running: TestList TestList.Cycle: 1 TestList.Sample: 649 TrialCount: 171 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1375169 TestWord.DurationError: 99 TestWord.RTTime: 1376190 TestWord.ACC: 0 TestWord.RT: 1021 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1375918 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1376190 Keyrelease: 1377662 ResponseTime: 1472 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 650 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 650 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 651 Block: 2 DelDur: NullDur: Word: TUNISIAN ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 134 Running: TestList TestList.Cycle: 1 TestList.Sample: 651 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 652 Block: 2 DelDur: NullDur: Word: ARABIC ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 88 Running: TestList TestList.Cycle: 1 TestList.Sample: 652 TrialCount: 172 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1379217 TestWord.DurationError: 100 TestWord.RTTime: 1380462 TestWord.ACC: 0 TestWord.RT: 1245 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1379967 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1380462 Keyrelease: 1381707 ResponseTime: 1245 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 653 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 653 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 654 Block: 2 DelDur: NullDur: Word: RAINY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 111 Running: TestList TestList.Cycle: 1 TestList.Sample: 654 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 655 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 655 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 656 Block: 2 DelDur: NullDur: Word: FEDERAL ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 92 Running: TestList TestList.Cycle: 1 TestList.Sample: 656 TrialCount: 173 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1388281 TestWord.DurationError: 100 TestWord.RTTime: 1388910 TestWord.ACC: 0 TestWord.RT: 629 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1389031 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1389035 Keyrelease: 1390775 ResponseTime: 1740 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 657 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 657 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 658 Block: 2 DelDur: NullDur: Word: BROTHERLY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 90 Running: TestList TestList.Cycle: 1 TestList.Sample: 658 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 659 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 659 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 660 Block: 2 DelDur: NullDur: Word: COURAGEOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 83 Running: TestList TestList.Cycle: 1 TestList.Sample: 660 TrialCount: 174 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1394346 TestWord.DurationError: 99 TestWord.RTTime: 1395198 TestWord.ACC: 1 TestWord.RT: 852 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1395096 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1395198 Keyrelease: 1396846 ResponseTime: 1648 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 661 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 661 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 662 Block: 2 DelDur: NullDur: Word: SAMOAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 3 Running: TestList TestList.Cycle: 1 TestList.Sample: 662 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 663 Block: 2 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 663 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 664 Block: 2 DelDur: NullDur: Word: DESOLATE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 62 Running: TestList TestList.Cycle: 1 TestList.Sample: 664 TrialCount: 175 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1401927 TestWord.DurationError: 99 TestWord.RTTime: 1402758 TestWord.ACC: 1 TestWord.RT: 831 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1402677 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1402758 Keyrelease: 1404418 ResponseTime: 1659 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 665 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 665 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 666 Block: 2 DelDur: NullDur: Word: WICKED ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 90 Running: TestList TestList.Cycle: 1 TestList.Sample: 666 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 667 Block: 2 DelDur: NullDur: PlaceList: 96 Word: GOLDEN ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 667 TrialCount: 176 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1406975 TestWord.DurationError: 100 TestWord.RTTime: 1407974 TestWord.ACC: 1 TestWord.RT: 999 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1407725 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1407975 Keyrelease: 1409473 ResponseTime: 1498 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 668 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 668 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 669 Block: 2 DelDur: NullDur: PlaceList: 28 Word: HOSPITABLE ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 669 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 670 Block: 2 DelDur: NullDur: Word: FUZZY ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 52 Running: TestList TestList.Cycle: 1 TestList.Sample: 670 TrialCount: 177 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1411041 TestWord.DurationError: 99 TestWord.RTTime: 1412118 TestWord.ACC: 1 TestWord.RT: 1077 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1411791 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1412119 Keyrelease: 1413540 ResponseTime: 1421 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 671 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 671 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 672 Block: 2 DelDur: NullDur: Word: WELCOME ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 60 Running: TestList TestList.Cycle: 1 TestList.Sample: 672 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 673 Block: 2 DelDur: NullDur: 5500 Running: TestList TestList.Cycle: 1 TestList.Sample: 673 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 674 Block: 2 DelDur: NullDur: Word: RAW ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 95 Running: TestList TestList.Cycle: 1 TestList.Sample: 674 TrialCount: 178 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1424620 TestWord.DurationError: 99 TestWord.RTTime: 1425239 TestWord.ACC: 1 TestWord.RT: 619 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1425370 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1425373 Keyrelease: 1427113 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 675 Block: 2 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 675 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 676 Block: 2 DelDur: NullDur: Word: ADULT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 118 Running: TestList TestList.Cycle: 1 TestList.Sample: 676 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 677 Block: 2 DelDur: NullDur: PlaceList: 52 Word: SCHOLASTIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 677 TrialCount: 179 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1433667 TestWord.DurationError: 99 TestWord.RTTime: 1434399 TestWord.ACC: 0 TestWord.RT: 732 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1434417 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1434421 Keyrelease: 1436161 ResponseTime: 1741 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 678 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 678 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 679 Block: 2 DelDur: NullDur: PlaceList: 59 Word: OPPRESSIVE ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 679 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 680 Block: 2 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 680 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 681 Block: 2 DelDur: NullDur: Word: HILARIOUS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 181 Running: TestList TestList.Cycle: 1 TestList.Sample: 681 TrialCount: 180 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1443730 TestWord.DurationError: 100 TestWord.RTTime: 1444527 TestWord.ACC: 1 TestWord.RT: 797 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1444480 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1444527 Keyrelease: 1446225 ResponseTime: 1698 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 682 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 682 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 683 Block: 2 DelDur: NullDur: Word: DOCILE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 34 Running: TestList TestList.Cycle: 1 TestList.Sample: 683 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 684 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 684 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 685 Block: 2 DelDur: NullDur: Word: BAD ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 149 Running: TestList TestList.Cycle: 1 TestList.Sample: 685 TrialCount: 181 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1449795 TestWord.DurationError: 100 TestWord.RTTime: 1452191 TestWord.ACC: 0 TestWord.RT: 2396 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1450545 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1450575 Keyrelease: 1452283 ResponseTime: 1708 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 686 Block: 2 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 686 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 687 Block: 2 DelDur: NullDur: Word: MURDEROUS ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 59 Running: TestList TestList.Cycle: 1 TestList.Sample: 687 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 688 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 688 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 689 Block: 2 DelDur: NullDur: Word: FLUFFY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 180 Running: TestList TestList.Cycle: 1 TestList.Sample: 689 TrialCount: 182 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1458859 TestWord.DurationError: 99 TestWord.RTTime: 1459903 TestWord.ACC: 1 TestWord.RT: 1044 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1459609 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1459903 Keyrelease: 1461351 ResponseTime: 1448 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 690 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 690 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 691 Block: 2 DelDur: NullDur: Word: DISTINCT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 120 Running: TestList TestList.Cycle: 1 TestList.Sample: 691 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 692 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 692 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 693 Block: 2 DelDur: NullDur: PlaceList: 22 Word: FOREIGN ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 693 TrialCount: 183 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1464424 TestWord.DurationError: 99 TestWord.RTTime: 1465511 TestWord.ACC: 1 TestWord.RT: 1087 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1465174 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1465512 Keyrelease: 1466918 ResponseTime: 1406 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 694 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 694 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 695 Block: 2 DelDur: NullDur: PlaceList: 21 Word: LIVELY ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 695 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 696 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 696 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 697 Block: 2 DelDur: NullDur: Word: BANAL ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 70 Running: TestList TestList.Cycle: 1 TestList.Sample: 697 TrialCount: 184 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1469489 TestWord.DurationError: 99 TestWord.RTTime: 1470543 TestWord.ACC: 1 TestWord.RT: 1054 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1470239 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1470544 Keyrelease: 1471990 ResponseTime: 1446 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 698 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 698 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 699 Block: 2 DelDur: NullDur: Word: VILLAINOUS ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 96 Running: TestList TestList.Cycle: 1 TestList.Sample: 699 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 700 Block: 2 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 700 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 701 Block: 2 DelDur: NullDur: Word: UNTIDY ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 99 Running: TestList TestList.Cycle: 1 TestList.Sample: 701 TrialCount: 185 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1477070 TestWord.DurationError: 100 TestWord.RTTime: 1478335 TestWord.ACC: 0 TestWord.RT: 1265 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1477820 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1478336 Keyrelease: 1479567 ResponseTime: 1231 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 702 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 702 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 703 Block: 2 DelDur: NullDur: Word: MEDIEVAL ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 97 Running: TestList TestList.Cycle: 1 TestList.Sample: 703 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 704 Block: 2 DelDur: NullDur: PlaceList: 86 Word: STATELY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 704 TrialCount: 186 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1487133 TestWord.DurationError: 100 TestWord.RTTime: 1489128 TestWord.ACC: 1 TestWord.RT: 1995 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1487883 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1489128 Keyrelease: 1489623 ResponseTime: 495 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 705 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 705 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 706 Block: 2 DelDur: NullDur: PlaceList: 100 Word: IDYLLIC ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 706 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 707 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 707 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 708 Block: 2 DelDur: NullDur: Word: RUSSIAN ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 173 Running: TestList TestList.Cycle: 1 TestList.Sample: 708 TrialCount: 187 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1492698 TestWord.DurationError: 100 TestWord.RTTime: 1494176 TestWord.ACC: 1 TestWord.RT: 1478 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1493448 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1494176 Keyrelease: 1495193 ResponseTime: 1017 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 709 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 709 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 710 Block: 2 DelDur: NullDur: Word: LATE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 50 Running: TestList TestList.Cycle: 1 TestList.Sample: 710 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 711 Block: 2 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 711 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 712 Block: 2 DelDur: NullDur: Word: FUNNY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 145 Running: TestList TestList.Cycle: 1 TestList.Sample: 712 TrialCount: 188 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1500263 TestWord.DurationError: 99 TestWord.RTTime: 1501712 TestWord.ACC: 1 TestWord.RT: 1449 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1501012 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1501712 Keyrelease: 1502756 ResponseTime: 1044 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 713 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 713 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 714 Block: 2 DelDur: NullDur: Word: BLUE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 124 Running: TestList TestList.Cycle: 1 TestList.Sample: 714 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 715 Block: 2 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 715 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 716 Block: 2 DelDur: NullDur: Word: MELLOW ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 179 Running: TestList TestList.Cycle: 1 TestList.Sample: 716 TrialCount: 189 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1507327 TestWord.DurationError: 100 TestWord.RTTime: 1508320 TestWord.ACC: 1 TestWord.RT: 993 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1508077 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1508320 Keyrelease: 1509819 ResponseTime: 1499 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 717 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 717 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 718 Block: 2 DelDur: NullDur: Word: ARID ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 6 Running: TestList TestList.Cycle: 1 TestList.Sample: 718 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 719 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 719 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 720 Block: 2 DelDur: NullDur: Word: NICE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 123 Running: TestList TestList.Cycle: 1 TestList.Sample: 720 TrialCount: 190 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1513892 TestWord.DurationError: 99 TestWord.RTTime: 1514768 TestWord.ACC: 1 TestWord.RT: 876 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1514641 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1514768 Keyrelease: 1516387 ResponseTime: 1619 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 721 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 721 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 722 Block: 2 DelDur: NullDur: Word: POIGNANT ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 13 Running: TestList TestList.Cycle: 1 TestList.Sample: 722 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 723 Block: 2 DelDur: NullDur: Word: FOGGY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 135 Running: TestList TestList.Cycle: 1 TestList.Sample: 723 TrialCount: 191 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1518940 TestWord.DurationError: 100 TestWord.RTTime: 1519600 TestWord.ACC: 1 TestWord.RT: 660 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1519690 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1519695 Keyrelease: 1521435 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 724 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 724 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 725 Block: 2 DelDur: NullDur: Word: MANIACAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 79 Running: TestList TestList.Cycle: 1 TestList.Sample: 725 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 726 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 726 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 727 Block: 2 DelDur: NullDur: Word: NOISY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 63 Running: TestList TestList.Cycle: 1 TestList.Sample: 727 TrialCount: 192 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1523505 TestWord.DurationError: 100 TestWord.RTTime: 1524456 TestWord.ACC: 1 TestWord.RT: 951 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1524255 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1524456 Keyrelease: 1525994 ResponseTime: 1539 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 728 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 728 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 729 Block: 2 DelDur: NullDur: Word: ENGLISH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 75 Running: TestList TestList.Cycle: 1 TestList.Sample: 729 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 730 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 730 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 731 Block: 2 DelDur: NullDur: Word: FAIR ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 7 Running: TestList TestList.Cycle: 1 TestList.Sample: 731 TrialCount: 193 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1535068 TestWord.DurationError: 100 TestWord.RTTime: 1536312 TestWord.ACC: 0 TestWord.RT: 1244 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1535818 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1536312 Keyrelease: 1537571 ResponseTime: 1258 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 732 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 732 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 733 Block: 2 DelDur: NullDur: Word: BRAWNY ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 37 Running: TestList TestList.Cycle: 1 TestList.Sample: 733 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 734 Block: 2 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 734 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 735 Block: 2 DelDur: NullDur: PlaceList: 31 Word: TACKY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 735 TrialCount: 194 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1545149 TestWord.DurationError: 99 TestWord.RTTime: 1546816 TestWord.ACC: 0 TestWord.RT: 1667 TestWord.RESP: 3z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1545898 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1546153 Keyrelease: 1547638 ResponseTime: 1485 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 736 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 736 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 737 Block: 2 DelDur: NullDur: PlaceList: 1 Word: SWEATY ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 737 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 738 Block: 2 DelDur: NullDur: PlaceList: 39 Word: VETERINARY ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 738 TrialCount: 195 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1549197 TestWord.DurationError: 100 TestWord.RTTime: 1549984 TestWord.ACC: 1 TestWord.RT: 787 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1549947 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1549985 Keyrelease: 1551697 ResponseTime: 1712 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 739 Block: 2 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 739 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 740 Block: 2 DelDur: NullDur: PlaceList: 16 Word: CENTENNIAL ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 740 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 741 Block: 2 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 741 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 742 Block: 2 DelDur: NullDur: Word: RICH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 73 Running: TestList TestList.Cycle: 1 TestList.Sample: 742 TrialCount: 196 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1561777 TestWord.DurationError: 99 TestWord.RTTime: 1562769 TestWord.ACC: 0 TestWord.RT: 992 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1562526 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1562769 Keyrelease: 1564269 ResponseTime: 1500 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 743 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 743 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 744 Block: 2 DelDur: NullDur: Word: SHARP ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 23 Running: TestList TestList.Cycle: 1 TestList.Sample: 744 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 745 Block: 2 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 745 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 746 Block: 2 DelDur: NullDur: Word: BARE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 98 Running: TestList TestList.Cycle: 1 TestList.Sample: 746 TrialCount: 197 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1568341 TestWord.DurationError: 100 TestWord.RTTime: 1569345 TestWord.ACC: 0 TestWord.RT: 1004 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1569091 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1569345 Keyrelease: 1570831 ResponseTime: 1486 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 747 Block: 2 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 747 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 748 Block: 2 DelDur: NullDur: Word: BARBARIC ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 69 Running: TestList TestList.Cycle: 1 TestList.Sample: 748 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 749 Block: 2 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 749 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 750 Block: 2 DelDur: NullDur: Word: RAGGED ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 115 Running: TestList TestList.Cycle: 1 TestList.Sample: 750 TrialCount: 198 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1573906 TestWord.DurationError: 100 TestWord.RTTime: 1576299 TestWord.ACC: 0 TestWord.RT: 2393 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1574656 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1575801 Keyrelease: 1576395 ResponseTime: 594 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 751 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 751 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 752 Block: 2 DelDur: NullDur: Word: VAGUE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 68 Running: TestList TestList.Cycle: 1 TestList.Sample: 752 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 753 Block: 2 DelDur: NullDur: Word: AWESOME ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 9 Running: TestList TestList.Cycle: 1 TestList.Sample: 753 TrialCount: 199 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1577955 TestWord.DurationError: 100 TestWord.RTTime: 1580105 TestWord.ACC: 0 TestWord.RT: 2150 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1578705 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1580105 Keyrelease: 1580453 ResponseTime: 348 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 754 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 754 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 755 Block: 2 DelDur: NullDur: Word: CHIC ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 162 Running: TestList TestList.Cycle: 1 TestList.Sample: 755 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 756 Block: 2 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 756 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 757 Block: 2 DelDur: NullDur: Word: CLEAR ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 8 Running: TestList TestList.Cycle: 1 TestList.Sample: 757 TrialCount: 200 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1583037 TestWord.DurationError: 99 TestWord.RTTime: 1584241 TestWord.ACC: 0 TestWord.RT: 1204 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1583786 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1584241 Keyrelease: 1585526 ResponseTime: 1285 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 758 Block: 2 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 758 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 759 Block: 2 DelDur: NullDur: Word: SECRETIVE ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 50 Running: TestList TestList.Cycle: 1 TestList.Sample: 759 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: BreakProc TestList: 760 Block: 2 DelDur: NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 760 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 761 Block: 3 DelDur: NullDur: PlaceList: 8 Word: WARM ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 761 TrialCount: 201 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1591167 TestWord.DurationError: 100 TestWord.RTTime: 1592097 TestWord.ACC: 0 TestWord.RT: 930 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1591917 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1592097 Keyrelease: 1593664 ResponseTime: 1567 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 762 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 762 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 763 Block: 3 DelDur: NullDur: PlaceList: 19 Word: FRAGILE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 763 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 764 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 764 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 765 Block: 3 DelDur: NullDur: Word: FABULOUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 48 Running: TestList TestList.Cycle: 1 TestList.Sample: 765 TrialCount: 202 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1598765 TestWord.DurationError: 100 TestWord.RTTime: 1599777 TestWord.ACC: 0 TestWord.RT: 1012 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1599515 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1599777 Keyrelease: 1601263 ResponseTime: 1486 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 766 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 766 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 767 Block: 3 DelDur: NullDur: Word: CANADIAN ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 33 Running: TestList TestList.Cycle: 1 TestList.Sample: 767 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 768 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 768 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 769 Block: 3 DelDur: NullDur: Word: VAGRANT ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 31 Running: TestList TestList.Cycle: 1 TestList.Sample: 769 TrialCount: 203 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1609845 TestWord.DurationError: 99 TestWord.RTTime: 1610833 TestWord.ACC: 0 TestWord.RT: 988 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1610595 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1610834 Keyrelease: 1612334 ResponseTime: 1500 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 770 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 770 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 771 Block: 3 DelDur: NullDur: Word: BLEAK ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 26 Running: TestList TestList.Cycle: 1 TestList.Sample: 771 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 772 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 772 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 773 Block: 3 DelDur: NullDur: PlaceList: 86 Word: STATELY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 773 TrialCount: 204 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1620408 TestWord.DurationError: 100 TestWord.RTTime: 1621057 TestWord.ACC: 1 TestWord.RT: 649 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1621158 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1621162 Keyrelease: 1622902 ResponseTime: 1740 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 774 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 774 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 775 Block: 3 DelDur: NullDur: PlaceList: 12 Word: LOVABLE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 775 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 776 Block: 3 DelDur: NullDur: Word: CHEERY ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 30 Running: TestList TestList.Cycle: 1 TestList.Sample: 776 TrialCount: 205 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1624457 TestWord.DurationError: 100 TestWord.RTTime: 1625929 TestWord.ACC: 0 TestWord.RT: 1472 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1625207 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1625930 Keyrelease: 1626947 ResponseTime: 1017 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 777 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 777 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 778 Block: 3 DelDur: NullDur: Word: UNREFINED ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 57 Running: TestList TestList.Cycle: 1 TestList.Sample: 778 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 779 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 779 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 780 Block: 3 DelDur: NullDur: PlaceList: 47 Word: SICK ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 780 TrialCount: 206 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1629022 TestWord.DurationError: 100 TestWord.RTTime: 1629810 TestWord.ACC: 1 TestWord.RT: 788 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1629772 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1629810 Keyrelease: 1631510 ResponseTime: 1700 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 781 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 781 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 782 Block: 3 DelDur: NullDur: PlaceList: 66 Word: BEASTLY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 782 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 783 Block: 3 DelDur: NullDur: PlaceList: 64 Word: GEOMETRIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 783 TrialCount: 207 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1633071 TestWord.DurationError: 99 TestWord.RTTime: 1633938 TestWord.ACC: 1 TestWord.RT: 867 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1633821 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1633938 Keyrelease: 1635559 ResponseTime: 1621 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 784 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 784 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 785 Block: 3 DelDur: NullDur: PlaceList: 15 Word: TIDY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 785 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 786 Block: 3 DelDur: NullDur: Word: PECULIAR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 18 Running: TestList TestList.Cycle: 1 TestList.Sample: 786 TrialCount: 208 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1641135 TestWord.DurationError: 99 TestWord.RTTime: 1642634 TestWord.ACC: 0 TestWord.RT: 1499 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1641885 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1642634 Keyrelease: 1643623 ResponseTime: 989 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 787 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 787 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 788 Block: 3 DelDur: NullDur: Word: COSMIC ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 142 Running: TestList TestList.Cycle: 1 TestList.Sample: 788 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 789 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 789 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 790 Block: 3 DelDur: NullDur: Word: ROTTEN ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 44 Running: TestList TestList.Cycle: 1 TestList.Sample: 790 TrialCount: 209 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1651198 TestWord.DurationError: 100 TestWord.RTTime: 1652330 TestWord.ACC: 1 TestWord.RT: 1132 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1651948 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1652330 Keyrelease: 1653694 ResponseTime: 1364 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 791 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 791 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 792 Block: 3 DelDur: NullDur: Word: EPIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 81 Running: TestList TestList.Cycle: 1 TestList.Sample: 792 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 793 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 793 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 794 Block: 3 DelDur: NullDur: Word: COPIOUS ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 93 Running: TestList TestList.Cycle: 1 TestList.Sample: 794 TrialCount: 210 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1657780 TestWord.DurationError: 99 TestWord.RTTime: 1659050 TestWord.ACC: 1 TestWord.RT: 1270 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1658530 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1659050 Keyrelease: 1660280 ResponseTime: 1230 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 795 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 795 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 796 Block: 3 DelDur: NullDur: Word: CLINICAL ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 32 Running: TestList TestList.Cycle: 1 TestList.Sample: 796 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 797 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 797 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 798 Block: 3 DelDur: NullDur: Word: UNCULTURED ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 103 Running: TestList TestList.Cycle: 1 TestList.Sample: 798 TrialCount: 211 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1667360 TestWord.DurationError: 100 TestWord.RTTime: 1668554 TestWord.ACC: 1 TestWord.RT: 1194 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1668110 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1668554 Keyrelease: 1669852 ResponseTime: 1298 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 799 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 799 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 800 Block: 3 DelDur: NullDur: Word: CYNICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 114 Running: TestList TestList.Cycle: 1 TestList.Sample: 800 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 801 Block: 3 DelDur: NullDur: Word: NORMAL ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 10 Running: TestList TestList.Cycle: 1 TestList.Sample: 801 TrialCount: 212 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1676407 TestWord.DurationError: 100 TestWord.RTTime: 1677082 TestWord.ACC: 1 TestWord.RT: 675 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1677157 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1677161 Keyrelease: 1678901 ResponseTime: 1741 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 802 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 802 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 803 Block: 3 DelDur: NullDur: Word: GRASSY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 1 Running: TestList TestList.Cycle: 1 TestList.Sample: 803 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 804 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 804 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 805 Block: 3 DelDur: NullDur: Word: BABYISH ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 72 Running: TestList TestList.Cycle: 1 TestList.Sample: 805 TrialCount: 213 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1684471 TestWord.DurationError: 100 TestWord.RTTime: 1685858 TestWord.ACC: 1 TestWord.RT: 1387 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1685221 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1685859 Keyrelease: 1686969 ResponseTime: 1110 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 806 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 806 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 807 Block: 3 DelDur: NullDur: Word: DROLL ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 2 Running: TestList TestList.Cycle: 1 TestList.Sample: 807 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 808 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 808 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 809 Block: 3 DelDur: NullDur: Word: VAGUE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 68 Running: TestList TestList.Cycle: 1 TestList.Sample: 809 TrialCount: 214 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1690553 TestWord.DurationError: 99 TestWord.RTTime: 1691442 TestWord.ACC: 1 TestWord.RT: 889 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1691303 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1691443 Keyrelease: 1693050 ResponseTime: 1607 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 810 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 810 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 811 Block: 3 DelDur: NullDur: Word: QUIET ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 148 Running: TestList TestList.Cycle: 1 TestList.Sample: 811 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 812 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 812 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 813 Block: 3 DelDur: NullDur: Word: CANINE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 105 Running: TestList TestList.Cycle: 1 TestList.Sample: 813 TrialCount: 215 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1695135 TestWord.DurationError: 99 TestWord.RTTime: 1696058 TestWord.ACC: 1 TestWord.RT: 923 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1695884 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1696059 Keyrelease: 1697626 ResponseTime: 1567 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 814 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 814 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 815 Block: 3 DelDur: NullDur: Word: UNPLEASANT ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 141 Running: TestList TestList.Cycle: 1 TestList.Sample: 815 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 816 Block: 3 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 816 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 817 Block: 3 DelDur: NullDur: Word: ATYPICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 154 Running: TestList TestList.Cycle: 1 TestList.Sample: 817 TrialCount: 216 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1703699 TestWord.DurationError: 99 TestWord.RTTime: 1704571 TestWord.ACC: 1 TestWord.RT: 872 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1704448 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1704571 Keyrelease: 1706189 ResponseTime: 1618 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 818 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 818 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 819 Block: 3 DelDur: NullDur: Word: WINTRY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 7 Running: TestList TestList.Cycle: 1 TestList.Sample: 819 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 820 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 820 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 821 Block: 3 DelDur: NullDur: Word: ORNATE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 155 Running: TestList TestList.Cycle: 1 TestList.Sample: 821 TrialCount: 217 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1712263 TestWord.DurationError: 99 TestWord.RTTime: 1713699 TestWord.ACC: 1 TestWord.RT: 1436 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1713012 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1713699 Keyrelease: 1714756 ResponseTime: 1057 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 822 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 822 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 823 Block: 3 DelDur: NullDur: Word: SKETCHY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 128 Running: TestList TestList.Cycle: 1 TestList.Sample: 823 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 824 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 824 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 825 Block: 3 DelDur: NullDur: Word: MELLOW ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 179 Running: TestList TestList.Cycle: 1 TestList.Sample: 825 TrialCount: 218 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1718327 TestWord.DurationError: 100 TestWord.RTTime: 1719011 TestWord.ACC: 1 TestWord.RT: 684 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1719077 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1719081 Keyrelease: 1720819 ResponseTime: 1738 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 826 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 826 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 827 Block: 3 DelDur: NullDur: Word: UNCLEAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 58 Running: TestList TestList.Cycle: 1 TestList.Sample: 827 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 828 Block: 3 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 828 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 829 Block: 3 DelDur: NullDur: PlaceList: 2 Word: LIQUID ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 829 TrialCount: 219 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1725892 TestWord.DurationError: 99 TestWord.RTTime: 1726531 TestWord.ACC: 1 TestWord.RT: 639 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1726641 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1726646 Keyrelease: 1728387 ResponseTime: 1741 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 830 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 830 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 831 Block: 3 DelDur: NullDur: PlaceList: 24 Word: PUPAL ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 831 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 832 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 832 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 833 Block: 3 DelDur: NullDur: Word: PIOUS ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 71 Running: TestList TestList.Cycle: 1 TestList.Sample: 833 TrialCount: 220 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1731457 TestWord.DurationError: 99 TestWord.RTTime: 1732291 TestWord.ACC: 1 TestWord.RT: 834 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1732206 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1732291 Keyrelease: 1733950 ResponseTime: 1659 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 834 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 834 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 835 Block: 3 DelDur: NullDur: Word: VIVID ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 41 Running: TestList TestList.Cycle: 1 TestList.Sample: 835 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 836 Block: 3 DelDur: NullDur: Word: ENDURABLE ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 91 Running: TestList TestList.Cycle: 1 TestList.Sample: 836 TrialCount: 221 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1735505 TestWord.DurationError: 100 TestWord.RTTime: 1736163 TestWord.ACC: 0 TestWord.RT: 658 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1736255 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1736259 Keyrelease: 1738000 ResponseTime: 1741 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 837 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 837 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 838 Block: 3 DelDur: NullDur: Word: WELCOME ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 60 Running: TestList TestList.Cycle: 1 TestList.Sample: 838 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 839 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 839 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 840 Block: 3 DelDur: NullDur: PlaceList: 93 Word: DUSK ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 840 TrialCount: 222 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1742070 TestWord.DurationError: 99 TestWord.RTTime: 1742715 TestWord.ACC: 1 TestWord.RT: 645 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1742820 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1742824 Keyrelease: 1744562 ResponseTime: 1739 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 841 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 841 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 842 Block: 3 DelDur: NullDur: PlaceList: 30 Word: MODERN ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 842 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 843 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 843 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 844 Block: 3 DelDur: NullDur: Word: CARIBBEAN ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 137 Running: TestList TestList.Cycle: 1 TestList.Sample: 844 TrialCount: 223 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1747135 TestWord.DurationError: 99 TestWord.RTTime: 1747819 TestWord.ACC: 1 TestWord.RT: 684 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1747885 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1747889 Keyrelease: 1749629 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 845 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 845 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 846 Block: 3 DelDur: NullDur: Word: FUTURE ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 150 Running: TestList TestList.Cycle: 1 TestList.Sample: 846 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 847 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 847 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 848 Block: 3 DelDur: NullDur: PlaceList: 68 Word: VIETNAMESE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 848 TrialCount: 224 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1753700 TestWord.DurationError: 99 TestWord.RTTime: 1754739 TestWord.ACC: 1 TestWord.RT: 1039 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1754449 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1754740 Keyrelease: 1756196 ResponseTime: 1457 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 849 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 849 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 850 Block: 3 DelDur: NullDur: PlaceList: 27 Word: DELINQUENT ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 850 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 851 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 851 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 852 Block: 3 DelDur: NullDur: Word: CAUTIONARY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 2 Running: TestList TestList.Cycle: 1 TestList.Sample: 852 TrialCount: 225 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1761780 TestWord.DurationError: 100 TestWord.RTTime: 1762635 TestWord.ACC: 1 TestWord.RT: 855 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1762530 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1762636 Keyrelease: 1764269 ResponseTime: 1633 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 853 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 853 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 854 Block: 3 DelDur: NullDur: Word: ADULT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 118 Running: TestList TestList.Cycle: 1 TestList.Sample: 854 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 855 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 855 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 856 Block: 3 DelDur: NullDur: Word: BRAVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 168 Running: TestList TestList.Cycle: 1 TestList.Sample: 856 TrialCount: 226 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1766346 TestWord.DurationError: 99 TestWord.RTTime: 1767235 TestWord.ACC: 1 TestWord.RT: 889 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1767095 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1767236 Keyrelease: 1768841 ResponseTime: 1605 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 857 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 857 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 858 Block: 3 DelDur: NullDur: Word: DOCILE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 34 Running: TestList TestList.Cycle: 1 TestList.Sample: 858 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 859 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 859 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 860 Block: 3 DelDur: NullDur: Word: LEWD ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 78 Running: TestList TestList.Cycle: 1 TestList.Sample: 860 TrialCount: 227 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1771910 TestWord.DurationError: 100 TestWord.RTTime: 1772980 TestWord.ACC: 0 TestWord.RT: 1070 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1772660 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1772980 Keyrelease: 1774413 ResponseTime: 1433 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 861 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 861 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 862 Block: 3 DelDur: NullDur: Word: TENSE ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 82 Running: TestList TestList.Cycle: 1 TestList.Sample: 862 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 863 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 863 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 864 Block: 3 DelDur: NullDur: Word: AQUATIC ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 177 Running: TestList TestList.Cycle: 1 TestList.Sample: 864 TrialCount: 228 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1781491 TestWord.DurationError: 99 TestWord.RTTime: 1782420 TestWord.ACC: 1 TestWord.RT: 929 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1782241 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1782420 Keyrelease: 1783984 ResponseTime: 1564 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 865 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 865 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 866 Block: 3 DelDur: NullDur: Word: BOHEMIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 55 Running: TestList TestList.Cycle: 1 TestList.Sample: 866 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 867 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 867 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 868 Block: 3 DelDur: NullDur: Word: RUDE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 12 Running: TestList TestList.Cycle: 1 TestList.Sample: 868 TrialCount: 229 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1788055 TestWord.DurationError: 100 TestWord.RTTime: 1789812 TestWord.ACC: 0 TestWord.RT: 1757 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1788805 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1789812 Keyrelease: 1790547 ResponseTime: 735 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 869 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 869 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 870 Block: 3 DelDur: NullDur: Word: HAWAIIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 37 Running: TestList TestList.Cycle: 1 TestList.Sample: 870 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 871 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 871 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 872 Block: 3 DelDur: NullDur: Word: OBSCURE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 92 Running: TestList TestList.Cycle: 1 TestList.Sample: 872 TrialCount: 230 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1792621 TestWord.DurationError: 99 TestWord.RTTime: 1793436 TestWord.ACC: 1 TestWord.RT: 815 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1793370 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1793436 Keyrelease: 1795110 ResponseTime: 1674 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 873 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 873 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 874 Block: 3 DelDur: NullDur: Word: RAW ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 95 Running: TestList TestList.Cycle: 1 TestList.Sample: 874 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 875 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 875 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 876 Block: 3 DelDur: NullDur: Word: LATE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 50 Running: TestList TestList.Cycle: 1 TestList.Sample: 876 TrialCount: 231 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1804684 TestWord.DurationError: 99 TestWord.RTTime: 1805468 TestWord.ACC: 1 TestWord.RT: 784 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1805433 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1805468 Keyrelease: 1807183 ResponseTime: 1715 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 877 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 877 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 878 Block: 3 DelDur: NullDur: Word: ADMIRABLE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 189 Running: TestList TestList.Cycle: 1 TestList.Sample: 878 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 879 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 879 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 880 Block: 3 DelDur: NullDur: Word: BROWN ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 23 Running: TestList TestList.Cycle: 1 TestList.Sample: 880 TrialCount: 232 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1809765 TestWord.DurationError: 100 TestWord.RTTime: 1811196 TestWord.ACC: 1 TestWord.RT: 1431 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1810515 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1811196 Keyrelease: 1812254 ResponseTime: 1058 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 881 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 881 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 882 Block: 3 DelDur: NullDur: Word: FILTHY ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 40 Running: TestList TestList.Cycle: 1 TestList.Sample: 882 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 883 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 883 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 884 Block: 3 DelDur: NullDur: PlaceList: 80 Word: MALODOROUS ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 884 TrialCount: 233 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1821328 TestWord.DurationError: 100 TestWord.RTTime: 1822652 TestWord.ACC: 1 TestWord.RT: 1324 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1822078 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1822653 Keyrelease: 1823818 ResponseTime: 1165 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 885 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 885 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 886 Block: 3 DelDur: NullDur: PlaceList: 3 Word: CLIMACTIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 886 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 887 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 887 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 888 Block: 3 DelDur: NullDur: PlaceList: 32 Word: FAIRY ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 888 TrialCount: 234 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1833391 TestWord.DurationError: 100 TestWord.RTTime: 1834252 TestWord.ACC: 1 TestWord.RT: 861 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1834141 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1834253 Keyrelease: 1835886 ResponseTime: 1633 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 889 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 889 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 890 Block: 3 DelDur: NullDur: PlaceList: 29 Word: SMOOTH ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 890 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 891 Block: 3 DelDur: NullDur: 10500 Running: TestList TestList.Cycle: 1 TestList.Sample: 891 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 892 Block: 3 DelDur: NullDur: PlaceList: 89 Word: ABUNDANT ListOrigin: List2B Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 892 TrialCount: 235 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1853951 TestWord.DurationError: 100 TestWord.RTTime: 1855413 TestWord.ACC: 0 TestWord.RT: 1462 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1854701 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1855413 Keyrelease: 1856445 ResponseTime: 1032 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 893 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 893 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 894 Block: 3 DelDur: NullDur: PlaceList: 99 Word: IRISH ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 894 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 895 Block: 3 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 895 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 896 Block: 3 DelDur: NullDur: Word: ALIEN ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 116 Running: TestList TestList.Cycle: 1 TestList.Sample: 896 TrialCount: 236 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1868014 TestWord.DurationError: 99 TestWord.RTTime: 1868629 TestWord.ACC: 1 TestWord.RT: 615 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1868763 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1868767 Keyrelease: 1870508 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 897 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 897 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 898 Block: 3 DelDur: NullDur: Word: DEFICIENT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 158 Running: TestList TestList.Cycle: 1 TestList.Sample: 898 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 899 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 899 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 900 Block: 3 DelDur: NullDur: Word: SOUTHERN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 199 Running: TestList TestList.Cycle: 1 TestList.Sample: 900 TrialCount: 237 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1879577 TestWord.DurationError: 99 TestWord.RTTime: 1880301 TestWord.ACC: 1 TestWord.RT: 724 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1880326 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1880330 Keyrelease: 1882072 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 901 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 901 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 902 Block: 3 DelDur: NullDur: Word: FINAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 99 Running: TestList TestList.Cycle: 1 TestList.Sample: 902 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 903 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 903 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 904 Block: 3 DelDur: NullDur: Word: TYPICAL ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 4 Running: TestList TestList.Cycle: 1 TestList.Sample: 904 TrialCount: 238 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1885142 TestWord.DurationError: 99 TestWord.RTTime: 1886693 TestWord.ACC: 0 TestWord.RT: 1551 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1885891 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1886693 Keyrelease: 1887630 ResponseTime: 937 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 905 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 905 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 906 Block: 3 DelDur: NullDur: Word: SHALLOW ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 16 Running: TestList TestList.Cycle: 1 TestList.Sample: 906 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 907 Block: 3 DelDur: NullDur: Word: LUNAR ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 165 Running: TestList TestList.Cycle: 1 TestList.Sample: 907 TrialCount: 239 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1889190 TestWord.DurationError: 100 TestWord.RTTime: 1890085 TestWord.ACC: 1 TestWord.RT: 895 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1889940 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1890085 Keyrelease: 1891679 ResponseTime: 1594 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 908 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 908 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 909 Block: 3 DelDur: NullDur: Word: DREARY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 112 Running: TestList TestList.Cycle: 1 TestList.Sample: 909 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 910 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 910 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 911 Block: 3 DelDur: NullDur: PlaceList: 78 Word: STYLISH ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 911 TrialCount: 240 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1894755 TestWord.DurationError: 100 TestWord.RTTime: 1895733 TestWord.ACC: 1 TestWord.RT: 978 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1895505 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1895734 Keyrelease: 1897247 ResponseTime: 1513 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 912 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 912 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 913 Block: 3 DelDur: NullDur: PlaceList: 53 Word: SLUMMY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 913 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 914 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 914 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 915 Block: 3 DelDur: NullDur: Word: HYSTERICAL ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 87 Running: TestList TestList.Cycle: 1 TestList.Sample: 915 TrialCount: 241 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1904819 TestWord.DurationError: 99 TestWord.RTTime: 1906669 TestWord.ACC: 0 TestWord.RT: 1850 TestWord.RESP: z{-z} TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1905568 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1906598 Keyrelease: 1907307 ResponseTime: 709 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 916 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 916 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 917 Block: 3 DelDur: NullDur: Word: ACOUSTIC ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 29 Running: TestList TestList.Cycle: 1 TestList.Sample: 917 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 918 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 918 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 919 Block: 3 DelDur: NullDur: Word: ROUGH ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 58 Running: TestList TestList.Cycle: 1 TestList.Sample: 919 TrialCount: 242 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1917381 TestWord.DurationError: 100 TestWord.RTTime: 1918374 TestWord.ACC: 0 TestWord.RT: 993 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1918131 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1918374 Keyrelease: 1919874 ResponseTime: 1500 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 920 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 920 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 921 Block: 3 DelDur: NullDur: Word: MUNDANE ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 46 Running: TestList TestList.Cycle: 1 TestList.Sample: 921 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 922 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 922 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 923 Block: 3 DelDur: NullDur: Word: HILARIOUS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 181 Running: TestList TestList.Cycle: 1 TestList.Sample: 923 TrialCount: 243 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1923446 TestWord.DurationError: 100 TestWord.RTTime: 1924710 TestWord.ACC: 1 TestWord.RT: 1264 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1924196 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1924710 Keyrelease: 1925941 ResponseTime: 1231 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 924 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 924 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 925 Block: 3 DelDur: NullDur: Word: ARCTIC ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 10 Running: TestList TestList.Cycle: 1 TestList.Sample: 925 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 926 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 926 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 927 Block: 3 DelDur: NullDur: Word: HUMOROUS ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 20 Running: TestList TestList.Cycle: 1 TestList.Sample: 927 TrialCount: 244 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1932510 TestWord.DurationError: 99 TestWord.RTTime: 1933998 TestWord.ACC: 1 TestWord.RT: 1488 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1933260 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1933998 Keyrelease: 1935000 ResponseTime: 1002 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 928 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 928 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 929 Block: 3 DelDur: NullDur: Word: NERVOUS ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 76 Running: TestList TestList.Cycle: 1 TestList.Sample: 929 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 930 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 930 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 931 Block: 3 DelDur: NullDur: PlaceList: 46 Word: UNFRIENDLY ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 931 TrialCount: 245 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1941074 TestWord.DurationError: 99 TestWord.RTTime: 1941926 TestWord.ACC: 0 TestWord.RT: 852 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1941824 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1941926 Keyrelease: 1943571 ResponseTime: 1645 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 932 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 932 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 933 Block: 3 DelDur: NullDur: PlaceList: 50 Word: DOGMATIC ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 933 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 934 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 934 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 935 Block: 3 DelDur: NullDur: Word: SIMPLE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 49 Running: TestList TestList.Cycle: 1 TestList.Sample: 935 TrialCount: 246 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1947155 TestWord.DurationError: 100 TestWord.RTTime: 1949000 TestWord.ACC: 0 TestWord.RT: 1845 TestWord.RESP: x{-x} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1947905 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1948942 Keyrelease: 1949643 ResponseTime: 701 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 936 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 936 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 937 Block: 3 DelDur: NullDur: Word: CLOSE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 200 Running: TestList TestList.Cycle: 1 TestList.Sample: 937 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 938 Block: 3 DelDur: NullDur: Word: MALICIOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 82 Running: TestList TestList.Cycle: 1 TestList.Sample: 938 TrialCount: 247 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1952204 TestWord.DurationError: 99 TestWord.RTTime: 1953342 TestWord.ACC: 0 TestWord.RT: 1138 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1952954 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1953342 Keyrelease: 1954693 ResponseTime: 1351 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 939 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 939 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 940 Block: 3 DelDur: NullDur: Word: PRECIOUS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 194 Running: TestList TestList.Cycle: 1 TestList.Sample: 940 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 941 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 941 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 942 Block: 3 DelDur: NullDur: Word: MORTAL ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 68 Running: TestList TestList.Cycle: 1 TestList.Sample: 942 TrialCount: 248 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1962267 TestWord.DurationError: 100 TestWord.RTTime: 1963646 TestWord.ACC: 1 TestWord.RT: 1379 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1963017 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1963647 Keyrelease: 1964756 ResponseTime: 1109 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 943 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 943 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 944 Block: 3 DelDur: NullDur: Word: EMPTY ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 54 Running: TestList TestList.Cycle: 1 TestList.Sample: 944 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 945 Block: 3 DelDur: NullDur: Word: WICKED ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 90 Running: TestList TestList.Cycle: 1 TestList.Sample: 945 TrialCount: 249 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1966316 TestWord.DurationError: 99 TestWord.RTTime: 1967198 TestWord.ACC: 1 TestWord.RT: 882 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1967066 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1967199 Keyrelease: 1968805 ResponseTime: 1606 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 946 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 946 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 947 Block: 3 DelDur: NullDur: Word: SNOWY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 11 Running: TestList TestList.Cycle: 1 TestList.Sample: 947 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 948 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 948 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 949 Block: 3 DelDur: NullDur: Word: PROMINENT ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 79 Running: TestList TestList.Cycle: 1 TestList.Sample: 949 TrialCount: 250 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 1978379 TestWord.DurationError: 99 TestWord.RTTime: 1979599 TestWord.ACC: 0 TestWord.RT: 1220 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 1979129 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1979599 Keyrelease: 1980869 ResponseTime: 1270 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 950 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 950 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 951 Block: 3 DelDur: NullDur: Word: SANDY ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 75 Running: TestList TestList.Cycle: 1 TestList.Sample: 951 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 952 Block: 3 DelDur: NullDur: Word: ARID ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 6 Running: TestList TestList.Cycle: 1 TestList.Sample: 952 TrialCount: 251 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1983427 TestWord.DurationError: 100 TestWord.RTTime: 1984302 TestWord.ACC: 1 TestWord.RT: 875 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1984177 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1984303 Keyrelease: 1985923 ResponseTime: 1620 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 953 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 953 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 954 Block: 3 DelDur: NullDur: Word: FAVOURABLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 51 Running: TestList TestList.Cycle: 1 TestList.Sample: 954 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 955 Block: 3 DelDur: NullDur: Word: FAMILIAR ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 48 Running: TestList TestList.Cycle: 1 TestList.Sample: 955 TrialCount: 252 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 1992474 TestWord.DurationError: 100 TestWord.RTTime: 1993487 TestWord.ACC: 1 TestWord.RT: 1013 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 1993224 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 1993487 Keyrelease: 1994972 ResponseTime: 1485 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 956 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 956 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 957 Block: 3 DelDur: NullDur: Word: BOTHERSOME ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 80 Running: TestList TestList.Cycle: 1 TestList.Sample: 957 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 958 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 958 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 959 Block: 3 DelDur: NullDur: PlaceList: 57 Word: STERILE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 959 TrialCount: 253 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2001555 TestWord.DurationError: 99 TestWord.RTTime: 2002623 TestWord.ACC: 1 TestWord.RT: 1068 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2002305 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2002623 Keyrelease: 2004053 ResponseTime: 1431 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 960 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 960 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 961 Block: 3 DelDur: NullDur: PlaceList: 41 Word: ALPINE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 961 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 962 Block: 3 DelDur: NullDur: Word: INTENSE ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 195 Running: TestList TestList.Cycle: 1 TestList.Sample: 962 TrialCount: 254 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2005620 TestWord.DurationError: 100 TestWord.RTTime: 2006367 TestWord.ACC: 1 TestWord.RT: 747 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2006370 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2006374 Keyrelease: 2008116 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 963 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 963 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 964 Block: 3 DelDur: NullDur: Word: ORIENTAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 91 Running: TestList TestList.Cycle: 1 TestList.Sample: 964 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 965 Block: 3 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 965 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 966 Block: 3 DelDur: NullDur: Word: SANITARY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 35 Running: TestList TestList.Cycle: 1 TestList.Sample: 966 TrialCount: 255 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2013701 TestWord.DurationError: 100 TestWord.RTTime: 2014631 TestWord.ACC: 1 TestWord.RT: 930 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2014451 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2014631 Keyrelease: 2016197 ResponseTime: 1566 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 967 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 967 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 968 Block: 3 DelDur: NullDur: Word: BAD ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 149 Running: TestList TestList.Cycle: 1 TestList.Sample: 968 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 969 Block: 3 DelDur: NullDur: Word: BRAINY ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 27 Running: TestList TestList.Cycle: 1 TestList.Sample: 969 TrialCount: 256 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2017766 TestWord.DurationError: 100 TestWord.RTTime: 2018943 TestWord.ACC: 1 TestWord.RT: 1177 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2018516 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2018943 Keyrelease: 2020255 ResponseTime: 1312 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 970 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 970 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 971 Block: 3 DelDur: NullDur: Word: CHERUBIC ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 5 Running: TestList TestList.Cycle: 1 TestList.Sample: 971 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 972 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 972 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 973 Block: 3 DelDur: NullDur: Word: UNCIVIL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 129 Running: TestList TestList.Cycle: 1 TestList.Sample: 973 TrialCount: 257 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2022832 TestWord.DurationError: 99 TestWord.RTTime: 2024343 TestWord.ACC: 1 TestWord.RT: 1511 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2023581 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2024343 Keyrelease: 2025319 ResponseTime: 976 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 974 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 974 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 975 Block: 3 DelDur: NullDur: Word: MYSTERIOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 93 Running: TestList TestList.Cycle: 1 TestList.Sample: 975 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 976 Block: 3 DelDur: NullDur: PlaceList: 69 Word: ABUSIVE ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 976 TrialCount: 258 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2026880 TestWord.DurationError: 100 TestWord.RTTime: 2028231 TestWord.ACC: 1 TestWord.RT: 1351 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2027630 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2028231 Keyrelease: 2029368 ResponseTime: 1137 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 977 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 977 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 978 Block: 3 DelDur: NullDur: PlaceList: 23 Word: WORLDLY ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 978 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 979 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 979 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 980 Block: 3 DelDur: NullDur: PlaceList: 33 Word: ASIAN ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 980 TrialCount: 259 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2036444 TestWord.DurationError: 99 TestWord.RTTime: 2037231 TestWord.ACC: 1 TestWord.RT: 787 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2037194 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2037231 Keyrelease: 2038944 ResponseTime: 1712 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 981 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 981 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 982 Block: 3 DelDur: NullDur: PlaceList: 84 Word: ALONE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 982 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 983 Block: 3 DelDur: NullDur: Word: DWARFISH ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 151 Running: TestList TestList.Cycle: 1 TestList.Sample: 983 TrialCount: 260 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2040509 TestWord.DurationError: 100 TestWord.RTTime: 2042047 TestWord.ACC: 1 TestWord.RT: 1538 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2041259 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2042048 Keyrelease: 2042998 ResponseTime: 950 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 984 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 984 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 985 Block: 3 DelDur: NullDur: Word: DRY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 97 Running: TestList TestList.Cycle: 1 TestList.Sample: 985 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 986 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 986 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 987 Block: 3 DelDur: NullDur: Word: IMMIGRANT ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 39 Running: TestList TestList.Cycle: 1 TestList.Sample: 987 TrialCount: 261 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2045574 TestWord.DurationError: 100 TestWord.RTTime: 2046863 TestWord.ACC: 1 TestWord.RT: 1289 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2046324 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2046864 Keyrelease: 2048070 ResponseTime: 1206 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 988 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 988 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 989 Block: 3 DelDur: NullDur: Word: SECULAR ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 47 Running: TestList TestList.Cycle: 1 TestList.Sample: 989 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 990 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 990 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 991 Block: 3 DelDur: NullDur: Word: CLEAN ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 86 Running: TestList TestList.Cycle: 1 TestList.Sample: 991 TrialCount: 262 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2056138 TestWord.DurationError: 99 TestWord.RTTime: 2057200 TestWord.ACC: 0 TestWord.RT: 1062 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2056887 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2057200 Keyrelease: 2058633 ResponseTime: 1433 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 992 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 992 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 993 Block: 3 DelDur: NullDur: Word: AGRARIAN ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 66 Running: TestList TestList.Cycle: 1 TestList.Sample: 993 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 994 Block: 3 DelDur: NullDur: 7500 Running: TestList TestList.Cycle: 1 TestList.Sample: 994 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 995 Block: 3 DelDur: NullDur: Word: DELICATE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 19 Running: TestList TestList.Cycle: 1 TestList.Sample: 995 TrialCount: 263 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2073699 TestWord.DurationError: 99 TestWord.RTTime: 2074576 TestWord.ACC: 1 TestWord.RT: 877 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2074449 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2074576 Keyrelease: 2076197 ResponseTime: 1621 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 996 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 996 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 997 Block: 3 DelDur: NullDur: Word: DUSTY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 41 Running: TestList TestList.Cycle: 1 TestList.Sample: 997 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 998 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 998 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 999 Block: 3 DelDur: NullDur: Word: FEUDAL ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 38 Running: TestList TestList.Cycle: 1 TestList.Sample: 999 TrialCount: 264 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2079280 TestWord.DurationError: 100 TestWord.RTTime: 2080544 TestWord.ACC: 1 TestWord.RT: 1264 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2080030 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2080544 Keyrelease: 2081777 ResponseTime: 1233 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1000 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1000 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1001 Block: 3 DelDur: NullDur: Word: ETHICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 119 Running: TestList TestList.Cycle: 1 TestList.Sample: 1001 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1002 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1002 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1003 Block: 3 DelDur: NullDur: Word: COLLEGIATE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 36 Running: TestList TestList.Cycle: 1 TestList.Sample: 1003 TrialCount: 265 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2087861 TestWord.DurationError: 100 TestWord.RTTime: 2089088 TestWord.ACC: 1 TestWord.RT: 1227 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2088611 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2089088 Keyrelease: 2090359 ResponseTime: 1271 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1004 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1004 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1005 Block: 3 DelDur: NullDur: Word: CAUTIOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 139 Running: TestList TestList.Cycle: 1 TestList.Sample: 1005 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1006 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1006 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1007 Block: 3 DelDur: NullDur: Word: SEASONAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 14 Running: TestList TestList.Cycle: 1 TestList.Sample: 1007 TrialCount: 266 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2098941 TestWord.DurationError: 99 TestWord.RTTime: 2099824 TestWord.ACC: 1 TestWord.RT: 883 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2099691 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2099824 Keyrelease: 2101430 ResponseTime: 1606 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1008 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1008 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1009 Block: 3 DelDur: NullDur: Word: SOPHISTIC ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 127 Running: TestList TestList.Cycle: 1 TestList.Sample: 1009 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1010 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1010 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1011 Block: 3 DelDur: NullDur: PlaceList: 34 Word: EXPENSIVE ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1011 TrialCount: 267 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2105006 TestWord.DurationError: 99 TestWord.RTTime: 2106032 TestWord.ACC: 1 TestWord.RT: 1026 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2105755 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2106033 Keyrelease: 2107507 ResponseTime: 1474 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1012 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1012 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1013 Block: 3 DelDur: NullDur: PlaceList: 75 Word: MYTHICAL ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1013 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1014 Block: 3 DelDur: NullDur: 7500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1014 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1015 Block: 3 DelDur: NullDur: Word: SPIRITUAL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 147 Running: TestList TestList.Cycle: 1 TestList.Sample: 1015 TrialCount: 268 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2117585 TestWord.DurationError: 99 TestWord.RTTime: 2118425 TestWord.ACC: 1 TestWord.RT: 840 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2118335 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2118425 Keyrelease: 2120083 ResponseTime: 1658 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1016 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1016 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1017 Block: 3 DelDur: NullDur: Word: OUTRAGEOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 131 Running: TestList TestList.Cycle: 1 TestList.Sample: 1017 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1018 Block: 3 DelDur: NullDur: Word: PATRIOTIC ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 164 Running: TestList TestList.Cycle: 1 TestList.Sample: 1018 TrialCount: 269 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2121650 TestWord.DurationError: 100 TestWord.RTTime: 2122601 TestWord.ACC: 1 TestWord.RT: 951 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2122400 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2122601 Keyrelease: 2124142 ResponseTime: 1541 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1019 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1019 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1020 Block: 3 DelDur: NullDur: Word: REGAL ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 132 Running: TestList TestList.Cycle: 1 TestList.Sample: 1020 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1021 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1021 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1022 Block: 3 DelDur: NullDur: Word: TUNISIAN ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 134 Running: TestList TestList.Cycle: 1 TestList.Sample: 1022 TrialCount: 270 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2132214 TestWord.DurationError: 99 TestWord.RTTime: 2133337 TestWord.ACC: 1 TestWord.RT: 1123 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2132963 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2133337 Keyrelease: 2134714 ResponseTime: 1377 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1023 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1023 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1024 Block: 3 DelDur: NullDur: Word: DRIZZLY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 30 Running: TestList TestList.Cycle: 1 TestList.Sample: 1024 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1025 Block: 3 DelDur: NullDur: Word: DULL ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 34 Running: TestList TestList.Cycle: 1 TestList.Sample: 1025 TrialCount: 271 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2136279 TestWord.DurationError: 100 TestWord.RTTime: 2137449 TestWord.ACC: 1 TestWord.RT: 1170 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2137029 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2137449 Keyrelease: 2138772 ResponseTime: 1323 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1026 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1026 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1027 Block: 3 DelDur: NullDur: Word: INDUSTRIAL ListOrigin: List5B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 45 Running: TestList TestList.Cycle: 1 TestList.Sample: 1027 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1028 Block: 3 DelDur: NullDur: PlaceList: 54 Word: VICIOUS ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1028 TrialCount: 272 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2140328 TestWord.DurationError: 99 TestWord.RTTime: 2142081 TestWord.ACC: 0 TestWord.RT: 1753 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2141078 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2142081 Keyrelease: 2142817 ResponseTime: 736 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1029 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1029 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1030 Block: 3 DelDur: NullDur: PlaceList: 35 Word: LEGAL ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1030 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1031 Block: 3 DelDur: NullDur: 6500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1031 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1032 Block: 3 DelDur: NullDur: Word: SLEEPY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 87 Running: TestList TestList.Cycle: 1 TestList.Sample: 1032 TrialCount: 273 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2150891 TestWord.DurationError: 100 TestWord.RTTime: 2151929 TestWord.ACC: 0 TestWord.RT: 1038 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2151641 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2151929 Keyrelease: 2153390 ResponseTime: 1461 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1033 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1033 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1034 Block: 3 DelDur: NullDur: Word: ARTIFICIAL ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 67 Running: TestList TestList.Cycle: 1 TestList.Sample: 1034 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1035 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1035 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1036 Block: 3 DelDur: NullDur: Word: EGYPTIAN ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 161 Running: TestList TestList.Cycle: 1 TestList.Sample: 1036 TrialCount: 274 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2156473 TestWord.DurationError: 99 TestWord.RTTime: 2157537 TestWord.ACC: 1 TestWord.RT: 1064 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2157223 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2157537 Keyrelease: 2158970 ResponseTime: 1433 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1037 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1037 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1038 Block: 3 DelDur: NullDur: Word: DRAMATIC ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 197 Running: TestList TestList.Cycle: 1 TestList.Sample: 1038 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1039 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1039 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1040 Block: 3 DelDur: NullDur: Word: PERFUMED ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 57 Running: TestList TestList.Cycle: 1 TestList.Sample: 1040 TrialCount: 275 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2161555 TestWord.DurationError: 99 TestWord.RTTime: 2162857 TestWord.ACC: 0 TestWord.RT: 1302 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2162304 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2162857 Keyrelease: 2164047 ResponseTime: 1190 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1041 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1041 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1042 Block: 3 DelDur: NullDur: Word: UNKEPT ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 78 Running: TestList TestList.Cycle: 1 TestList.Sample: 1042 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1043 Block: 3 DelDur: NullDur: Word: ELEGANT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 166 Running: TestList TestList.Cycle: 1 TestList.Sample: 1043 TrialCount: 276 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2171601 TestWord.DurationError: 100 TestWord.RTTime: 2173145 TestWord.ACC: 1 TestWord.RT: 1544 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2172351 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2173145 Keyrelease: 2174096 ResponseTime: 950 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1044 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1044 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1045 Block: 3 DelDur: NullDur: Word: EXTERIOR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 15 Running: TestList TestList.Cycle: 1 TestList.Sample: 1045 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1046 Block: 3 DelDur: NullDur: Word: MYSTICAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 185 Running: TestList TestList.Cycle: 1 TestList.Sample: 1046 TrialCount: 277 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2175650 TestWord.DurationError: 100 TestWord.RTTime: 2176793 TestWord.ACC: 1 TestWord.RT: 1143 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2176400 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2176794 Keyrelease: 2178145 ResponseTime: 1351 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1047 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1047 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1048 Block: 3 DelDur: NullDur: Word: NOISY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 63 Running: TestList TestList.Cycle: 1 TestList.Sample: 1048 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1049 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1049 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1050 Block: 3 DelDur: NullDur: PlaceList: 95 Word: AMPHIBIOUS ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1050 TrialCount: 278 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2182215 TestWord.DurationError: 99 TestWord.RTTime: 2183393 TestWord.ACC: 1 TestWord.RT: 1178 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2182964 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2183394 Keyrelease: 2184704 ResponseTime: 1310 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1051 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1051 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1052 Block: 3 DelDur: NullDur: PlaceList: 17 Word: DORMANT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1052 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1053 Block: 3 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1053 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1054 Block: 3 DelDur: NullDur: Word: MONUMENTAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 186 Running: TestList TestList.Cycle: 1 TestList.Sample: 1054 TrialCount: 279 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2194278 TestWord.DurationError: 99 TestWord.RTTime: 2196042 TestWord.ACC: 1 TestWord.RT: 1764 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2195027 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2196042 Keyrelease: 2196777 ResponseTime: 736 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1055 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1055 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1056 Block: 3 DelDur: NullDur: Word: NICE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 123 Running: TestList TestList.Cycle: 1 TestList.Sample: 1056 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1057 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1057 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1058 Block: 3 DelDur: NullDur: Word: POIGNANT ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 13 Running: TestList TestList.Cycle: 1 TestList.Sample: 1058 TrialCount: 280 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2206857 TestWord.DurationError: 99 TestWord.RTTime: 2208034 TestWord.ACC: 0 TestWord.RT: 1177 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2207607 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2208034 Keyrelease: 2209358 ResponseTime: 1324 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1059 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1059 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1060 Block: 3 DelDur: NullDur: Word: RADICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 169 Running: TestList TestList.Cycle: 1 TestList.Sample: 1060 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1061 Block: 3 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1061 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1062 Block: 3 DelDur: NullDur: PlaceList: 70 Word: HOT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1062 TrialCount: 281 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2214438 TestWord.DurationError: 99 TestWord.RTTime: 2216370 TestWord.ACC: 0 TestWord.RT: 1932 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2215188 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2216266 Keyrelease: 2216926 ResponseTime: 660 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1063 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1063 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1064 Block: 3 DelDur: NullDur: PlaceList: 77 Word: UNWOMANLY ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1064 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1065 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1065 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1066 Block: 3 DelDur: NullDur: PlaceList: 83 Word: HANDSOME ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1066 TrialCount: 282 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2219003 TestWord.DurationError: 100 TestWord.RTTime: 2220530 TestWord.ACC: 1 TestWord.RT: 1527 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2219753 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2220530 Keyrelease: 2221493 ResponseTime: 963 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1067 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1067 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1068 Block: 3 DelDur: NullDur: PlaceList: 11 Word: JEWISH ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1068 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1069 Block: 3 DelDur: NullDur: PlaceList: 22 Word: FOREIGN ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1069 TrialCount: 283 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2224052 TestWord.DurationError: 99 TestWord.RTTime: 2225890 TestWord.ACC: 1 TestWord.RT: 1838 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2224801 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2225890 Keyrelease: 2226546 ResponseTime: 656 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1070 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1070 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1071 Block: 3 DelDur: NullDur: PlaceList: 63 Word: DECADENT ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1071 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1072 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1072 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1073 Block: 3 DelDur: NullDur: Word: ROWDY ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 8 Running: TestList TestList.Cycle: 1 TestList.Sample: 1073 TrialCount: 284 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2229616 TestWord.DurationError: 100 TestWord.RTTime: 2230746 TestWord.ACC: 1 TestWord.RT: 1130 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2230366 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2230746 Keyrelease: 2232110 ResponseTime: 1364 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1074 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1074 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1075 Block: 3 DelDur: NullDur: Word: BRIEF ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 98 Running: TestList TestList.Cycle: 1 TestList.Sample: 1075 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1076 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1076 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1077 Block: 3 DelDur: NullDur: Word: NOTORIOUS ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 38 Running: TestList TestList.Cycle: 1 TestList.Sample: 1077 TrialCount: 285 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2241679 TestWord.DurationError: 100 TestWord.RTTime: 2242898 TestWord.ACC: 1 TestWord.RT: 1219 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2242429 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2242898 Keyrelease: 2244168 ResponseTime: 1270 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1078 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1078 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1079 Block: 3 DelDur: NullDur: Word: OFFICIAL ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 56 Running: TestList TestList.Cycle: 1 TestList.Sample: 1079 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1080 Block: 3 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1080 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1081 Block: 3 DelDur: NullDur: Word: COMICAL ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 27 Running: TestList TestList.Cycle: 1 TestList.Sample: 1081 TrialCount: 286 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2248244 TestWord.DurationError: 100 TestWord.RTTime: 2250458 TestWord.ACC: 0 TestWord.RT: 2214 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2248994 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2249259 Keyrelease: 2250732 ResponseTime: 1473 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1082 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1082 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1083 Block: 3 DelDur: NullDur: Word: ANXIOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 144 Running: TestList TestList.Cycle: 1 TestList.Sample: 1083 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1084 Block: 3 DelDur: NullDur: Word: SNOBBISH ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 31 Running: TestList TestList.Cycle: 1 TestList.Sample: 1084 TrialCount: 287 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2252293 TestWord.DurationError: 99 TestWord.RTTime: 2253922 TestWord.ACC: 0 TestWord.RT: 1629 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2253042 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2253923 Keyrelease: 2254793 ResponseTime: 870 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1085 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1085 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1086 Block: 3 DelDur: NullDur: Word: BOYISH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 60 Running: TestList TestList.Cycle: 1 TestList.Sample: 1086 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1087 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1087 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1088 Block: 3 DelDur: NullDur: Word: GAUDY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 138 Running: TestList TestList.Cycle: 1 TestList.Sample: 1088 TrialCount: 288 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2262373 TestWord.DurationError: 99 TestWord.RTTime: 2264779 TestWord.ACC: 0 TestWord.RT: 2406 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2263123 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2263299 Keyrelease: 2264861 ResponseTime: 1562 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1089 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1089 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1090 Block: 3 DelDur: NullDur: Word: FORMAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 121 Running: TestList TestList.Cycle: 1 TestList.Sample: 1090 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1091 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1091 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1092 Block: 3 DelDur: NullDur: PlaceList: 10 Word: AMATEURISH ListOrigin: List7B Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1092 TrialCount: 289 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2274935 TestWord.DurationError: 100 TestWord.RTTime: 2276547 TestWord.ACC: 0 TestWord.RT: 1612 TestWord.RESP: x TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2275685 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2276547 Keyrelease: 2277429 ResponseTime: 882 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1093 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1093 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1094 Block: 3 DelDur: NullDur: PlaceList: 16 Word: CENTENNIAL ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1094 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1095 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1095 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1096 Block: 3 DelDur: NullDur: Word: FLAT ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 72 Running: TestList TestList.Cycle: 1 TestList.Sample: 1096 TrialCount: 290 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2285499 TestWord.DurationError: 99 TestWord.RTTime: 2286867 TestWord.ACC: 1 TestWord.RT: 1368 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2286249 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2286867 Keyrelease: 2287992 ResponseTime: 1125 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1097 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1097 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1098 Block: 3 DelDur: NullDur: Word: GOTHIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 33 Running: TestList TestList.Cycle: 1 TestList.Sample: 1098 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1099 Block: 3 DelDur: NullDur: PlaceList: 79 Word: AMORPHOUS ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1099 TrialCount: 291 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2293546 TestWord.DurationError: 100 TestWord.RTTime: 2295659 TestWord.ACC: 1 TestWord.RT: 2113 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2294296 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2295659 Keyrelease: 2296034 ResponseTime: 375 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1100 Block: 3 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1100 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1101 Block: 3 DelDur: NullDur: PlaceList: 1 Word: SWEATY ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1101 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1102 Block: 3 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1102 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1103 Block: 3 DelDur: NullDur: Word: RARE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 42 Running: TestList TestList.Cycle: 1 TestList.Sample: 1103 TrialCount: 292 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2303610 TestWord.DurationError: 99 TestWord.RTTime: 2304923 TestWord.ACC: 1 TestWord.RT: 1313 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2304360 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2304923 Keyrelease: 2306101 ResponseTime: 1178 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1104 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1104 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1105 Block: 3 DelDur: NullDur: Word: SUBTLE ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 11 Running: TestList TestList.Cycle: 1 TestList.Sample: 1105 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1106 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1106 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1107 Block: 3 DelDur: NullDur: Word: MESSY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 133 Running: TestList TestList.Cycle: 1 TestList.Sample: 1107 TrialCount: 293 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2310174 TestWord.DurationError: 100 TestWord.RTTime: 2311955 TestWord.ACC: 0 TestWord.RT: 1781 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2310924 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2311955 Keyrelease: 2312664 ResponseTime: 709 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1108 Block: 3 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1108 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1109 Block: 3 DelDur: NullDur: Word: DOMINANT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 122 Running: TestList TestList.Cycle: 1 TestList.Sample: 1109 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1110 Block: 3 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1110 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1111 Block: 3 DelDur: NullDur: Word: PERSONABLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 52 Running: TestList TestList.Cycle: 1 TestList.Sample: 1111 TrialCount: 294 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2317739 TestWord.DurationError: 99 TestWord.RTTime: 2318939 TestWord.ACC: 1 TestWord.RT: 1200 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2318488 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2318940 Keyrelease: 2320235 ResponseTime: 1295 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1112 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1112 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1113 Block: 3 DelDur: NullDur: Word: SALTY ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 86 Running: TestList TestList.Cycle: 1 TestList.Sample: 1113 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1114 Block: 3 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1114 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1115 Block: 3 DelDur: NullDur: PlaceList: 71 Word: HORRID ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1115 TrialCount: 295 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2326819 TestWord.DurationError: 100 TestWord.RTTime: 2327803 TestWord.ACC: 0 TestWord.RT: 984 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2327569 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2327804 Keyrelease: 2329317 ResponseTime: 1513 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1116 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1116 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1117 Block: 3 DelDur: NullDur: PlaceList: 18 Word: BLIND ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1117 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1118 Block: 3 DelDur: NullDur: Word: JOYOUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 136 Running: TestList TestList.Cycle: 1 TestList.Sample: 1118 TrialCount: 296 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2330885 TestWord.DurationError: 99 TestWord.RTTime: 2332235 TestWord.ACC: 1 TestWord.RT: 1350 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2331634 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2332236 Keyrelease: 2333375 ResponseTime: 1139 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1119 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1119 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1120 Block: 3 DelDur: NullDur: Word: CULINARY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 126 Running: TestList TestList.Cycle: 1 TestList.Sample: 1120 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1121 Block: 3 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1121 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1122 Block: 3 DelDur: NullDur: Word: UNHEALTHY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 9 Running: TestList TestList.Cycle: 1 TestList.Sample: 1122 TrialCount: 297 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2335450 TestWord.DurationError: 99 TestWord.RTTime: 2336868 TestWord.ACC: 1 TestWord.RT: 1418 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2336200 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2336868 Keyrelease: 2337951 ResponseTime: 1083 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1123 Block: 3 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1123 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1124 Block: 3 DelDur: NullDur: Word: ASYMMETRIC ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 80 Running: TestList TestList.Cycle: 1 TestList.Sample: 1124 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1125 Block: 3 DelDur: NullDur: Word: GROTESQUE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 64 Running: TestList TestList.Cycle: 1 TestList.Sample: 1125 TrialCount: 298 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2345513 TestWord.DurationError: 100 TestWord.RTTime: 2346756 TestWord.ACC: 1 TestWord.RT: 1243 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2346263 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2346756 Keyrelease: 2348015 ResponseTime: 1259 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1126 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1126 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1127 Block: 3 DelDur: NullDur: Word: MANLY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 106 Running: TestList TestList.Cycle: 1 TestList.Sample: 1127 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1128 Block: 3 DelDur: NullDur: PlaceList: 94 Word: ANGULAR ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1128 TrialCount: 299 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2349579 TestWord.DurationError: 99 TestWord.RTTime: 2350260 TestWord.ACC: 1 TestWord.RT: 681 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2350328 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2350332 Keyrelease: 2352072 ResponseTime: 1740 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1129 Block: 3 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1129 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1130 Block: 3 DelDur: NullDur: PlaceList: 31 Word: TACKY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1130 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1131 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1131 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1132 Block: 3 DelDur: NullDur: Word: FORENSIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 55 Running: TestList TestList.Cycle: 1 TestList.Sample: 1132 TrialCount: 300 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2359642 TestWord.DurationError: 100 TestWord.RTTime: 2360268 TestWord.ACC: 0 TestWord.RT: 626 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2360392 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2360396 Keyrelease: 2362136 ResponseTime: 1740 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1133 Block: 3 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1133 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1134 Block: 3 DelDur: NullDur: Word: ADAPTABLE ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 64 Running: TestList TestList.Cycle: 1 TestList.Sample: 1134 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1135 Block: 3 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1135 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: BreakProc TestList: 1136 Block: 3 DelDur: NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1136 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1137 Block: 4 DelDur: NullDur: PlaceList: 45 Word: VILE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1137 TrialCount: 301 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2391382 TestWord.DurationError: 100 TestWord.RTTime: 2392716 TestWord.ACC: 1 TestWord.RT: 1334 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2392132 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2392717 Keyrelease: 2393880 ResponseTime: 1163 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1138 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1138 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1139 Block: 4 DelDur: NullDur: PlaceList: 87 Word: FOOLISH ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1139 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1140 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1140 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1141 Block: 4 DelDur: NullDur: PlaceList: 28 Word: HOSPITABLE ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1141 TrialCount: 302 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2396964 TestWord.DurationError: 99 TestWord.RTTime: 2398132 TestWord.ACC: 1 TestWord.RT: 1168 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2397714 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2398133 Keyrelease: 2399456 ResponseTime: 1323 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1142 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1142 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1143 Block: 4 DelDur: NullDur: PlaceList: 82 Word: PLACID ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1143 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1144 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1144 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1145 Block: 4 DelDur: NullDur: Word: FLOWERY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 17 Running: TestList TestList.Cycle: 1 TestList.Sample: 1145 TrialCount: 303 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2406028 TestWord.DurationError: 99 TestWord.RTTime: 2407021 TestWord.ACC: 0 TestWord.RT: 993 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2406777 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2407021 Keyrelease: 2408519 ResponseTime: 1498 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1146 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1146 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1147 Block: 4 DelDur: NullDur: Word: FULL ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 15 Running: TestList TestList.Cycle: 1 TestList.Sample: 1147 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1148 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1148 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1149 Block: 4 DelDur: NullDur: Word: MEDIEVAL ListOrigin: List8A Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 97 Running: TestList TestList.Cycle: 1 TestList.Sample: 1149 TrialCount: 304 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2418090 TestWord.DurationError: 100 TestWord.RTTime: 2419165 TestWord.ACC: 0 TestWord.RT: 1075 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2418840 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2419165 Keyrelease: 2420582 ResponseTime: 1417 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1150 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1150 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1151 Block: 4 DelDur: NullDur: Word: RIGHTEOUS ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 13 Running: TestList TestList.Cycle: 1 TestList.Sample: 1151 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1152 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1152 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1153 Block: 4 DelDur: NullDur: PlaceList: 88 Word: ATHLETIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1153 TrialCount: 305 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2424155 TestWord.DurationError: 100 TestWord.RTTime: 2425293 TestWord.ACC: 1 TestWord.RT: 1138 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2424905 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2425293 Keyrelease: 2426645 ResponseTime: 1352 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1154 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1154 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1155 Block: 4 DelDur: NullDur: PlaceList: 91 Word: GAY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1155 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1156 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1156 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1157 Block: 4 DelDur: NullDur: Word: POMPOUS ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 49 Running: TestList TestList.Cycle: 1 TestList.Sample: 1157 TrialCount: 306 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2429220 TestWord.DurationError: 100 TestWord.RTTime: 2430877 TestWord.ACC: 1 TestWord.RT: 1657 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2429970 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2430877 Keyrelease: 2431721 ResponseTime: 844 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1158 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1158 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1159 Block: 4 DelDur: NullDur: Word: EVIL ListOrigin: List1B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 100 Running: TestList TestList.Cycle: 1 TestList.Sample: 1159 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1160 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1160 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1161 Block: 4 DelDur: NullDur: Word: POLITICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 175 Running: TestList TestList.Cycle: 1 TestList.Sample: 1161 TrialCount: 307 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2437801 TestWord.DurationError: 99 TestWord.RTTime: 2438941 TestWord.ACC: 1 TestWord.RT: 1140 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2438551 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2438941 Keyrelease: 2440293 ResponseTime: 1352 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1162 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1162 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1163 Block: 4 DelDur: NullDur: Word: OMNIPOTENT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 102 Running: TestList TestList.Cycle: 1 TestList.Sample: 1163 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1164 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1164 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1165 Block: 4 DelDur: NullDur: Word: VILLAINOUS ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 96 Running: TestList TestList.Cycle: 1 TestList.Sample: 1165 TrialCount: 308 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2442366 TestWord.DurationError: 100 TestWord.RTTime: 2443549 TestWord.ACC: 1 TestWord.RT: 1183 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2443116 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2443549 Keyrelease: 2444861 ResponseTime: 1312 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1166 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1166 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1167 Block: 4 DelDur: NullDur: Word: MEDICAL ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 21 Running: TestList TestList.Cycle: 1 TestList.Sample: 1167 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1168 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1168 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1169 Block: 4 DelDur: NullDur: Word: BANKRUPT ListOrigin: List6B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 14 Running: TestList TestList.Cycle: 1 TestList.Sample: 1169 TrialCount: 309 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2447431 TestWord.DurationError: 100 TestWord.RTTime: 2448253 TestWord.ACC: 1 TestWord.RT: 822 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2448181 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2448253 Keyrelease: 2449928 ResponseTime: 1675 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1170 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1170 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1171 Block: 4 DelDur: NullDur: Word: BARE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 98 Running: TestList TestList.Cycle: 1 TestList.Sample: 1171 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1172 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1172 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1173 Block: 4 DelDur: NullDur: PlaceList: 4 Word: DOMESTIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1173 TrialCount: 310 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2452013 TestWord.DurationError: 100 TestWord.RTTime: 2453757 TestWord.ACC: 0 TestWord.RT: 1744 TestWord.RESP: 3{-3} TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2452763 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2453717 Keyrelease: 2454501 ResponseTime: 783 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1174 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1174 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1175 Block: 4 DelDur: NullDur: PlaceList: 96 Word: GOLDEN ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1175 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1176 Block: 4 DelDur: NullDur: Word: JUVENILE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 36 Running: TestList TestList.Cycle: 1 TestList.Sample: 1176 TrialCount: 311 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2456062 TestWord.DurationError: 99 TestWord.RTTime: 2456957 TestWord.ACC: 0 TestWord.RT: 895 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2456812 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2456957 Keyrelease: 2458562 ResponseTime: 1604 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1177 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1177 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1178 Block: 4 DelDur: NullDur: Word: BRILLIANT ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 62 Running: TestList TestList.Cycle: 1 TestList.Sample: 1178 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1179 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1179 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1180 Block: 4 DelDur: NullDur: Word: ABOMINABLE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 76 Running: TestList TestList.Cycle: 1 TestList.Sample: 1180 TrialCount: 312 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2463143 TestWord.DurationError: 100 TestWord.RTTime: 2464173 TestWord.ACC: 1 TestWord.RT: 1030 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2463893 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2464174 Keyrelease: 2465634 ResponseTime: 1460 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1181 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1181 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1182 Block: 4 DelDur: NullDur: Word: ABYSMAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 182 Running: TestList TestList.Cycle: 1 TestList.Sample: 1182 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1183 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1183 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1184 Block: 4 DelDur: NullDur: PlaceList: 61 Word: SEEDY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1184 TrialCount: 313 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2467708 TestWord.DurationError: 100 TestWord.RTTime: 2468917 TestWord.ACC: 1 TestWord.RT: 1209 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2468458 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2468918 Keyrelease: 2470201 ResponseTime: 1283 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1185 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1185 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1186 Block: 4 DelDur: NullDur: PlaceList: 5 Word: REPULSIVE ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1186 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1187 Block: 4 DelDur: NullDur: PlaceList: 81 Word: AFFLUENT ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1187 TrialCount: 314 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2471757 TestWord.DurationError: 99 TestWord.RTTime: 2472790 TestWord.ACC: 1 TestWord.RT: 1033 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2472507 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2472790 Keyrelease: 2474251 ResponseTime: 1461 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1188 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1188 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1189 Block: 4 DelDur: NullDur: PlaceList: 100 Word: IDYLLIC ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1189 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1190 Block: 4 DelDur: NullDur: Word: ALBANIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 32 Running: TestList TestList.Cycle: 1 TestList.Sample: 1190 TrialCount: 315 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2476805 TestWord.DurationError: 100 TestWord.RTTime: 2477486 TestWord.ACC: 1 TestWord.RT: 681 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2477555 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2477559 Keyrelease: 2479300 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1191 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1191 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1192 Block: 4 DelDur: NullDur: Word: FUNNY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 145 Running: TestList TestList.Cycle: 1 TestList.Sample: 1192 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1193 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1193 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1194 Block: 4 DelDur: NullDur: Word: DISTINCT ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 120 Running: TestList TestList.Cycle: 1 TestList.Sample: 1194 TrialCount: 316 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2481371 TestWord.DurationError: 99 TestWord.RTTime: 2482638 TestWord.ACC: 1 TestWord.RT: 1267 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2482120 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2482638 Keyrelease: 2483867 ResponseTime: 1229 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1195 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1195 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1196 Block: 4 DelDur: NullDur: Word: CHEAP ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 193 Running: TestList TestList.Cycle: 1 TestList.Sample: 1196 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1197 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1197 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1198 Block: 4 DelDur: NullDur: Word: CREATIVE ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 146 Running: TestList TestList.Cycle: 1 TestList.Sample: 1198 TrialCount: 317 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2486952 TestWord.DurationError: 100 TestWord.RTTime: 2487566 TestWord.ACC: 1 TestWord.RT: 614 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2487702 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2487706 Keyrelease: 2489448 ResponseTime: 1741 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1199 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1199 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1200 Block: 4 DelDur: NullDur: Word: VAIN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 190 Running: TestList TestList.Cycle: 1 TestList.Sample: 1200 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1201 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1201 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1202 Block: 4 DelDur: NullDur: Word: PATERNAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 176 Running: TestList TestList.Cycle: 1 TestList.Sample: 1202 TrialCount: 318 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2493034 TestWord.DurationError: 99 TestWord.RTTime: 2494054 TestWord.ACC: 1 TestWord.RT: 1020 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2493783 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2494054 Keyrelease: 2495525 ResponseTime: 1471 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1203 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1203 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1204 Block: 4 DelDur: NullDur: Word: DETECTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 171 Running: TestList TestList.Cycle: 1 TestList.Sample: 1204 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1205 Block: 4 DelDur: NullDur: Word: TRASHY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 178 Running: TestList TestList.Cycle: 1 TestList.Sample: 1205 TrialCount: 319 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2497082 TestWord.DurationError: 100 TestWord.RTTime: 2497814 TestWord.ACC: 1 TestWord.RT: 732 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2497832 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2497837 Keyrelease: 2499578 ResponseTime: 1742 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1206 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1206 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1207 Block: 4 DelDur: NullDur: Word: DISASTROUS ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 42 Running: TestList TestList.Cycle: 1 TestList.Sample: 1207 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1208 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1208 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1209 Block: 4 DelDur: NullDur: Word: BOVINE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 81 Running: TestList TestList.Cycle: 1 TestList.Sample: 1209 TrialCount: 320 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2508662 TestWord.DurationError: 99 TestWord.RTTime: 2509678 TestWord.ACC: 1 TestWord.RT: 1016 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2509412 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2509678 Keyrelease: 2511151 ResponseTime: 1473 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1210 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1210 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1211 Block: 4 DelDur: NullDur: Word: WEIRD ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 140 Running: TestList TestList.Cycle: 1 TestList.Sample: 1211 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1212 Block: 4 DelDur: NullDur: Word: BLUE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 124 Running: TestList TestList.Cycle: 1 TestList.Sample: 1212 TrialCount: 321 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2513710 TestWord.DurationError: 100 TestWord.RTTime: 2514438 TestWord.ACC: 1 TestWord.RT: 728 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2514460 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2514465 Keyrelease: 2516205 ResponseTime: 1740 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1213 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1213 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1214 Block: 4 DelDur: NullDur: Word: AMBITIOUS ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 16 Running: TestList TestList.Cycle: 1 TestList.Sample: 1214 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1215 Block: 4 DelDur: NullDur: Word: PERSIAN ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 88 Running: TestList TestList.Cycle: 1 TestList.Sample: 1215 TrialCount: 322 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2517759 TestWord.DurationError: 100 TestWord.RTTime: 2518774 TestWord.ACC: 0 TestWord.RT: 1015 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2518509 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2518774 Keyrelease: 2520258 ResponseTime: 1485 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1216 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1216 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1217 Block: 4 DelDur: NullDur: Word: BARBARIC ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 69 Running: TestList TestList.Cycle: 1 TestList.Sample: 1217 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1218 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1218 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1219 Block: 4 DelDur: NullDur: Word: DIPLOMATIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 69 Running: TestList TestList.Cycle: 1 TestList.Sample: 1219 TrialCount: 323 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2523840 TestWord.DurationError: 100 TestWord.RTTime: 2524622 TestWord.ACC: 1 TestWord.RT: 782 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2524590 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2524622 Keyrelease: 2526335 ResponseTime: 1713 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1220 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1220 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1221 Block: 4 DelDur: NullDur: Word: ATTRACTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 170 Running: TestList TestList.Cycle: 1 TestList.Sample: 1221 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1222 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1222 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1223 Block: 4 DelDur: NullDur: Word: FAST ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 59 Running: TestList TestList.Cycle: 1 TestList.Sample: 1223 TrialCount: 324 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2535903 TestWord.DurationError: 100 TestWord.RTTime: 2536622 TestWord.ACC: 0 TestWord.RT: 719 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2536653 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2536657 Keyrelease: 2538398 ResponseTime: 1741 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1224 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1224 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1225 Block: 4 DelDur: NullDur: Word: CLASSY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 24 Running: TestList TestList.Cycle: 1 TestList.Sample: 1225 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1226 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1226 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1227 Block: 4 DelDur: NullDur: Word: AUSTRALIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 65 Running: TestList TestList.Cycle: 1 TestList.Sample: 1227 TrialCount: 325 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2546967 TestWord.DurationError: 99 TestWord.RTTime: 2547743 TestWord.ACC: 1 TestWord.RT: 776 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2547716 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2547743 Keyrelease: 2549457 ResponseTime: 1714 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1228 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1228 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1229 Block: 4 DelDur: NullDur: Word: HISTORICAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 22 Running: TestList TestList.Cycle: 1 TestList.Sample: 1229 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1230 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1230 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1231 Block: 4 DelDur: NullDur: Word: GENEROUS ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 143 Running: TestList TestList.Cycle: 1 TestList.Sample: 1231 TrialCount: 326 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2556530 TestWord.DurationError: 100 TestWord.RTTime: 2558063 TestWord.ACC: 1 TestWord.RT: 1533 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2557280 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2558063 Keyrelease: 2559026 ResponseTime: 963 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1232 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1232 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1233 Block: 4 DelDur: NullDur: Word: EXCLUSIVE ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 94 Running: TestList TestList.Cycle: 1 TestList.Sample: 1233 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1234 Block: 4 DelDur: NullDur: PlaceList: 97 Word: LONELY ListOrigin: List3A Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1234 TrialCount: 327 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2564578 TestWord.DurationError: 99 TestWord.RTTime: 2566215 TestWord.ACC: 0 TestWord.RT: 1637 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2565327 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2566215 Keyrelease: 2567071 ResponseTime: 856 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1235 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1235 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1236 Block: 4 DelDur: NullDur: PlaceList: 25 Word: CHEESY ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1236 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1237 Block: 4 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1237 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1238 Block: 4 DelDur: NullDur: Word: TECHY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 101 Running: TestList TestList.Cycle: 1 TestList.Sample: 1238 TrialCount: 328 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2577140 TestWord.DurationError: 100 TestWord.RTTime: 2577799 TestWord.ACC: 1 TestWord.RT: 659 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2577890 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2577895 Keyrelease: 2579633 ResponseTime: 1738 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1239 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1239 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1240 Block: 4 DelDur: NullDur: Word: INDECENT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 160 Running: TestList TestList.Cycle: 1 TestList.Sample: 1240 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1241 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1241 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1242 Block: 4 DelDur: NullDur: PlaceList: 48 Word: RECENT ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1242 TrialCount: 329 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2584205 TestWord.DurationError: 99 TestWord.RTTime: 2585175 TestWord.ACC: 1 TestWord.RT: 970 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2584955 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2585175 Keyrelease: 2586700 ResponseTime: 1525 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1243 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1243 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1244 Block: 4 DelDur: NullDur: PlaceList: 74 Word: AFRICAN ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1244 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1245 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1245 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1246 Block: 4 DelDur: NullDur: Word: SHARP ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 23 Running: TestList TestList.Cycle: 1 TestList.Sample: 1246 TrialCount: 330 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2589270 TestWord.DurationError: 100 TestWord.RTTime: 2590127 TestWord.ACC: 1 TestWord.RT: 857 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2590020 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2590127 Keyrelease: 2591759 ResponseTime: 1632 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1247 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1247 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1248 Block: 4 DelDur: NullDur: Word: BUFF ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 110 Running: TestList TestList.Cycle: 1 TestList.Sample: 1248 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1249 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1249 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1250 Block: 4 DelDur: NullDur: Word: ALGEBRAIC ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 6 Running: TestList TestList.Cycle: 1 TestList.Sample: 1250 TrialCount: 331 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2593835 TestWord.DurationError: 100 TestWord.RTTime: 2595303 TestWord.ACC: 1 TestWord.RT: 1468 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2594585 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2595303 Keyrelease: 2596335 ResponseTime: 1031 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1251 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1251 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1252 Block: 4 DelDur: NullDur: Word: BROTHERLY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 90 Running: TestList TestList.Cycle: 1 TestList.Sample: 1252 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1253 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1253 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1254 Block: 4 DelDur: NullDur: Word: ITALIAN ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 96 Running: TestList TestList.Cycle: 1 TestList.Sample: 1254 TrialCount: 332 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2605415 TestWord.DurationError: 99 TestWord.RTTime: 2606271 TestWord.ACC: 1 TestWord.RT: 856 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2606165 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2606272 Keyrelease: 2607916 ResponseTime: 1644 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1255 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1255 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1256 Block: 4 DelDur: NullDur: Word: AFLOAT ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 163 Running: TestList TestList.Cycle: 1 TestList.Sample: 1256 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1257 Block: 4 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1257 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1258 Block: 4 DelDur: NullDur: Word: FLUFFY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 180 Running: TestList TestList.Cycle: 1 TestList.Sample: 1258 TrialCount: 333 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2613496 TestWord.DurationError: 99 TestWord.RTTime: 2614975 TestWord.ACC: 1 TestWord.RT: 1479 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2614245 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2614976 Keyrelease: 2615992 ResponseTime: 1017 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1259 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1259 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1260 Block: 4 DelDur: NullDur: Word: COLD ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 24 Running: TestList TestList.Cycle: 1 TestList.Sample: 1260 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1261 Block: 4 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1261 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1262 Block: 4 DelDur: NullDur: Word: LITERARY ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 198 Running: TestList TestList.Cycle: 1 TestList.Sample: 1262 TrialCount: 334 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2627575 TestWord.DurationError: 99 TestWord.RTTime: 2628856 TestWord.ACC: 0 TestWord.RT: 1281 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2628324 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2628856 Keyrelease: 2630074 ResponseTime: 1218 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1263 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1263 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1264 Block: 4 DelDur: NullDur: Word: AWFUL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 117 Running: TestList TestList.Cycle: 1 TestList.Sample: 1264 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1265 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1265 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1266 Block: 4 DelDur: NullDur: Word: BOURGEOIS ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 183 Running: TestList TestList.Cycle: 1 TestList.Sample: 1266 TrialCount: 335 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2633156 TestWord.DurationError: 100 TestWord.RTTime: 2634040 TestWord.ACC: 1 TestWord.RT: 884 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2633906 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2634040 Keyrelease: 2635646 ResponseTime: 1606 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1267 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1267 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1268 Block: 4 DelDur: NullDur: Word: PROUD ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 196 Running: TestList TestList.Cycle: 1 TestList.Sample: 1268 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1269 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1269 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1270 Block: 4 DelDur: NullDur: PlaceList: 51 Word: FISHY ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1270 TrialCount: 336 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2638721 TestWord.DurationError: 99 TestWord.RTTime: 2639944 TestWord.ACC: 1 TestWord.RT: 1223 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2639471 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2639944 Keyrelease: 2641217 ResponseTime: 1273 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1271 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1271 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1272 Block: 4 DelDur: NullDur: PlaceList: 62 Word: ILLUSORY ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1272 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1273 Block: 4 DelDur: NullDur: Word: NEEDY ListOrigin: List1B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 35 Running: TestList TestList.Cycle: 1 TestList.Sample: 1273 TrialCount: 337 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2648784 TestWord.DurationError: 100 TestWord.RTTime: 2650176 TestWord.ACC: 1 TestWord.RT: 1392 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2649534 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2650176 Keyrelease: 2651273 ResponseTime: 1097 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1274 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1274 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1275 Block: 4 DelDur: NullDur: Word: VULGAR ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 28 Running: TestList TestList.Cycle: 1 TestList.Sample: 1275 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1276 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1276 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1277 Block: 4 DelDur: NullDur: Word: FUZZY ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 52 Running: TestList TestList.Cycle: 1 TestList.Sample: 1277 TrialCount: 338 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2659848 TestWord.DurationError: 100 TestWord.RTTime: 2660776 TestWord.ACC: 0 TestWord.RT: 928 TestWord.RESP: z TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2660597 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2660776 Keyrelease: 2662344 ResponseTime: 1567 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1278 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1278 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1279 Block: 4 DelDur: NullDur: Word: INTACT ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 53 Running: TestList TestList.Cycle: 1 TestList.Sample: 1279 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1280 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1280 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1281 Block: 4 DelDur: NullDur: Word: HOLY ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 74 Running: TestList TestList.Cycle: 1 TestList.Sample: 1281 TrialCount: 339 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2665429 TestWord.DurationError: 100 TestWord.RTTime: 2667047 TestWord.ACC: 1 TestWord.RT: 1618 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2666179 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2667048 Keyrelease: 2667929 ResponseTime: 881 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1282 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1282 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1283 Block: 4 DelDur: NullDur: Word: DEVILISH ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 73 Running: TestList TestList.Cycle: 1 TestList.Sample: 1283 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1284 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1284 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1285 Block: 4 DelDur: NullDur: Word: GENTLE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 44 Running: TestList TestList.Cycle: 1 TestList.Sample: 1285 TrialCount: 340 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2670011 TestWord.DurationError: 100 TestWord.RTTime: 2671248 TestWord.ACC: 1 TestWord.RT: 1237 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2670761 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2671249 Keyrelease: 2672505 ResponseTime: 1257 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1286 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1286 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1287 Block: 4 DelDur: NullDur: Word: AGED ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 192 Running: TestList TestList.Cycle: 1 TestList.Sample: 1287 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1288 Block: 4 DelDur: NullDur: 1500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1288 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1289 Block: 4 DelDur: NullDur: PlaceList: 44 Word: CONFIDENT ListOrigin: List4A Task: Place Rating: 1 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1289 TrialCount: 341 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2675576 TestWord.DurationError: 99 TestWord.RTTime: 2676528 TestWord.ACC: 0 TestWord.RT: 952 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2676326 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2676529 Keyrelease: 2678068 ResponseTime: 1539 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1290 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1290 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1291 Block: 4 DelDur: NullDur: PlaceList: 92 Word: TRIUMPHANT ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1291 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1292 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1292 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1293 Block: 4 DelDur: NullDur: Word: FANCY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 66 Running: TestList TestList.Cycle: 1 TestList.Sample: 1293 TrialCount: 342 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2686639 TestWord.DurationError: 100 TestWord.RTTime: 2687905 TestWord.ACC: 1 TestWord.RT: 1266 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2687389 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2687905 Keyrelease: 2689136 ResponseTime: 1231 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1294 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1294 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1295 Block: 4 DelDur: NullDur: Word: CHORAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 156 Running: TestList TestList.Cycle: 1 TestList.Sample: 1295 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1296 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1296 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1297 Block: 4 DelDur: NullDur: Word: FUNKY ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 153 Running: TestList TestList.Cycle: 1 TestList.Sample: 1297 TrialCount: 343 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2697719 TestWord.DurationError: 100 TestWord.RTTime: 2699489 TestWord.ACC: 0 TestWord.RT: 1770 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2698469 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2699489 Keyrelease: 2700213 ResponseTime: 724 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1298 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1298 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1299 Block: 4 DelDur: NullDur: Word: RICH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 73 Running: TestList TestList.Cycle: 1 TestList.Sample: 1299 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1300 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1300 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1301 Block: 4 DelDur: NullDur: PlaceList: 6 Word: CLERICAL ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1301 TrialCount: 344 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2702784 TestWord.DurationError: 100 TestWord.RTTime: 2703681 TestWord.ACC: 1 TestWord.RT: 897 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2703534 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2703681 Keyrelease: 2705276 ResponseTime: 1595 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1302 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1302 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1303 Block: 4 DelDur: NullDur: PlaceList: 9 Word: CLEVER ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1303 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1304 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1304 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1305 Block: 4 DelDur: NullDur: Word: AGLOW ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 77 Running: TestList TestList.Cycle: 1 TestList.Sample: 1305 TrialCount: 345 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2712348 TestWord.DurationError: 99 TestWord.RTTime: 2713249 TestWord.ACC: 1 TestWord.RT: 901 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2713098 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2713249 Keyrelease: 2714843 ResponseTime: 1594 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1306 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1306 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1307 Block: 4 DelDur: NullDur: Word: JAMAICAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 5 Running: TestList TestList.Cycle: 1 TestList.Sample: 1307 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1308 Block: 4 DelDur: NullDur: Word: BOTANICAL ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 104 Running: TestList TestList.Cycle: 1 TestList.Sample: 1308 TrialCount: 346 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2716397 TestWord.DurationError: 99 TestWord.RTTime: 2717473 TestWord.ACC: 1 TestWord.RT: 1076 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2717146 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2717473 Keyrelease: 2718893 ResponseTime: 1420 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1309 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1309 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1310 Block: 4 DelDur: NullDur: Word: DARK ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 100 Running: TestList TestList.Cycle: 1 TestList.Sample: 1310 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1311 Block: 4 DelDur: NullDur: Word: SECRETIVE ListOrigin: List5B Task: Pleasant Rating: 1 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 50 Running: TestList TestList.Cycle: 1 TestList.Sample: 1311 TrialCount: 347 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2721462 TestWord.DurationError: 99 TestWord.RTTime: 2722329 TestWord.ACC: 0 TestWord.RT: 867 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2722211 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2722329 Keyrelease: 2723960 ResponseTime: 1631 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1312 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1312 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1313 Block: 4 DelDur: NullDur: Word: BRIDAL ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 12 Running: TestList TestList.Cycle: 1 TestList.Sample: 1313 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1314 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1314 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1315 Block: 4 DelDur: NullDur: PlaceList: 7 Word: PATHOLOGIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1315 TrialCount: 348 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2727543 TestWord.DurationError: 100 TestWord.RTTime: 2728193 TestWord.ACC: 0 TestWord.RT: 650 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2728293 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2728297 Keyrelease: 2730036 ResponseTime: 1739 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1316 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1316 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1317 Block: 4 DelDur: NullDur: PlaceList: 60 Word: OUTDOOR ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1317 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1318 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1318 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1319 Block: 4 DelDur: NullDur: PlaceList: 56 Word: ABLAZE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1319 TrialCount: 349 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2737607 TestWord.DurationError: 99 TestWord.RTTime: 2738769 TestWord.ACC: 1 TestWord.RT: 1162 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2738356 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2738769 Keyrelease: 2740095 ResponseTime: 1325 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1320 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1320 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1321 Block: 4 DelDur: NullDur: PlaceList: 40 Word: FAINT ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1321 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1322 Block: 4 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1322 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1323 Block: 4 DelDur: NullDur: Word: AFLAME ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 184 Running: TestList TestList.Cycle: 1 TestList.Sample: 1323 TrialCount: 350 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2746670 TestWord.DurationError: 100 TestWord.RTTime: 2747761 TestWord.ACC: 1 TestWord.RT: 1091 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2747420 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2747762 Keyrelease: 2749167 ResponseTime: 1405 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1324 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1324 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1325 Block: 4 DelDur: NullDur: Word: CERAMIC ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 89 Running: TestList TestList.Cycle: 1 TestList.Sample: 1325 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1326 Block: 4 DelDur: NullDur: PlaceList: 39 Word: VETERINARY ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1326 TrialCount: 351 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2754734 TestWord.DurationError: 100 TestWord.RTTime: 2755625 TestWord.ACC: 1 TestWord.RT: 891 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2755484 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2755626 Keyrelease: 2757234 ResponseTime: 1609 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1327 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1327 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1328 Block: 4 DelDur: NullDur: PlaceList: 38 Word: BUOYANT ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1328 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1329 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1329 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1330 Block: 4 DelDur: NullDur: PlaceList: 26 Word: SPECIAL ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1330 TrialCount: 352 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2765814 TestWord.DurationError: 100 TestWord.RTTime: 2766890 TestWord.ACC: 1 TestWord.RT: 1076 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2766564 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2766890 Keyrelease: 2768311 ResponseTime: 1421 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1331 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1331 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1332 Block: 4 DelDur: NullDur: PlaceList: 65 Word: ASSYRIAN ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1332 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1333 Block: 4 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1333 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1334 Block: 4 DelDur: NullDur: Word: AWESOME ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 9 Running: TestList TestList.Cycle: 1 TestList.Sample: 1334 TrialCount: 353 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2774895 TestWord.DurationError: 99 TestWord.RTTime: 2776082 TestWord.ACC: 0 TestWord.RT: 1187 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2775645 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2775970 Keyrelease: 2777383 ResponseTime: 1413 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1335 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1335 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1336 Block: 4 DelDur: NullDur: Word: POSTAL ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 187 Running: TestList TestList.Cycle: 1 TestList.Sample: 1336 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1337 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1337 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1338 Block: 4 DelDur: NullDur: Word: ANGRY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 45 Running: TestList TestList.Cycle: 1 TestList.Sample: 1338 TrialCount: 354 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2782459 TestWord.DurationError: 100 TestWord.RTTime: 2784002 TestWord.ACC: 0 TestWord.RT: 1543 TestWord.RESP: z TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2783209 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2784002 Keyrelease: 2784952 ResponseTime: 950 Judgment: Place ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1339 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1339 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1340 Block: 4 DelDur: NullDur: Word: BIBLICAL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 167 Running: TestList TestList.Cycle: 1 TestList.Sample: 1340 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1341 Block: 4 DelDur: NullDur: Word: SWEET ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 47 Running: TestList TestList.Cycle: 1 TestList.Sample: 1341 TrialCount: 355 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2786508 TestWord.DurationError: 99 TestWord.RTTime: 2787498 TestWord.ACC: 1 TestWord.RT: 990 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2787258 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2787498 Keyrelease: 2788996 ResponseTime: 1498 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1342 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1342 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1343 Block: 4 DelDur: NullDur: Word: HECTIC ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 108 Running: TestList TestList.Cycle: 1 TestList.Sample: 1343 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1344 Block: 4 DelDur: NullDur: Word: HYPNOTIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 54 Running: TestList TestList.Cycle: 1 TestList.Sample: 1344 TrialCount: 356 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2795555 TestWord.DurationError: 99 TestWord.RTTime: 2796338 TestWord.ACC: 1 TestWord.RT: 783 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2796305 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2796338 Keyrelease: 2798050 ResponseTime: 1712 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1345 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1345 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1346 Block: 4 DelDur: NullDur: Word: DUMPY ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 53 Running: TestList TestList.Cycle: 1 TestList.Sample: 1346 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1347 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1347 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1348 Block: 4 DelDur: NullDur: Word: CHIC ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 162 Running: TestList TestList.Cycle: 1 TestList.Sample: 1348 TrialCount: 357 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2804619 TestWord.DurationError: 99 TestWord.RTTime: 2805426 TestWord.ACC: 1 TestWord.RT: 807 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2805369 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2805426 Keyrelease: 2807113 ResponseTime: 1686 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1349 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1349 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1350 Block: 4 DelDur: NullDur: Word: URBAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 70 Running: TestList TestList.Cycle: 1 TestList.Sample: 1350 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1351 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1351 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1352 Block: 4 DelDur: NullDur: PlaceList: 98 Word: DEATHLY ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1352 TrialCount: 358 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2809184 TestWord.DurationError: 99 TestWord.RTTime: 2809890 TestWord.ACC: 1 TestWord.RT: 706 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2809934 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2809938 Keyrelease: 2811676 ResponseTime: 1738 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1353 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1353 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1354 Block: 4 DelDur: NullDur: PlaceList: 14 Word: SOLITARY ListOrigin: List7B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1354 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1355 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1355 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1356 Block: 4 DelDur: NullDur: PlaceList: 13 Word: AIRBORNE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1356 TrialCount: 359 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2814249 TestWord.DurationError: 100 TestWord.RTTime: 2815090 TestWord.ACC: 1 TestWord.RT: 841 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2814999 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2815091 Keyrelease: 2816739 ResponseTime: 1648 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1357 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1357 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1358 Block: 4 DelDur: NullDur: PlaceList: 21 Word: LIVELY ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1358 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1359 Block: 4 DelDur: NullDur: 4000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1359 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1360 Block: 4 DelDur: NullDur: Word: MURDEROUS ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 59 Running: TestList TestList.Cycle: 1 TestList.Sample: 1360 TrialCount: 360 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2822313 TestWord.DurationError: 100 TestWord.RTTime: 2823058 TestWord.ACC: 1 TestWord.RT: 745 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2823063 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2823067 Keyrelease: 2824806 ResponseTime: 1739 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1361 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1361 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1362 Block: 4 DelDur: NullDur: Word: YIDDISH ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 85 Running: TestList TestList.Cycle: 1 TestList.Sample: 1362 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1363 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1363 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1364 Block: 4 DelDur: NullDur: Word: ZEALOUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 19 Running: TestList TestList.Cycle: 1 TestList.Sample: 1364 TrialCount: 361 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2832877 TestWord.DurationError: 99 TestWord.RTTime: 2834323 TestWord.ACC: 1 TestWord.RT: 1446 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2833626 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2834323 Keyrelease: 2835365 ResponseTime: 1042 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1365 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1365 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1366 Block: 4 DelDur: NullDur: Word: WOMANLIKE ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 3 Running: TestList TestList.Cycle: 1 TestList.Sample: 1366 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1367 Block: 4 DelDur: NullDur: PlaceList: 59 Word: OPPRESSIVE ListOrigin: List2B Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1367 TrialCount: 362 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2840924 TestWord.DurationError: 99 TestWord.RTTime: 2842043 TestWord.ACC: 1 TestWord.RT: 1119 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2841674 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2842043 Keyrelease: 2843423 ResponseTime: 1380 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1368 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1368 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1369 Block: 4 DelDur: NullDur: PlaceList: 76 Word: DREAMY ListOrigin: List4A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1369 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1370 Block: 4 DelDur: NullDur: 7000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1370 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1371 Block: 4 DelDur: NullDur: PlaceList: 72 Word: SQUARE ListOrigin: List3A Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1371 TrialCount: 363 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2858002 TestWord.DurationError: 99 TestWord.RTTime: 2858579 TestWord.ACC: 1 TestWord.RT: 577 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2858752 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2858756 Keyrelease: 2860496 ResponseTime: 1740 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1372 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1372 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1373 Block: 4 DelDur: NullDur: PlaceList: 43 Word: CLOUDY ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1373 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1374 Block: 4 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1374 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1375 Block: 4 DelDur: NullDur: Word: STATUESQUE ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 43 Running: TestList TestList.Cycle: 1 TestList.Sample: 1375 TrialCount: 364 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2866566 TestWord.DurationError: 99 TestWord.RTTime: 2867411 TestWord.ACC: 0 TestWord.RT: 845 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2867316 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2867412 Keyrelease: 2869059 ResponseTime: 1647 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1376 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1376 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1377 Block: 4 DelDur: NullDur: Word: CUNNING ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 22 Running: TestList TestList.Cycle: 1 TestList.Sample: 1377 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1378 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1378 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1379 Block: 4 DelDur: NullDur: Word: ALOOF ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 89 Running: TestList TestList.Cycle: 1 TestList.Sample: 1379 TrialCount: 365 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2872631 TestWord.DurationError: 99 TestWord.RTTime: 2873915 TestWord.ACC: 1 TestWord.RT: 1284 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2873380 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2873915 Keyrelease: 2875122 ResponseTime: 1206 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1380 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1380 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1381 Block: 4 DelDur: NullDur: Word: WESTERN ListOrigin: List6B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 85 Running: TestList TestList.Cycle: 1 TestList.Sample: 1381 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1382 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1382 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1383 Block: 4 DelDur: NullDur: Word: LAZY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 40 Running: TestList TestList.Cycle: 1 TestList.Sample: 1383 TrialCount: 366 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2877196 TestWord.DurationError: 99 TestWord.RTTime: 2878363 TestWord.ACC: 0 TestWord.RT: 1167 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2877946 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2878204 Keyrelease: 2879684 ResponseTime: 1480 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1384 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1384 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1385 Block: 4 DelDur: NullDur: Word: MILITARY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 125 Running: TestList TestList.Cycle: 1 TestList.Sample: 1385 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1386 Block: 4 DelDur: NullDur: Word: UNBECOMING ListOrigin: List6B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 63 Running: TestList TestList.Cycle: 1 TestList.Sample: 1386 TrialCount: 367 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2882244 TestWord.DurationError: 100 TestWord.RTTime: 2883787 TestWord.ACC: 1 TestWord.RT: 1543 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2882994 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2883788 Keyrelease: 2884739 ResponseTime: 951 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1387 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1387 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1388 Block: 4 DelDur: NullDur: Word: FAIR ListOrigin: List6B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 7 Running: TestList TestList.Cycle: 1 TestList.Sample: 1388 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1389 Block: 4 DelDur: NullDur: 6000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1389 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1390 Block: 4 DelDur: NullDur: PlaceList: 42 Word: INTERIOR ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1390 TrialCount: 368 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2892308 TestWord.DurationError: 99 TestWord.RTTime: 2893795 TestWord.ACC: 0 TestWord.RT: 1487 TestWord.RESP: 3 TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2893058 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2893796 Keyrelease: 2894798 ResponseTime: 1002 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1391 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1391 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1392 Block: 4 DelDur: NullDur: PlaceList: 85 Word: CELTIC ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1392 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1393 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1393 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1394 Block: 4 DelDur: NullDur: Word: ETERNAL ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 95 Running: TestList TestList.Cycle: 1 TestList.Sample: 1394 TrialCount: 369 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2899372 TestWord.DurationError: 100 TestWord.RTTime: 2900948 TestWord.ACC: 1 TestWord.RT: 1576 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2900122 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2900948 Keyrelease: 2901870 ResponseTime: 922 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1395 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1395 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1396 Block: 4 DelDur: NullDur: Word: CLEAR ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 8 Running: TestList TestList.Cycle: 1 TestList.Sample: 1396 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1397 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1397 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1398 Block: 4 DelDur: NullDur: Word: BELGIAN ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 191 Running: TestList TestList.Cycle: 1 TestList.Sample: 1398 TrialCount: 370 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2911452 TestWord.DurationError: 99 TestWord.RTTime: 2912444 TestWord.ACC: 1 TestWord.RT: 992 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2912202 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2912444 Keyrelease: 2913942 ResponseTime: 1498 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1399 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1399 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1400 Block: 4 DelDur: NullDur: Word: FOUL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 84 Running: TestList TestList.Cycle: 1 TestList.Sample: 1400 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1401 Block: 4 DelDur: NullDur: PlaceList: 36 Word: ANCIENT ListOrigin: List2B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1401 TrialCount: 371 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2921499 TestWord.DurationError: 99 TestWord.RTTime: 2922628 TestWord.ACC: 1 TestWord.RT: 1129 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2922248 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2922628 Keyrelease: 2923991 ResponseTime: 1363 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1402 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1402 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1403 Block: 4 DelDur: NullDur: PlaceList: 58 Word: AROMATIC ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1403 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1404 Block: 4 DelDur: NullDur: Word: ADOPTIVE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 152 Running: TestList TestList.Cycle: 1 TestList.Sample: 1404 TrialCount: 372 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2931545 TestWord.DurationError: 100 TestWord.RTTime: 2932428 TestWord.ACC: 1 TestWord.RT: 883 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2932295 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2932428 Keyrelease: 2934046 ResponseTime: 1618 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1405 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1405 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1406 Block: 4 DelDur: NullDur: Word: CHRISTIAN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 74 Running: TestList TestList.Cycle: 1 TestList.Sample: 1406 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1407 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1407 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1408 Block: 4 DelDur: NullDur: Word: FEDERAL ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 92 Running: TestList TestList.Cycle: 1 TestList.Sample: 1408 TrialCount: 373 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2937127 TestWord.DurationError: 100 TestWord.RTTime: 2938036 TestWord.ACC: 0 TestWord.RT: 909 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2937877 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2938036 Keyrelease: 2939618 ResponseTime: 1582 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1409 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1409 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1410 Block: 4 DelDur: NullDur: Word: UNTIDY ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 99 Running: TestList TestList.Cycle: 1 TestList.Sample: 1410 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1411 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1411 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1412 Block: 4 DelDur: NullDur: Word: DISORDERLY ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 159 Running: TestList TestList.Cycle: 1 TestList.Sample: 1412 TrialCount: 374 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2946691 TestWord.DurationError: 99 TestWord.RTTime: 2947724 TestWord.ACC: 1 TestWord.RT: 1033 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2947440 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2947725 Keyrelease: 2949185 ResponseTime: 1460 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1413 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1413 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1414 Block: 4 DelDur: NullDur: Word: COOL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 172 Running: TestList TestList.Cycle: 1 TestList.Sample: 1414 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1415 Block: 4 DelDur: NullDur: Word: UNIVERSAL ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 20 Running: TestList TestList.Cycle: 1 TestList.Sample: 1415 TrialCount: 375 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2954738 TestWord.DurationError: 100 TestWord.RTTime: 2955724 TestWord.ACC: 1 TestWord.RT: 986 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2955488 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2955725 Keyrelease: 2957226 ResponseTime: 1501 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1416 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1416 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1417 Block: 4 DelDur: NullDur: Word: NATIVE ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 46 Running: TestList TestList.Cycle: 1 TestList.Sample: 1417 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1418 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1418 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1419 Block: 4 DelDur: NullDur: PlaceList: 90 Word: IMPURE ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1419 TrialCount: 376 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2964302 TestWord.DurationError: 99 TestWord.RTTime: 2965653 TestWord.ACC: 1 TestWord.RT: 1351 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2965052 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2965653 Keyrelease: 2966803 ResponseTime: 1150 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1420 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1420 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1421 Block: 4 DelDur: NullDur: PlaceList: 37 Word: NATURAL ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1421 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1422 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1422 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1423 Block: 4 DelDur: NullDur: Word: ACCESSIBLE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 61 Running: TestList TestList.Cycle: 1 TestList.Sample: 1423 TrialCount: 377 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2970383 TestWord.DurationError: 100 TestWord.RTTime: 2971245 TestWord.ACC: 1 TestWord.RT: 862 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2971133 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2971245 Keyrelease: 2972878 ResponseTime: 1633 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1424 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1424 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1425 Block: 4 DelDur: NullDur: Word: RAGGED ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 115 Running: TestList TestList.Cycle: 1 TestList.Sample: 1425 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1426 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1426 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1427 Block: 4 DelDur: NullDur: Word: AERONAUTIC ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 61 Running: TestList TestList.Cycle: 1 TestList.Sample: 1427 TrialCount: 378 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2982946 TestWord.DurationError: 99 TestWord.RTTime: 2984492 TestWord.ACC: 1 TestWord.RT: 1546 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 2983696 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2984492 Keyrelease: 2985442 ResponseTime: 950 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1428 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1428 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1429 Block: 4 DelDur: NullDur: Word: SHABBY ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 94 Running: TestList TestList.Cycle: 1 TestList.Sample: 1429 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1430 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1430 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1431 Block: 4 DelDur: NullDur: PlaceList: 73 Word: GRAY ListOrigin: List7B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1431 TrialCount: 379 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 2987511 TestWord.DurationError: 100 TestWord.RTTime: 2988245 TestWord.ACC: 1 TestWord.RT: 734 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2988261 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2988265 Keyrelease: 2990005 ResponseTime: 1740 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1432 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1432 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1433 Block: 4 DelDur: NullDur: PlaceList: 55 Word: HEINOUS ListOrigin: List3A Task: Place Rating: 2 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1433 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1434 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1434 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1435 Block: 4 DelDur: NullDur: Word: DESOLATE ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 62 Running: TestList TestList.Cycle: 1 TestList.Sample: 1435 TrialCount: 380 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 2994576 TestWord.DurationError: 99 TestWord.RTTime: 2995589 TestWord.ACC: 1 TestWord.RT: 1013 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 2995325 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 2995589 Keyrelease: 2997076 ResponseTime: 1487 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1436 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1436 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1437 Block: 4 DelDur: NullDur: Word: IMPECCABLE ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 113 Running: TestList TestList.Cycle: 1 TestList.Sample: 1437 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1438 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1438 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1439 Block: 4 DelDur: NullDur: Word: SHOWY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 130 Running: TestList TestList.Cycle: 1 TestList.Sample: 1439 TrialCount: 381 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3001657 TestWord.DurationError: 99 TestWord.RTTime: 3002501 TestWord.ACC: 1 TestWord.RT: 844 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3002406 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3002501 Keyrelease: 3004149 ResponseTime: 1648 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1440 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1440 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1441 Block: 4 DelDur: NullDur: Word: RIOTOUS ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 107 Running: TestList TestList.Cycle: 1 TestList.Sample: 1441 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1442 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1442 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1443 Block: 4 DelDur: NullDur: Word: FOGGY ListOrigin: List6A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 135 Running: TestList TestList.Cycle: 1 TestList.Sample: 1443 TrialCount: 382 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3011220 TestWord.DurationError: 100 TestWord.RTTime: 3011925 TestWord.ACC: 1 TestWord.RT: 705 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3011970 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3011974 Keyrelease: 3013712 ResponseTime: 1738 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1444 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1444 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1445 Block: 4 DelDur: NullDur: Word: RUSSIAN ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 173 Running: TestList TestList.Cycle: 1 TestList.Sample: 1445 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1446 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1446 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1447 Block: 4 DelDur: NullDur: Word: IMPOSING ListOrigin: List8B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 188 Running: TestList TestList.Cycle: 1 TestList.Sample: 1447 TrialCount: 383 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3017285 TestWord.DurationError: 100 TestWord.RTTime: 3018229 TestWord.ACC: 1 TestWord.RT: 944 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3018035 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3018230 Keyrelease: 3019783 ResponseTime: 1553 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1448 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1448 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1449 Block: 4 DelDur: NullDur: Word: DIDACTIC ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 1 Running: TestList TestList.Cycle: 1 TestList.Sample: 1449 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1450 Block: 4 DelDur: NullDur: 6000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1450 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1451 Block: 4 DelDur: NullDur: PlaceList: 20 Word: CONCRETE ListOrigin: List3A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1451 TrialCount: 384 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3027365 TestWord.DurationError: 100 TestWord.RTTime: 3028389 TestWord.ACC: 1 TestWord.RT: 1024 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3028115 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3028390 Keyrelease: 3029861 ResponseTime: 1471 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1452 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1452 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1453 Block: 4 DelDur: NullDur: PlaceList: 67 Word: RIGID ListOrigin: List7B Task: Place Rating: 3 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1453 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1454 Block: 4 DelDur: NullDur: 3500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1454 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1455 Block: 4 DelDur: NullDur: Word: MUSCULAR ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 17 Running: TestList TestList.Cycle: 1 TestList.Sample: 1455 TrialCount: 385 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3034930 TestWord.DurationError: 99 TestWord.RTTime: 3035782 TestWord.ACC: 1 TestWord.RT: 852 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3035679 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3035782 Keyrelease: 3037428 ResponseTime: 1646 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1456 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1456 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1457 Block: 4 DelDur: NullDur: Word: PHALLIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 28 Running: TestList TestList.Cycle: 1 TestList.Sample: 1457 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1458 Block: 4 DelDur: NullDur: Word: SIAMESE ListOrigin: List1B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 51 Running: TestList TestList.Cycle: 1 TestList.Sample: 1458 TrialCount: 386 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3039995 TestWord.DurationError: 99 TestWord.RTTime: 3041678 TestWord.ACC: 1 TestWord.RT: 1683 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3040744 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3041678 Keyrelease: 3042495 ResponseTime: 817 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1459 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1459 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1460 Block: 4 DelDur: NullDur: Word: SOGGY ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 65 Running: TestList TestList.Cycle: 1 TestList.Sample: 1460 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1461 Block: 4 DelDur: NullDur: 7000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1461 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1462 Block: 4 DelDur: NullDur: Word: DEAD ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 25 Running: TestList TestList.Cycle: 1 TestList.Sample: 1462 TrialCount: 387 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3057073 TestWord.DurationError: 99 TestWord.RTTime: 3058230 TestWord.ACC: 1 TestWord.RT: 1157 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3057822 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3058230 Keyrelease: 3059567 ResponseTime: 1337 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1463 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1463 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1464 Block: 4 DelDur: NullDur: Word: DELICIOUS ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 109 Running: TestList TestList.Cycle: 1 TestList.Sample: 1464 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1465 Block: 4 DelDur: NullDur: 1000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1465 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1466 Block: 4 DelDur: NullDur: Word: BRAWNY ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 37 Running: TestList TestList.Cycle: 1 TestList.Sample: 1466 TrialCount: 388 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3062138 TestWord.DurationError: 99 TestWord.RTTime: 3063902 TestWord.ACC: 1 TestWord.RT: 1764 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3062887 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3063902 Keyrelease: 3064626 ResponseTime: 724 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1467 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1467 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1468 Block: 4 DelDur: NullDur: Word: VALUABLE ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 84 Running: TestList TestList.Cycle: 1 TestList.Sample: 1468 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1469 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1469 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1470 Block: 4 DelDur: NullDur: Word: TAME ListOrigin: List8A Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 77 Running: TestList TestList.Cycle: 1 TestList.Sample: 1470 TrialCount: 389 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3066703 TestWord.DurationError: 99 TestWord.RTTime: 3067862 TestWord.ACC: 1 TestWord.RT: 1159 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 3067453 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3067863 Keyrelease: 3069202 ResponseTime: 1339 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1471 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1471 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1472 Block: 4 DelDur: NullDur: Word: EARTHY ListOrigin: List8A Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 18 Running: TestList TestList.Cycle: 1 TestList.Sample: 1472 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1473 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1473 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1474 Block: 4 DelDur: NullDur: Word: COURAGEOUS ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 83 Running: TestList TestList.Cycle: 1 TestList.Sample: 1474 TrialCount: 390 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3072285 TestWord.DurationError: 99 TestWord.RTTime: 3073286 TestWord.ACC: 1 TestWord.RT: 1001 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3073034 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3073286 Keyrelease: 3074774 ResponseTime: 1488 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1475 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1475 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1476 Block: 4 DelDur: NullDur: Word: RAINY ListOrigin: List5A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 111 Running: TestList TestList.Cycle: 1 TestList.Sample: 1476 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1477 Block: 4 DelDur: NullDur: 3000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1477 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1478 Block: 4 DelDur: NullDur: Word: HOMELY ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 39 Running: TestList TestList.Cycle: 1 TestList.Sample: 1478 TrialCount: 391 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3084347 TestWord.DurationError: 100 TestWord.RTTime: 3085310 TestWord.ACC: 1 TestWord.RT: 963 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3085097 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3085311 Keyrelease: 3086837 ResponseTime: 1526 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1479 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1479 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1480 Block: 4 DelDur: NullDur: Word: FELINE ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 157 Running: TestList TestList.Cycle: 1 TestList.Sample: 1480 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1481 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1481 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1482 Block: 4 DelDur: NullDur: PlaceList: 49 Word: EMOTIONAL ListOrigin: List4A Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1482 TrialCount: 392 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3089912 TestWord.DurationError: 100 TestWord.RTTime: 3090694 TestWord.ACC: 1 TestWord.RT: 782 TestWord.RESP: z TestWord.CRESP: z TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3090662 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3090695 Keyrelease: 3092409 ResponseTime: 1714 Judgment: Place ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1483 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1483 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1484 Block: 4 DelDur: NullDur: PlaceList: 52 Word: SCHOLASTIC ListOrigin: List2B Task: Place Rating: 4 Condition: Old CorrectAnswer: z CellNumber: 3 Feedback: Place Running: TestList TestList.Cycle: 1 TestList.Sample: 1484 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1485 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1485 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1486 Block: 4 DelDur: NullDur: Word: PLAIN ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 71 Running: TestList TestList.Cycle: 1 TestList.Sample: 1486 TrialCount: 393 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3098493 TestWord.DurationError: 100 TestWord.RTTime: 3100086 TestWord.ACC: 0 TestWord.RT: 1593 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 3099243 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3100087 Keyrelease: 3100985 ResponseTime: 898 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1487 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1487 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1488 Block: 4 DelDur: NullDur: Word: TERRIBLE ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 21 Running: TestList TestList.Cycle: 1 TestList.Sample: 1488 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1489 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1489 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1490 Block: 4 DelDur: NullDur: Word: CAUCASIAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 4 Running: TestList TestList.Cycle: 1 TestList.Sample: 1490 TrialCount: 394 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3104058 TestWord.DurationError: 99 TestWord.RTTime: 3104855 TestWord.ACC: 1 TestWord.RT: 797 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 766 TestFix.OnsetTime: 3104808 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3104855 Keyrelease: 3106553 ResponseTime: 1698 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1491 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1491 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1492 Block: 4 DelDur: NullDur: Word: EXTINCT ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 29 Running: TestList TestList.Cycle: 1 TestList.Sample: 1492 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1493 Block: 4 DelDur: NullDur: 2000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1493 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1494 Block: 4 DelDur: NullDur: Word: NARROW ListOrigin: List8A Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 83 Running: TestList TestList.Cycle: 1 TestList.Sample: 1494 TrialCount: 395 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3115121 TestWord.DurationError: 100 TestWord.RTTime: 3116743 TestWord.ACC: 1 TestWord.RT: 1622 TestWord.RESP: x TestWord.CRESP: x TestFix.OnsetDelay: 766 TestFix.OnsetTime: 3115871 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3116743 Keyrelease: 3117612 ResponseTime: 869 Judgment: Pleasant ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1495 Block: 4 DelDur: 2000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1495 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1496 Block: 4 DelDur: NullDur: Word: BANAL ListOrigin: List5B Task: Pleasant Rating: 4 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 70 Running: TestList TestList.Cycle: 1 TestList.Sample: 1496 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1497 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1497 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1498 Block: 4 DelDur: NullDur: Word: ACROBATIC ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 56 Running: TestList TestList.Cycle: 1 TestList.Sample: 1498 TrialCount: 396 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3122685 TestWord.DurationError: 100 TestWord.RTTime: 3123551 TestWord.ACC: 1 TestWord.RT: 866 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3123435 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3123551 Keyrelease: 3125184 ResponseTime: 1633 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1499 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1499 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1500 Block: 4 DelDur: NullDur: Word: SAMOAN ListOrigin: List1A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 3 Running: TestList TestList.Cycle: 1 TestList.Sample: 1500 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1501 Block: 4 DelDur: NullDur: Word: AESTHETIC ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 43 Running: TestList TestList.Cycle: 1 TestList.Sample: 1501 TrialCount: 397 TestWord.OnsetDelay: 17 TestWord.OnsetTime: 3126751 TestWord.DurationError: 99 TestWord.RTTime: 3127911 TestWord.ACC: 0 TestWord.RT: 1160 TestWord.RESP: x TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3127500 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3127911 Keyrelease: 3129250 ResponseTime: 1339 Judgment: Pleasant ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1502 Block: 4 DelDur: 6000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1502 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1503 Block: 4 DelDur: NullDur: Word: SERBIAN ListOrigin: List2A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 26 Running: TestList TestList.Cycle: 1 TestList.Sample: 1503 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1504 Block: 4 DelDur: NullDur: 2500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1504 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1505 Block: 4 DelDur: NullDur: Word: BEAUTIFUL ListOrigin: List7A Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 174 Running: TestList TestList.Cycle: 1 TestList.Sample: 1505 TrialCount: 398 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3138330 TestWord.DurationError: 100 TestWord.RTTime: 3140799 TestWord.ACC: 0 TestWord.RT: 2469 TestWord.RESP: 3{-3} TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3139080 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3139095 Keyrelease: 3140823 ResponseTime: 1728 Judgment: NULL *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1506 Block: 4 DelDur: 7000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1506 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1507 Block: 4 DelDur: NullDur: Word: MANIACAL ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 79 Running: TestList TestList.Cycle: 1 TestList.Sample: 1507 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1508 Block: 4 DelDur: NullDur: Word: ENGLISH ListOrigin: List3B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 75 Running: TestList TestList.Cycle: 1 TestList.Sample: 1508 TrialCount: 399 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3148377 TestWord.DurationError: 100 TestWord.RTTime: 3149239 TestWord.ACC: 1 TestWord.RT: 862 TestWord.RESP: 3 TestWord.CRESP: 3 TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3149127 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3149239 Keyrelease: 3150873 ResponseTime: 1634 Judgment: New ONAcc: 1 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1509 Block: 4 DelDur: 1000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1509 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1510 Block: 4 DelDur: NullDur: Word: ARABIC ListOrigin: List4B Task: N/A Rating: N/A Condition: New CorrectAnswer: 3 CellNumber: 1 Feedback: New NewList: 88 Running: TestList TestList.Cycle: 1 TestList.Sample: 1510 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1511 Block: 4 DelDur: NullDur: 500 Running: TestList TestList.Cycle: 1 TestList.Sample: 1511 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: TestProc TestList: 1512 Block: 4 DelDur: NullDur: Word: DANGEROUS ListOrigin: List1B Task: Pleasant Rating: 3 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 67 Running: TestList TestList.Cycle: 1 TestList.Sample: 1512 TrialCount: 400 TestWord.OnsetDelay: 16 TestWord.OnsetTime: 3152942 TestWord.DurationError: 100 TestWord.RTTime: 3153671 TestWord.ACC: 0 TestWord.RT: 729 TestWord.RESP: 3 TestWord.CRESP: x TestFix.OnsetDelay: 765 TestFix.OnsetTime: 3153692 TestFix.DurationError: 0 TestFix.RTTime: 0 TestFix.ACC: 0 TestFix.RT: 0 TestFix.RESP: TestFix.CRESP: Keypress: 3153696 Keyrelease: 3155436 ResponseTime: 1740 Judgment: New ONAcc: 0 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: DelProc TestList: 1513 Block: 4 DelDur: 5000 NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1513 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: FeedProc TestList: 1514 Block: 4 DelDur: NullDur: Word: MODEST ListOrigin: List5B Task: Pleasant Rating: 2 Condition: Old CorrectAnswer: x CellNumber: 2 Feedback: Pleasant PleasantList: 25 Running: TestList TestList.Cycle: 1 TestList.Sample: 1514 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: NullProc TestList: 1515 Block: 4 DelDur: NullDur: 5000 Running: TestList TestList.Cycle: 1 TestList.Sample: 1515 *** LogFrame End *** Level: 3 *** LogFrame Start *** Procedure: EndProc TestList: 1516 Block: 4 DelDur: NullDur: Running: TestList TestList.Cycle: 1 TestList.Sample: 1516 *** LogFrame End *** Level: 2 *** LogFrame Start *** ExpSetup: 1 Procedure: ExpProc OldKeys: LeftPlace ExpSetup.Cycle: 2 ExpSetup.Sample: 1 Running: ExpSetup LeftKey: z LeftMidKey: x RightMidKey: RightKey: 3 EqualsLeft: = EqualsRight: LeftResponse: Place LeftMidResponse: Pleasant RightResponse: New New: 3 Place: z Pleasant: x RightMidResponse: *** LogFrame End *** Level: 1 *** LogFrame Start *** Experiment: Kahn5Test SessionDate: 09-16-2011 SessionTime: 11:08:49 SessionTimeUtc: 3:08:49 PM Subject: 1 Session: 1 Group: 1 Name: Age: 20 Sex: male Handedness: right ResearcherID: 1 RandomSeed: -1144062026 Display.RefreshRate: 60.020 Clock.Information: \nE-Prime Primary Realtime Clock02011-09-16T15:08:49Z28001500004.32594519398602E+1502011-09-16T15:08:49Z\n *** LogFrame End *** -------------- next part -------------- A non-text attachment was scrubbed... Name: Kahn5Test.es2 Type: application/octet-stream Size: 266752 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Kahn5Test-1-1.edat2 Type: application/octet-stream Size: 6144 bytes Desc: not available URL: From mcfarla9 at msu.edu Thu Oct 13 17:45:17 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 13 Oct 2011 13:45:17 -0400 Subject: .edat file not created In-Reply-To: Message-ID: Erika, Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... Indeed, if you have an "attribute" named "Block", then you will get exactly the error message that you got (yes, the error message incorrectly says "variable", attributes are not variables as we have been discussing in another thread this week). So, just go into the .es2 file with E-Studio and rename that attribute, you should not find that hard to do. As to recovering your data from the .txt file, this might be done but is not trivial. In principle, if you can decipher the structure of the data in the .txt file, you could just edit the offending "Block" attribute in any text editor (e.g., Windows Notepad) to make it acceptable to E-Recovery, but this is not for the faint of heart. You might instead take this up with PST Support, who might help with this. Do you really have a lot of .txt files to convert? How many subjects did you run before you decided that having the program crash at the end of each session was a bad sign? -- David McFarlane, Professional Faultfinder >My experimental program is having the following problem. The text >file is created, but not the .edat file and I am getting an error >saying, "Reading txt file- variable name is same as level >name". And when I try to recover the .edat file using E-Recovery >the resulting .edat file only contains one row. I think it might >have to do with naming one of my variables Block. Please let me >know if there is anyway to 1) modify my code to be able to have it >automatically generate an .edat file and 2) convert the txt files I >have to .edat. I have attached the code, txt, and .edat files. > >-- >Erika Nyhus, Ph.D. >Cognitive, Linguistic, and Psychological Sciences >Brown University >190 Thayer St. >Providence, RI 02912-1821 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Erika_Nyhus at brown.edu Thu Oct 13 18:10:47 2011 From: Erika_Nyhus at brown.edu (Erika Nyhus) Date: Thu, 13 Oct 2011 14:10:47 -0400 Subject: .edat file not created In-Reply-To: Message-ID: False alarm...I figured out how to solve the problem. The problem did indeed have to do with naming one of my variables Block. I was able to change the variable name to "CurrentBlock" in the code and to find and replace the "Block" with "CurrentBlock" in the text files and generate .edat files. Erika On Thu, Oct 13, 2011 at 1:18 PM, Erika Nyhus wrote: > My experimental program is having the following problem. The text file is > created, but not the .edat file and I am getting an error saying, "Reading > txt file- variable name is same as level name". And when I try to recover > the .edat file using E-Recovery the resulting .edat file only contains one > row. I think it might have to do with naming one of my variables Block. > Please let me know if there is anyway to 1) modify my code to be able to > have it automatically generate an .edat file and 2) convert the txt files I > have to .edat. I have attached the code, txt, and .edat files. > > -- > Erika Nyhus, Ph.D. > Cognitive, Linguistic, and Psychological Sciences > Brown University > 190 Thayer St. > Providence, RI 02912-1821 > > -- Erika Nyhus, Ph.D. Cognitive, Linguistic, and Psychological Sciences Brown University 190 Thayer St. Providence, RI 02912-1821 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pfc.groot at gmail.com Thu Oct 13 18:25:50 2011 From: pfc.groot at gmail.com (Paul Groot) Date: Thu, 13 Oct 2011 20:25:50 +0200 Subject: .edat file not created In-Reply-To: Message-ID: Hi Erika, The problem is the Block attribute in testlist. cheers paul 2011/10/13 Erika Nyhus : > My experimental program is having the following problem.? The text file is > created, but not the .edat file and I am getting an error saying, "Reading > txt file- variable name is same as level name".? And when I try to recover > the .edat file using E-Recovery the resulting .edat file only contains one > row.? I think it might have to do with naming one of my variables Block. > Please let me know if there is anyway to 1) modify my code to be able to > have it automatically generate an .edat file and 2) convert the txt files I > have to .edat.? I have attached the code, txt, and .edat files. > > -- > Erika Nyhus, Ph.D. > Cognitive, Linguistic, and Psychological Sciences > Brown University > 190 Thayer St. > Providence, RI 02912-1821 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Thu Oct 13 19:18:34 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Thu, 13 Oct 2011 15:18:34 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) Message-ID: Hello Again, I am trying to add a pause in my experiment anytime. My task is a passive forced task and I do not have a response box or anything peripherally attached to the experimental computer. I control the task by using keyboard (from the control room). I saw a similar message by Sarah DuBose Posted 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for that. I am registered to forum but for some odd reasons I cannot see the messages. Is there anyone in this forum involved in that conversation. The help will be appreciated. Sincerely, Meltem -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From baltimore.ben at gmail.com Thu Oct 13 19:23:29 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Thu, 13 Oct 2011 15:23:29 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: Message-ID: try searching the help files for "getuserbreakstate". On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN wrote: > Hello Again, > I am trying to add a pause in my experiment anytime. My task is a passive > forced task and I do not have a response box or anything peripherally > attached to the experimental computer. I control the task by using keyboard > (from the control room). I saw a similar message by Sarah DuBose Posted > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for > that. I am registered to forum but for some odd reasons I cannot see the > messages. > Is there anyone in this forum involved in that conversation. > The help will be appreciated. > Sincerely, > Meltem > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Thu Oct 13 20:42:23 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 13 Oct 2011 16:42:23 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: Message-ID: Meltem, Hmm, I am not even logged in and I see the thread just fine at http://pstnet.com/forum/Topic2399-5-1.aspx . If you are having trouble with the PST Forum then you should contact PST. As Ben says, try GetUserBreakState. The thread linked above covers a more peculiar situation, and Brandon offers a very clever solution (and even though I contributed to that thread, I do not care to reproduce it here). -- David McFarlane, Professional Faultfinder At 10/13/2011 03:23 PM Thursday, you wrote: >try searching the help files for "getuserbreakstate". > >On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN wrote: > > Hello Again, > > I am trying to add a pause in my experiment anytime. My task is a passive > > forced task and I do not have a response box or anything peripherally > > attached to the experimental computer. I control the task by using keyboard > > (from the control room). I saw a similar message by Sarah DuBose Posted > > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for > > that. I am registered to forum but for some odd reasons I cannot see the > > messages. > > Is there anyone in this forum involved in that conversation. > > The help will be appreciated. > > Sincerely, > > Meltem > > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Thu Oct 13 21:59:34 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Thu, 13 Oct 2011 17:59:34 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: <4e974d39.471d2a0a.10e2.5a41SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hi David, Thank you very much it is working now. I found an amazing support in this group. I am relatively new to E-Prime and netstation extension. Sometimes the answers of questions would be very obvious. But, I am hoping to get more inside of it soon and helping others in my situation. (1) Developing new task, (2) Running a totally unknown system (3) Trying to understand infants (I worked on adult EEG) (4) Trying to get something meaningful out of infant EEG, VEP and ERPs. Again thank you much. Meltem On Thu, Oct 13, 2011 at 4:42 PM, David McFarlane wrote: > Meltem, > > Hmm, I am not even logged in and I see the thread just fine at > http://pstnet.com/forum/**Topic2399-5-1.aspx. If you are having trouble with the PST Forum then you should contact PST. > > As Ben says, try GetUserBreakState. The thread linked above covers a more > peculiar situation, and Brandon offers a very clever solution (and even > though I contributed to that thread, I do not care to reproduce it here). > > -- David McFarlane, Professional Faultfinder > > > > At 10/13/2011 03:23 PM Thursday, you wrote: > >> try searching the help files for "getuserbreakstate". >> >> On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN >> wrote: >> > Hello Again, >> > I am trying to add a pause in my experiment anytime. My task is a >> passive >> > forced task and I do not have a response box or anything peripherally >> > attached to the experimental computer. I control the task by using >> keyboard >> > (from the control room). I saw a similar message by Sarah DuBose Posted >> > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers >> for >> > that. I am registered to forum but for some odd reasons I cannot see the >> > messages. >> > Is there anyone in this forum involved in that conversation. >> > The help will be appreciated. >> > Sincerely, >> > Meltem >> > >> > -- >> > Meltem Ballan, PhD >> > Department of Psychiatry, CB# 7160 >> > University of North Carolina School of Medicine >> > 7023 Neurosciences Hospital >> > Chapel Hill, NC 27599-7160 >> > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Thu Oct 13 22:16:33 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 13 Oct 2011 18:16:33 -0400 Subject: a bunch of questions: sample/cycle count, accessing different context attributes In-Reply-To: <67721504-7c8e-4ca9-823d-bfceac2068dd@r30g2000prd.googlegro ups.com> Message-ID: At 10/12/2011 07:42 PM Wednesday, fledgeling e-Prime mastah wrote: >Is there any reason why one would not allow you to check the bounds >of an array? For that, use the LBound() and UBound() functions -- see the "Arrays", "LBound", and "UBound" topics in the E-Basic Help facility (which serves as the E-Basic programming reference), or read up on arrays in any available reference on Microsoft Visual Basic for Applications, of which E-Basic is a derivative. By comparison, List.Size returns the number of levels (rows) in a List (and thus I suppose acts like the size of an array), but this does not take into account the Weights. Each List has an associated Order object, and Order objects have a Count property (as you have already observed), but I cannot even begin to describe how Order objects work. Again, Lists are *not* arrays, just as attributes are *not* variables. They each have distinct uses and behaviors. >Regarding attributes, I simply don't understand why you would have >attributes.. I am still working on a definitive answer to that, stay tuned... In the meantime, please look at my posts at http://groups.google.com/group/e-prime/browse_thread/thread/5425e03968cab428 and http://groups.google.com/group/e-prime/browse_thread/thread/b0ce54870b723fc3 for some very general introductory guidance. -- David McFarlane, Professional Faultfinder -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Thu Oct 13 22:26:01 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Thu, 13 Oct 2011 18:26:01 -0400 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: Message-ID: Meltem, Thanks, glad you found something helpful here. FWIW, we have been working on a complete online course for an "Introduction to Task Programming for Experimental Psychology, Using E-Prime", which we hope to roll out soon. I have completed video for 7 lessons so far, and am working on two or three more (including one on fMRI and EEG) before we make this official. I don't know how this will be received, though -- we will have to charge a fee for this, and it will take time (lessons so far cover over 4.5 hours of video, which does not count the time it will take students to follow along and do the exercises). And it will be *very* thin on E-Basic programming, as that would require a course in itself. So stay tuned. -- David McFarlane, Professional Faultfinder At 10/13/2011 05:59 PM Thursday, you wrote: >Hi David, >Thank you very much it is working now. I found an amazing support in >this group. I am relatively new to E-Prime and netstation extension. >Sometimes the answers of questions would be very obvious. But, I am >hoping to get more inside of it soon and helping others in my >situation. (1) Developing new task, (2) Running a totally unknown >system (3) Trying to understand infants (I worked on adult EEG) >(4) Trying to get something meaningful out of infant EEG, VEP and ERPs. >Again thank you much. >Meltem > >On Thu, Oct 13, 2011 at 4:42 PM, David McFarlane ><mcfarla9 at msu.edu> wrote: >Meltem, > >Hmm, I am not even logged in and I see the thread just fine at >http://pstnet.com/forum/Topic2399-5-1.aspx >. If you are having trouble with the PST Forum then you should contact PST. > >As Ben says, try GetUserBreakState. The thread linked above covers >a more peculiar situation, and Brandon offers a very clever solution >(and even though I contributed to that thread, I do not care to >reproduce it here). > >-- David McFarlane, Professional Faultfinder > > > >At 10/13/2011 03:23 PM Thursday, you wrote: >try searching the help files for "getuserbreakstate". > >On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN ><meltemballan at gmail.com> wrote: > > Hello Again, > > I am trying to add a pause in my experiment anytime. My task is a passive > > forced task and I do not have a response box or anything peripherally > > attached to the experimental computer. I control the task by using keyboard > > (from the control room). I saw a similar message by Sarah DuBose Posted > > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for > > that. I am registered to forum but for some odd reasons I cannot see the > > messages. > > Is there anyone in this forum involved in that conversation. > > The help will be appreciated. > > Sincerely, > > Meltem > > > > -- > > Meltem Ballan, PhD > > Department of Psychiatry, CB# 7160 > > University of North Carolina School of Medicine > > 7023 Neurosciences Hospital > > Chapel Hill, NC 27599-7160 > >-- >Meltem Ballan, PhD >Department of Psychiatry, CB# 7160 >University of North Carolina School of Medicine >7023 Neurosciences Hospital >Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Fri Oct 14 11:46:17 2011 From: liwenna at gmail.com (liwenna) Date: Fri, 14 Oct 2011 04:46:17 -0700 Subject: need HELP regarding to an early post on PST Forum (Adding a Pause for use anytime during...) In-Reply-To: <4e976583.471d2a0a.10e2.5e41SMTPIN_ADDED@gmr-mx.google.com> Message-ID: David, that is so cool! On Oct 14, 12:26?am, David McFarlane wrote: > Meltem, > > Thanks, glad you found something helpful here. ?FWIW, we have been > working on a complete online course for an "Introduction to Task > Programming for Experimental Psychology, Using E-Prime", which we > hope to roll out soon. ?I have completed video for 7 lessons so far, > and am working on two or three more (including one on fMRI and EEG) > before we make this official. ?I don't know how this will be > received, though -- we will have to charge a fee for this, and it > will take time (lessons so far cover over 4.5 hours of video, which > does not count the time it will take students to follow along and do > the exercises). ?And it will be *very* thin on E-Basic programming, > as that would require a course in itself. ?So stay tuned. > > -- David McFarlane, Professional Faultfinder > > At 10/13/2011 05:59 PM Thursday, you wrote: > > > > > > > > >Hi David, > >Thank you very much it is working now. I found an amazing support in > >this group. I am relatively new to E-Prime and netstation extension. > >Sometimes the answers of questions would be very obvious. But, I am > >hoping to get more inside of it soon and helping others in my > >situation. (1) Developing new task, (2) Running a totally unknown > >system (3) Trying to understand infants (I worked on adult EEG) > >(4) ?Trying to get something meaningful out of infant EEG, VEP and ERPs. > >Again thank you much. > >Meltem > > >On Thu, Oct 13, 2011 at 4:42 PM, David McFarlane > ><mcfar... at msu.edu> wrote: > >Meltem, > > >Hmm, I am not even logged in and I see the thread just fine at > >http://pstnet.com/forum/Topic2399-5-1.aspx > >. ?If you are having trouble with the PST Forum then you should contact PST. > > >As Ben says, try GetUserBreakState. ?The thread linked above covers > >a more peculiar situation, and Brandon offers a very clever solution > >(and even though I contributed to that thread, I do not care to > >reproduce it here). > > >-- David McFarlane, Professional Faultfinder > > >At 10/13/2011 03:23 PM Thursday, you wrote: > >try searching the help files for "getuserbreakstate". > > >On Thu, Oct 13, 2011 at 3:18 PM, Meltem BALLAN > ><meltembal... at gmail.com> wrote: > > > Hello Again, > > > I am trying to add a pause in my experiment anytime. My task is a passive > > > forced task and I do not have a response box or anything peripherally > > > attached to the experimental computer. I control the task by using keyboard > > > (from the control room). I saw a similar message by Sarah DuBose Posted > > > 11/12/2008 12:46:39 PM on PST user forum but I cannot see the answers for > > > that. I am registered to forum but for some odd reasons I cannot see the > > > messages. > > > Is there anyone in this forum involved in that conversation. > > > The help will be appreciated. > > > Sincerely, > > > Meltem > > > > -- > > > Meltem Ballan, PhD > > > Department of Psychiatry, CB# 7160 > > > University of North Carolina School of Medicine > > > 7023 Neurosciences Hospital > > > Chapel Hill, NC 27599-7160 > > >-- > >Meltem Ballan, PhD > >Department of Psychiatry, CB# 7160 > >University of North Carolina School of Medicine > >7023 Neurosciences Hospital > >Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From gautam.malu at research.iiit.ac.in Fri Oct 14 12:56:49 2011 From: gautam.malu at research.iiit.ac.in (Gautam Malu) Date: Fri, 14 Oct 2011 18:26:49 +0530 Subject: Randomization of images Message-ID: Hi all, i am developing a simple face recognition task. i am using picture stimuli. I have images of 20 models , 3 images per model so total 3*20 = 60 images. 1_right_pose.jpg 1_left_pose.jpg 1_middle_pose.jpg ............................ total 60 images Experiment consists of 2 phases -->1st in learning phase, in which participants will see 2 poses of any 10 models. i.e total 2*10 = 20 images randomly each images for 3000ms n_right_pose.jpg m_left_pose.jpg .......total 20 images ---> 2nd is testing phase, In which participants will see all 20 model in middle pose, randomly for 500ms, followed by fixation of infinite duration and during which they have to respond whether or not they have seen that model in learning phase. n_middle_pose.jpg fixation.jpg ...........20 times now the problem i am facing is how to select 10 random model's both right_pose.jpg and left_pose.jpg and also display them in random order. how can i get this type of ordering in learning phase Example 3_right_pose.jpg 7_left_pose.jpg 11_left_pose.jpg 3_left_pose.jpg Thanks, ---- Gautam Malu -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Fri Oct 14 13:39:44 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Fri, 14 Oct 2011 09:39:44 -0400 Subject: Randomization of images In-Reply-To: Message-ID: Gautam, I have an idea. You can prepare two lists (one for the right and the left and second for the middle images). Then, you might want to call those files (edit->properties->startup info). Lets say for session 1 call fileLR and shuffle the list (list properties->order->random). In order to show 20 models you can count to 20 and jump to the end of session (I would use goto) repeat it for session 2 including the middle images. I hope it helps. Meltem On Fri, Oct 14, 2011 at 8:56 AM, Gautam Malu < gautam.malu at research.iiit.ac.in> wrote: > Hi all, > i am developing a simple face recognition task. i am using > picture stimuli. I have images of 20 models , 3 images per model so total > 3*20 = 60 images. > 1_right_pose.jpg > 1_left_pose.jpg > 1_middle_pose.jpg > ............................ total 60 images > Experiment consists of 2 phases > > -->1st in learning phase, in which participants will see 2 poses of any 10 > models. > i.e total 2*10 = 20 images randomly each images for 3000ms > n_right_pose.jpg > m_left_pose.jpg > > .......total 20 images > > ---> 2nd is testing phase, In which participants will see all 20 model in > middle pose, randomly for 500ms, followed by fixation of infinite duration > and during which they have to respond whether or not they have seen that > model in learning phase. > n_middle_pose.jpg > fixation.jpg > ...........20 times > > > now the problem i am facing is how to select 10 random model's both > right_pose.jpg and left_pose.jpg and also display them in random order. > how can i get this type of ordering in learning phase > Example > 3_right_pose.jpg > 7_left_pose.jpg > 11_left_pose.jpg > 3_left_pose.jpg > > > > Thanks, > > > ---- > Gautam Malu > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Fri Oct 14 13:41:59 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Fri, 14 Oct 2011 09:41:59 -0400 Subject: Randomization of images In-Reply-To: Message-ID: BTW you can also google it as sub-list e-prime or something like that. I am sure PST forum or this list discussed this or similar topics before. Meltem On Fri, Oct 14, 2011 at 9:39 AM, Meltem BALLAN wrote: > Gautam, > I have an idea. You can prepare two lists (one for the right and the left > and second for the middle images). Then, you might want to call those files > (edit->properties->startup info). Lets say for session 1 > call fileLR and shuffle the list (list properties->order->random). > In order to show 20 models you can count to 20 and jump to the end of > session (I would use goto) > repeat it for session 2 including the middle images. > I hope it helps. > Meltem > > > On Fri, Oct 14, 2011 at 8:56 AM, Gautam Malu < > gautam.malu at research.iiit.ac.in> wrote: > >> Hi all, >> i am developing a simple face recognition task. i am using >> picture stimuli. I have images of 20 models , 3 images per model so total >> 3*20 = 60 images. >> 1_right_pose.jpg >> 1_left_pose.jpg >> 1_middle_pose.jpg >> ............................ total 60 images >> Experiment consists of 2 phases >> >> -->1st in learning phase, in which participants will see 2 poses of any >> 10 models. >> i.e total 2*10 = 20 images randomly each images for 3000ms >> n_right_pose.jpg >> m_left_pose.jpg >> >> .......total 20 images >> >> ---> 2nd is testing phase, In which participants will see all 20 model in >> middle pose, randomly for 500ms, followed by fixation of infinite duration >> and during which they have to respond whether or not they have seen that >> model in learning phase. >> n_middle_pose.jpg >> fixation.jpg >> ...........20 times >> >> >> now the problem i am facing is how to select 10 random model's both >> right_pose.jpg and left_pose.jpg and also display them in random order. >> how can i get this type of ordering in learning phase >> Example >> 3_right_pose.jpg >> 7_left_pose.jpg >> 11_left_pose.jpg >> 3_left_pose.jpg >> >> >> >> Thanks, >> >> >> ---- >> Gautam Malu >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to >> e-prime+unsubscribe at googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/e-prime?hl=en. >> > > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Michiel.Spape at nottingham.ac.uk Fri Oct 14 13:56:22 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Fri, 14 Oct 2011 14:56:22 +0100 Subject: Randomization of images In-Reply-To: Message-ID: Hi, Meltem is quite right, although people usually call it nested lists. Generally, you can go two ways: 1. Have a set of 20 stimuli selected within a list from a nested list, e.g. List1: 60 stimuli, attribute myStimuli, set to randomise. List2: calls List1, and in attribute currentStimulus, set numero uno to [myStimuli:1] to select the first one from List1... after randomisation. The clever thing is that the randomisation of List1 only needs to occur once and you're done. Probably no inline necessary. Whether you've got one or more attributes to call your jpeg isn't important, because they can be concatenated to one. For instance, if we have instead of myStimuli, "aNumber", "leftright", "andsoon" and have a row in the list saying, respectively, "1" "right" "pose.jpg", then this can be combined using another attribute (say, "filename") as [myStimuli]_[leftright]_[andsoon] and eprime will just combine it all. 2. Code all your stimuli into one array with 60 stimuli, randomizearray, and go from there. Best, Mich Michiel Spap? Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of Meltem BALLAN Sent: 14 October 2011 14:42 To: e-prime at googlegroups.com Subject: Re: Randomization of images BTW you can also google it as sub-list e-prime or something like that. I am sure PST forum or this list discussed this or similar topics before. Meltem On Fri, Oct 14, 2011 at 9:39 AM, Meltem BALLAN > wrote: Gautam, I have an idea. You can prepare two lists (one for the right and the left and second for the middle images). Then, you might want to call those files (edit->properties->startup info). Lets say for session 1 call fileLR and shuffle the list (list properties->order->random). In order to show 20 models you can count to 20 and jump to the end of session (I would use goto) repeat it for session 2 including the middle images. I hope it helps. Meltem On Fri, Oct 14, 2011 at 8:56 AM, Gautam Malu > wrote: Hi all, i am developing a simple face recognition task. i am using picture stimuli. I have images of 20 models , 3 images per model so total 3*20 = 60 images. 1_right_pose.jpg 1_left_pose.jpg 1_middle_pose.jpg ............................ total 60 images Experiment consists of 2 phases -->1st in learning phase, in which participants will see 2 poses of any 10 models. i.e total 2*10 = 20 images randomly each images for 3000ms n_right_pose.jpg m_left_pose.jpg .......total 20 images ---> 2nd is testing phase, In which participants will see all 20 model in middle pose, randomly for 500ms, followed by fixation of infinite duration and during which they have to respond whether or not they have seen that model in learning phase. n_middle_pose.jpg fixation.jpg ...........20 times now the problem i am facing is how to select 10 random model's both right_pose.jpg and left_pose.jpg and also display them in random order. how can i get this type of ordering in learning phase Example 3_right_pose.jpg 7_left_pose.jpg 11_left_pose.jpg 3_left_pose.jpg Thanks, ---- Gautam Malu -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Fri Oct 14 19:21:31 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Fri, 14 Oct 2011 15:21:31 -0400 Subject: presenting a movie Message-ID: Hello Again, I have been trying to present a movie which is 9 min 40 sec and I am receiving an error which is : Run-time Error (Line 838) 11053: An error occurred while attempting to load the movie Marker: 227 Error: -2147220891 (0x80040265) I am doing exactly what I was told on the documentations. I email PST couple of times and no solution yet. Any idea? Has anyone solved this issue yet ? Thank you again. Meltem -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wafa.elise at gmail.com Fri Oct 14 19:30:25 2011 From: wafa.elise at gmail.com (wafa saoud) Date: Fri, 14 Oct 2011 15:30:25 -0400 Subject: Conditional cumulative feedback, help. In-Reply-To: <78ca2938-ea30-4eb5-92fc-488f3b47f6cb@k10g2000vbn.googlegroups.com> Message-ID: Hi, I wanted to thank you for the instructions. I ended up needing to modify a few things given my design but it ended up working out perfectly. Best Wishes! On Wed, Oct 12, 2011 at 9:18 AM, liwenna wrote: > good luck. > > Do note that Peter and I basically proposed the same solution, it's > not really two different options. > > On Oct 12, 2:30 pm, welise wrote: > > Thank you, both, so much. I also appreciate the quick replies. I will > > try these options. > > > > On Oct 12, 8:22 am, liwenna wrote: > > > > > > > > > > > > > > > > > Hi! > > > > > What you need is a global variable, a varibale that is indeed capable > > > to carry over information from one trial to the next. > > > First go to the user tab in the script window (bottom left corner > > > script window). > > > Here you declare a variable called... scorecounter: > > > > > Dim scorecounter as integer > > > > > Now... at the end of every trial the scorecounter need to be updated > > > by adding the new trial score and since a variable is not > > > automatically logged into the datafile, I always transfer the value of > > > scorecounter onto an attribute (that is logged): > > > > > Scorecounter = scorecounter + c.getattrib ("trialscore") (<- or where > > > ever you stored the score right now) > > > c.setattrib "scorecount", scorecounter > > > > > you can then use the attribute scorecount on your display to provide > > > feedback by showing a text like: "your new score is [scorecount]" > > > > > The above is a very minimalistic explanation... I believe the e-primer > > > has some more info on global variables, it can be downloaded at > > > step.psy.cmu.edu/materials/EPrimer.pdf > > > > > Best > > > > > liw > > > > > On Oct 12, 2:10 pm, Peter Quain wrote: > > > > > > perhaps something like this (rough example) would work? ... go to > > > > User Tab in script, and create global variables - > > > > > > Dim intTotalScore, intTrialScore as integer > > > > > > ... then in inline at start of TrialProcedure - > > > > > > intTrialScore = 0 > > > > > > ... and in an inline wherever in the trial procedure you assign the > > > > values that your feedback presents (or at the end of the trial > sequence) - > > > > > > intTtrialScore = [whatever the score is for that trial] > > > > intTotalScore = intTotalScore + intTtrialScore > > > > > > At 10:58 PM 12/10/2011, you wrote: > > > > > > >Hi Everybody, > > > > > > >I am hoping somebody can help me with presenting participants with > > > > >cumulative RESP feedback that is conditional on two separate > > > > >responses: > > > > > > >In my experiment, participants are first presented with a slide and > > > > >asked to press "1" if they will answer "A" or "2" if they will > answer > > > > >"B". I then have 6 slide states, randomly presented, with 4 > different > > > > >stimuli presented on each (I used 6 slides in order to change the > > > > >positioning of each of the stimuli). If the participant chose "1" > > > > >previously, they are expected to choose the corresponding stimuli > > > > >accordingly (by pressing 1, 2, 3, or 4 to indicate the correct > > > > >position of the stimuli). and if they chose "2" they are expected to > > > > >choose the stimuli that corresponds to that choice. If they chose > "1" > > > > >and then chose the correct corresponding stimuli, they get no > > > > >feedback. If they chose "1" and gave incorrect stimuli response then > > > > >they get Incorrect feedback with a message that says "-5 points". > If > > > > >they chose "2" and made the correct stimuli response- I have > feedback > > > > >randomly set to give them one of two messages, and one of those > > > > >messages includes "-10 points" while the other includes "+10 points" > > > > > > >So far, so good. I have experiment designed up until this point. The > > > > >problem arises when I try to present cumulative score feedback: > > > > > > >Within each trial, after the participant receives the first set of > > > > >feedback and the corresponding points lost of gained, I need to > > > > >present them with feedback that tells them their new total score. so > > > > >total score - 5 points, or total score + 10 points, or total score > -10 > > > > >points, and this needs to carry over from one trial to the net. I > > > > >have no idea how to do this. I started off by trying to do this with > a > > > > >text slide but I can't figure out how to do an inline text that can > > > > >make all this happen. I am in over my head and any help would be so > > > > >much appreciated. > > > > > > >-- > > > > >You received this message because you are subscribed to the Google > > > > >Groups "E-Prime" group. > > > > >To post to this group, send email to e-prime at googlegroups.com. > > > > >To unsubscribe from this group, send email to > > > > >e-prime+unsubscribe at googlegroups.com. > > > > >For more options, visit this group at > > > > >http://groups.google.com/group/e-prime?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gautam.malu at research.iiit.ac.in Sat Oct 15 11:06:27 2011 From: gautam.malu at research.iiit.ac.in (Gautam Malu) Date: Sat, 15 Oct 2011 16:36:27 +0530 Subject: Randomization of images In-Reply-To: <09DAEA8BC192C94EB62C8E71FC35A5D930D2BE7772@EXCHANGE3.ad.nottingham.ac.uk> Message-ID: Thank you Meltem and Michiel. I made an array and then used the randomized arrray. it worked perfectly. Best Wishes, Gautam Malu On Fri, Oct 14, 2011 at 7:26 PM, Michiel Spape < Michiel.Spape at nottingham.ac.uk> wrote: > Hi,**** > > Meltem is quite right, although people usually call it nested lists. > Generally, you can go two ways:**** > > 1.**** > > Have a set of 20 stimuli selected within a list from a nested list, e.g.** > ** > > List1: 60 stimuli, attribute myStimuli, set to randomise.**** > > List2: calls List1, and in attribute currentStimulus, set numero uno to > [myStimuli:1] to select the first one from List1? after randomisation. The > clever thing is that the randomisation of List1 only needs to occur once and > you?re done. Probably no inline necessary. Whether you?ve got one or more > attributes to call your jpeg isn?t important, because they can be > concatenated to one. For instance, if we have instead of myStimuli, > ?aNumber?, ?leftright?, ?andsoon? and have a row in the list saying, > respectively, ?1? ?right? ?pose.jpg?, then this can be combined using > another attribute (say, ?filename?) as [myStimuli]_[leftright]_[andsoon] and > eprime will just combine it all. **** > > ** ** > > 2.**** > > Code all your stimuli into one array with 60 stimuli, randomizearray, and > go from there.**** > > ** ** > > Best,**** > > Mich**** > > ** ** > > ** ** > > ** ** > > *Michiel Spap?* > > *Research Fellow* > > *Perception & Action group* > > *University of Nottingham* > > *School of Psychology* > > *www.cognitology.eu*** > > ** ** > > *From:* e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] *On > Behalf Of *Meltem BALLAN > *Sent:* 14 October 2011 14:42 > *To:* e-prime at googlegroups.com > *Subject:* Re: Randomization of images**** > > ** ** > > BTW you can also google it as sub-list e-prime or something like that. I am > sure PST forum or this list discussed this or similar topics before. > Meltem**** > > On Fri, Oct 14, 2011 at 9:39 AM, Meltem BALLAN > wrote:**** > > Gautam, > I have an idea. You can prepare two lists (one for the right and the left > and second for the middle images). Then, you might want to call those files > (edit->properties->startup info). Lets say for session 1 > call fileLR and shuffle the list (list properties->order->random). > In order to show 20 models you can count to 20 and jump to the end of > session (I would use goto) > repeat it for session 2 including the middle images. > I hope it helps. > Meltem**** > > ** ** > > On Fri, Oct 14, 2011 at 8:56 AM, Gautam Malu < > gautam.malu at research.iiit.ac.in> wrote:**** > > Hi all,**** > > i am developing a simple face recognition task. i am using > picture stimuli. I have images of 20 models , 3 images per model so total > 3*20 = 60 images.**** > > 1_right_pose.jpg**** > > 1_left_pose.jpg**** > > 1_middle_pose.jpg**** > > ............................ total 60 images**** > > Experiment consists of 2 phases**** > > ** ** > > -->1st in learning phase, in which participants will see 2 poses of any 10 > models.**** > > i.e total 2*10 = 20 images randomly each images for 3000ms**** > > n_right_pose.jpg **** > > m_left_pose.jpg**** > > ** ** > > .......total 20 images **** > > ** ** > > ---> 2nd is testing phase, In which participants will see all 20 model in > middle pose, randomly for 500ms, followed by fixation of infinite duration > and during which they have to respond whether or not they have seen that > model in learning phase.**** > > n_middle_pose.jpg**** > > fixation.jpg**** > > ...........20 times**** > > ** ** > > ** ** > > now the problem i am facing is how to select 10 random model's both > right_pose.jpg and left_pose.jpg and also display them in random order. ** > ** > > how can i get this type of ordering in learning phase**** > > Example**** > > 3_right_pose.jpg**** > > 7_left_pose.jpg**** > > 11_left_pose.jpg**** > > 3_left_pose.jpg**** > > ** ** > > ** ** > > ** ** > > Thanks,**** > > ** ** > > ** ** > > ----**** > > Gautam Malu**** > > ** ** > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > > > **** > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160**** > > > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160**** > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en.**** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d.vinson at ucl.ac.uk Mon Oct 17 08:45:53 2011 From: d.vinson at ucl.ac.uk (David Vinson) Date: Mon, 17 Oct 2011 09:45:53 +0100 Subject: presenting a movie In-Reply-To: Message-ID: Hi, Presenting movies successfully can be a huge challenge in E-Prime, mainly related to compatibility issues. The very first step is to create the simplest possible experiment which displays only your movie and nothing else. If this does not work you may need to convert the movie into some other format. hope this helps, david On 14/10/2011 20:21, Meltem BALLAN wrote: > Hello Again, > I have been trying to present a movie which is 9 min 40 sec and I am > receiving an error which is : > Run-time Error (Line 838) 11053: An error occurred while attempting to > load the movie > Marker: 227 > Error: -2147220891 (0x80040265) > I am doing exactly what I was told on the documentations. I email PST > couple of times and no solution yet. Any idea? Has anyone solved this > issue yet ? > Thank you again. > Meltem > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- > You received this message because you are subscribed to the Google > Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. -- David Vinson, Ph.D. Senior Postdoctoral Researcher Cognitive, Perceptual and Brain Sciences Research Department University College London 26 Bedford Way, London WC1H 0AP Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Mon Oct 17 14:53:14 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Mon, 17 Oct 2011 10:53:14 -0400 Subject: presenting a movie In-Reply-To: <4E9BEB41.1040409@ucl.ac.uk> Message-ID: David, Thank you very much for the hint. Unfortunately, it has not been working. I am using mpg format which is the format suggested by PST. I can only load the demo videos but nothing else. I developing a series of experiment for infants and need some attention grabber objects (fixation-like). It does not need to be a fancy video or something just moving shapes or so between 300 and 800 ms. The other experiment is an open eye state (some call it resting but not sure). I am showing a series of videos for 10 min and recording EEG. I cannot get any of my experiments going in E-PRIME w/ video. The error message is a RUNTIME ERROR. An error occurs while attempting to load the movie. Marker: 242 Error: 0 (0x0) Line:202 Error number:11053. There must be a way to solve it. I contacted PST once and no solution offered. I will try to bug them again. Cheers, Meltem On Mon, Oct 17, 2011 at 4:45 AM, David Vinson wrote: > Hi, > > Presenting movies successfully can be a huge challenge in E-Prime, mainly > related to compatibility issues. > > The very first step is to create the simplest possible experiment which > displays only your movie and nothing else. If this does not work you may > need to convert the movie into some other format. > > hope this helps, > david > > > On 14/10/2011 20:21, Meltem BALLAN wrote: > >> Hello Again, >> I have been trying to present a movie which is 9 min 40 sec and I am >> receiving an error which is : >> Run-time Error (Line 838) 11053: An error occurred while attempting to >> load the movie >> Marker: 227 >> Error: -2147220891 (0x80040265) >> I am doing exactly what I was told on the documentations. I email PST >> couple of times and no solution yet. Any idea? Has anyone solved this issue >> yet ? >> Thank you again. >> Meltem >> >> -- >> Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to e-prime+unsubscribe@** >> googlegroups.com . >> For more options, visit this group at http://groups.google.com/** >> group/e-prime?hl=en . >> > > -- > David Vinson, Ph.D. > Senior Postdoctoral Researcher > Cognitive, Perceptual and Brain Sciences Research Department > University College London > 26 Bedford Way, London WC1H 0AP > Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) > > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d.vinson at ucl.ac.uk Mon Oct 17 15:23:28 2011 From: d.vinson at ucl.ac.uk (David Vinson) Date: Mon, 17 Oct 2011 16:23:28 +0100 Subject: presenting a movie In-Reply-To: Message-ID: Hi Meltem, Sorry to say that I'm afraid your best course of action is to try different video formats. If you run the Codec Config tool on your problematic video this may help to identify what the problem is. You might also find some useful information in this thread from July: http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22 good luck, david On 17/10/2011 15:53, Meltem BALLAN wrote: > David, > Thank you very much for the hint. Unfortunately, it has not been > working. I am using mpg format which is the format suggested by PST. I > can only load the demo videos but nothing else. I developing a series > of experiment for infants and need some attention grabber objects > (fixation-like). It does not need to be a fancy video or something > just moving shapes or so between 300 and 800 ms. > The other experiment is an open eye state (some call it resting but > not sure). I am showing a series of videos for 10 min and recording > EEG. I cannot get any of my experiments going in E-PRIME w/ video. The > error message is a RUNTIME ERROR. An error occurs while attempting to > load the movie. Marker: 242 Error: 0 (0x0) > Line:202 Error number:11053. > There must be a way to solve it. I contacted PST once and no solution > offered. I will try to bug them again. > Cheers, > Meltem > > On Mon, Oct 17, 2011 at 4:45 AM, David Vinson > wrote: > > Hi, > > Presenting movies successfully can be a huge challenge in E-Prime, > mainly related to compatibility issues. > > The very first step is to create the simplest possible experiment > which displays only your movie and nothing else. If this does not > work you may need to convert the movie into some other format. > > hope this helps, > david > > > On 14/10/2011 20:21, Meltem BALLAN wrote: > > Hello Again, > I have been trying to present a movie which is 9 min 40 sec > and I am receiving an error which is : > Run-time Error (Line 838) 11053: An error occurred while > attempting to load the movie > Marker: 227 > Error: -2147220891 (0x80040265) > I am doing exactly what I was told on the documentations. I > email PST couple of times and no solution yet. Any idea? Has > anyone solved this issue yet ? > Thank you again. > Meltem > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- > You received this message because you are subscribed to the > Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com > . > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > > -- > David Vinson, Ph.D. > Senior Postdoctoral Researcher > Cognitive, Perceptual and Brain Sciences Research Department > University College London > 26 Bedford Way, London WC1H 0AP > Tel +44 (0)20 7679 5311 > (UCL internal ext. 25311) > > > -- > You received this message because you are subscribed to the Google > Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com > . > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com > . > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > > > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- > You received this message because you are subscribed to the Google > Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. -- David Vinson, Ph.D. Senior Postdoctoral Researcher Cognitive, Perceptual and Brain Sciences Research Department University College London 26 Bedford Way, London WC1H 0AP Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Mon Oct 17 18:24:40 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Mon, 17 Oct 2011 14:24:40 -0400 Subject: presenting a movie In-Reply-To: <4E9C4870.2010304@ucl.ac.uk> Message-ID: Hi David, Thank you very much pointing out the special thread. It is not easy to follow up all the threads but I am trying. I tried to render my files. Before everything I checked the MSconfig as defined on INFO: How to use MSCONFIG to troubleshoot machine configuration and reduce background applications. Then I followed the instructions on FEATURE: CodecConfig provides ability to choose codecs used for Movie and Sound rendering. I use k-lite as it works pretty good for my auditory task. But, it seems like I cannot correctly render those files (Failed files). I tried MPEG-1, MPEG-2, avi and as a last format ts. I could not succeed. It is little bit frustrating and I know there are people solved the issue w/ video decoding and presenting. I do not know how to ask the question anymore. But is there a way to show at least a piece between 300 and 800 ms. Thanks MEltem On Mon, Oct 17, 2011 at 11:23 AM, David Vinson wrote: > Hi Meltem, > > Sorry to say that I'm afraid your best course of action is to try different > video formats. > If you run the Codec Config tool on your problematic video this may help to > identify what the problem is. > > You might also find some useful information in this thread from July: > http://groups.google.com/**group/e-prime/browse_thread/** > thread/0338b7e9ceec5d22 > > good luck, > david > > > On 17/10/2011 15:53, Meltem BALLAN wrote: > >> David, >> Thank you very much for the hint. Unfortunately, it has not been working. >> I am using mpg format which is the format suggested by PST. I can only load >> the demo videos but nothing else. I developing a series of experiment for >> infants and need some attention grabber objects (fixation-like). It does not >> need to be a fancy video or something just moving shapes or so between 300 >> and 800 ms. >> The other experiment is an open eye state (some call it resting but not >> sure). I am showing a series of videos for 10 min and recording EEG. I >> cannot get any of my experiments going in E-PRIME w/ video. The error >> message is a RUNTIME ERROR. An error occurs while attempting to load the >> movie. Marker: 242 Error: 0 (0x0) >> Line:202 Error number:11053. >> There must be a way to solve it. I contacted PST once and no solution >> offered. I will try to bug them again. >> Cheers, >> Meltem >> >> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson > d.vinson at ucl.ac.uk>> wrote: >> >> Hi, >> >> Presenting movies successfully can be a huge challenge in E-Prime, >> mainly related to compatibility issues. >> >> The very first step is to create the simplest possible experiment >> which displays only your movie and nothing else. If this does not >> work you may need to convert the movie into some other format. >> >> hope this helps, >> david >> >> >> On 14/10/2011 20:21, Meltem BALLAN wrote: >> >> Hello Again, >> I have been trying to present a movie which is 9 min 40 sec >> and I am receiving an error which is : >> Run-time Error (Line 838) 11053: An error occurred while >> attempting to load the movie >> Marker: 227 >> Error: -2147220891 (0x80040265) >> >> I am doing exactly what I was told on the documentations. I >> email PST couple of times and no solution yet. Any idea? Has >> anyone solved this issue yet ? >> Thank you again. >> Meltem >> >> -- Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> -- You received this message because you are subscribed to >> the >> Google Groups "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com >> >. >> >> To unsubscribe from this group, send email to >> e-prime+unsubscribe@**googlegroups.com >> >> >. >> >> For more options, visit this group at >> http://groups.google.com/**group/e-prime?hl=en >> . >> >> >> -- David Vinson, Ph.D. >> Senior Postdoctoral Researcher >> Cognitive, Perceptual and Brain Sciences Research Department >> University College London >> 26 Bedford Way, London WC1H 0AP >> Tel +44 (0)20 7679 5311 >> >> (UCL internal ext. 25311) >> >> >> -- You received this message because you are subscribed to the >> Google >> Groups "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com >> >. >> >> To unsubscribe from this group, send email to >> e-prime+unsubscribe@**googlegroups.com >> >> >. >> >> For more options, visit this group at >> http://groups.google.com/**group/e-prime?hl=en >> . >> >> >> >> >> -- >> Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to e-prime+unsubscribe@** >> googlegroups.com . >> For more options, visit this group at http://groups.google.com/** >> group/e-prime?hl=en . >> > > -- > David Vinson, Ph.D. > Senior Postdoctoral Researcher > Cognitive, Perceptual and Brain Sciences Research Department > University College London > 26 Bedford Way, London WC1H 0AP > Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) > > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From meltemballan at gmail.com Mon Oct 17 20:27:08 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Mon, 17 Oct 2011 16:27:08 -0400 Subject: presenting a movie In-Reply-To: Message-ID: Hi All, I successfully showed a video on E-Prime for 10 min (I am not sure about the delays between netstation and E-PRIME yet) I used OJOSoft to convert original video format (which was VOB in my case) to MPEG-1. I rendered my video within E-Prime codeg config (btw I use K-lite codec). I did not receive any error but some warnings. After the third rendering I got no warning and of course no error. Now I am able to show a series of videos for over 10 min !! Thank you David Vinson for information and other forum members for earlier discussions. Meltem On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN wrote: > Hi David, > Thank you very much pointing out the special thread. It is not easy to > follow up all the threads but I am trying. > I tried to render my files. Before everything I checked the MSconfig as > defined on INFO: How to use MSCONFIG to troubleshoot machine configuration > and reduce background applications. > Then I followed the instructions on FEATURE: CodecConfig provides ability > to choose codecs used for Movie and Sound rendering. > I use k-lite as it works pretty good for my auditory task. But, it seems > like I cannot correctly render those files (Failed files). I tried MPEG-1, > MPEG-2, avi and as a last format ts. I could not succeed. It is little bit > frustrating and I know there are people solved the issue w/ video decoding > and presenting. > I do not know how to ask the question anymore. But is there a way to show > at least a piece between 300 and 800 ms. > Thanks > MEltem > > > On Mon, Oct 17, 2011 at 11:23 AM, David Vinson wrote: > >> Hi Meltem, >> >> Sorry to say that I'm afraid your best course of action is to try >> different video formats. >> If you run the Codec Config tool on your problematic video this may help >> to identify what the problem is. >> >> You might also find some useful information in this thread from July: >> http://groups.google.com/**group/e-prime/browse_thread/** >> thread/0338b7e9ceec5d22 >> >> good luck, >> david >> >> >> On 17/10/2011 15:53, Meltem BALLAN wrote: >> >>> David, >>> Thank you very much for the hint. Unfortunately, it has not been working. >>> I am using mpg format which is the format suggested by PST. I can only load >>> the demo videos but nothing else. I developing a series of experiment for >>> infants and need some attention grabber objects (fixation-like). It does not >>> need to be a fancy video or something just moving shapes or so between 300 >>> and 800 ms. >>> The other experiment is an open eye state (some call it resting but not >>> sure). I am showing a series of videos for 10 min and recording EEG. I >>> cannot get any of my experiments going in E-PRIME w/ video. The error >>> message is a RUNTIME ERROR. An error occurs while attempting to load the >>> movie. Marker: 242 Error: 0 (0x0) >>> Line:202 Error number:11053. >>> There must be a way to solve it. I contacted PST once and no solution >>> offered. I will try to bug them again. >>> Cheers, >>> Meltem >>> >>> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson >> d.vinson at ucl.ac.uk>> wrote: >>> >>> Hi, >>> >>> Presenting movies successfully can be a huge challenge in E-Prime, >>> mainly related to compatibility issues. >>> >>> The very first step is to create the simplest possible experiment >>> which displays only your movie and nothing else. If this does not >>> work you may need to convert the movie into some other format. >>> >>> hope this helps, >>> david >>> >>> >>> On 14/10/2011 20:21, Meltem BALLAN wrote: >>> >>> Hello Again, >>> I have been trying to present a movie which is 9 min 40 sec >>> and I am receiving an error which is : >>> Run-time Error (Line 838) 11053: An error occurred while >>> attempting to load the movie >>> Marker: 227 >>> Error: -2147220891 (0x80040265) >>> >>> I am doing exactly what I was told on the documentations. I >>> email PST couple of times and no solution yet. Any idea? Has >>> anyone solved this issue yet ? >>> Thank you again. >>> Meltem >>> >>> -- Meltem Ballan, PhD >>> Department of Psychiatry, CB# 7160 >>> University of North Carolina School of Medicine >>> 7023 Neurosciences Hospital >>> Chapel Hill, NC 27599-7160 >>> -- You received this message because you are subscribed to >>> the >>> Google Groups "E-Prime" group. >>> To post to this group, send email to e-prime at googlegroups.com >>> >. >>> >>> To unsubscribe from this group, send email to >>> e-prime+unsubscribe@**googlegroups.com >>> >>> >. >>> >>> For more options, visit this group at >>> http://groups.google.com/**group/e-prime?hl=en >>> . >>> >>> >>> -- David Vinson, Ph.D. >>> Senior Postdoctoral Researcher >>> Cognitive, Perceptual and Brain Sciences Research Department >>> University College London >>> 26 Bedford Way, London WC1H 0AP >>> Tel +44 (0)20 7679 5311 >>> >>> (UCL internal ext. 25311) >>> >>> >>> -- You received this message because you are subscribed to the >>> Google >>> Groups "E-Prime" group. >>> To post to this group, send email to e-prime at googlegroups.com >>> >. >>> >>> To unsubscribe from this group, send email to >>> e-prime+unsubscribe@**googlegroups.com >>> >>> >. >>> >>> For more options, visit this group at >>> http://groups.google.com/**group/e-prime?hl=en >>> . >>> >>> >>> >>> >>> -- >>> Meltem Ballan, PhD >>> Department of Psychiatry, CB# 7160 >>> University of North Carolina School of Medicine >>> 7023 Neurosciences Hospital >>> Chapel Hill, NC 27599-7160 >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "E-Prime" group. >>> To post to this group, send email to e-prime at googlegroups.com. >>> To unsubscribe from this group, send email to e-prime+unsubscribe@** >>> googlegroups.com . >>> For more options, visit this group at http://groups.google.com/** >>> group/e-prime?hl=en . >>> >> >> -- >> David Vinson, Ph.D. >> Senior Postdoctoral Researcher >> Cognitive, Perceptual and Brain Sciences Research Department >> University College London >> 26 Bedford Way, London WC1H 0AP >> Tel +44 (0)20 7679 5311 (UCL internal ext. 25311) >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to e-prime+unsubscribe@** >> googlegroups.com . >> For more options, visit this group at http://groups.google.com/** >> group/e-prime?hl=en . >> >> > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Mon Oct 17 20:40:14 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 17 Oct 2011 16:40:14 -0400 Subject: presenting a movie In-Reply-To: Message-ID: Meltem, Thanks for reporting back on your success, and indicating which product worked for you. I suppose you used the "Total Video Converter" product from ojosoft (www.ojosoft.com, US$27). I will add that to my growing E-Prime FAQ. I wonder how the ojosoft products compare to the AoA products (www.aoamedia.com )? -- David McFarlane, Professional Faultfinder At 10/17/2011 04:27 PM Monday, you wrote: >Hi All, >I successfully showed a video on E-Prime for 10 min (I am not sure >about the delays between netstation and E-PRIME yet) I used OJOSoft >to convert original video format (which was VOB in my case) to >MPEG-1. I rendered my video within E-Prime codeg config (btw I use >K-lite codec). I did not receive any error but some warnings. After >the third rendering I got no warning and of course no error. Now I >am able to show a series of videos for over 10 min !! >Thank you David Vinson for information and other forum members for >earlier discussions. >Meltem > >On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN ><meltemballan at gmail.com> wrote: >Hi David, >Thank you very much pointing out the special thread. It is not easy >to follow up all the threads but I am trying. >I tried to render my files. Before everything I checked the MSconfig >as defined on >INFO: How to use >MSCONFIG to troubleshoot machine configuration and reduce background >applications. Then I followed the instructions on >FEATURE: >CodecConfig provides ability to choose codecs used for Movie and >Sound rendering. I use k-lite as it works pretty good for my >auditory task. But, it seems like I cannot correctly render those >files (Failed files). I tried MPEG-1, MPEG-2, avi and as a last >format ts. I could not succeed. It is little bit frustrating and I >know there are people solved the issue w/ video decoding and presenting. >I do not know how to ask the question anymore. But is there a way to >show at least a piece between 300 and 800 ms. >Thanks >MEltem > > >On Mon, Oct 17, 2011 at 11:23 AM, David Vinson ><d.vinson at ucl.ac.uk> wrote: >Hi Meltem, > >Sorry to say that I'm afraid your best course of action is to try >different video formats. >If you run the Codec Config tool on your problematic video this may >help to identify what the problem is. > >You might also find some useful information in this thread from July: >http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22 > >good luck, >david > > >On 17/10/2011 15:53, Meltem BALLAN wrote: >David, >Thank you very much for the hint. Unfortunately, it has not been >working. I am using mpg format which is the format suggested by PST. >I can only load the demo videos but nothing else. I developing a >series of experiment for infants and need some attention grabber >objects (fixation-like). It does not need to be a fancy video or >something just moving shapes or so between 300 and 800 ms. >The other experiment is an open eye state (some call it resting but >not sure). I am showing a series of videos for 10 min and recording >EEG. I cannot get any of my experiments going in E-PRIME w/ video. >The error message is a RUNTIME ERROR. An error occurs while >attempting to load the movie. Marker: 242 Error: 0 (0x0) >Line:202 Error number:11053. >There must be a way to solve it. I contacted PST once and no >solution offered. I will try to bug them again. >Cheers, >Meltem > >On Mon, Oct 17, 2011 at 4:45 AM, David Vinson ><d.vinson at ucl.ac.uk >> wrote: > > Hi, > > Presenting movies successfully can be a huge challenge in E-Prime, > mainly related to compatibility issues. > > The very first step is to create the simplest possible experiment > which displays only your movie and nothing else. If this does not > work you may need to convert the movie into some other format. > > hope this helps, > david > > > On 14/10/2011 20:21, Meltem BALLAN wrote: > > Hello Again, > I have been trying to present a movie which is 9 min 40 sec > and I am receiving an error which is : > Run-time Error (Line 838) 11053: An error occurred while > attempting to load the movie > Marker: 227 > Error: -2147220891 > 2147220891> (0x80040265) > > I am doing exactly what I was told on the documentations. I > email PST couple of times and no solution yet. Any idea? Has > anyone solved this issue yet ? > Thank you again. > Meltem > > -- Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Mon Oct 17 20:44:04 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Mon, 17 Oct 2011 16:44:04 -0400 Subject: presenting a movie In-Reply-To: <4e9c92b8.471d2a0a.10e2.ffffeea0SMTPIN_ADDED@gmr-mx.google.com> Message-ID: David, I used the free version. But I think it has the similar specs. The other product I can recommend is vlc and vlmc for mac. It is still beta and success rate for my experiments is 50/50. Best Meltem On Oct 17, 2011 4:40 PM, "David McFarlane" wrote: > Meltem, > > Thanks for reporting back on your success, and indicating which product > worked for you. I suppose you used the "Total Video Converter" product from > ojosoft (www.ojosoft.com, US$27). I will add that to my growing E-Prime > FAQ. I wonder how the ojosoft products compare to the AoA products ( > www.aoamedia.com )? > > -- David McFarlane, Professional Faultfinder > > > At 10/17/2011 04:27 PM Monday, you wrote: > >> Hi All, >> I successfully showed a video on E-Prime for 10 min (I am not sure about >> the delays between netstation and E-PRIME yet) I used OJOSoft to convert >> original video format (which was VOB in my case) to MPEG-1. I rendered my >> video within E-Prime codeg config (btw I use K-lite codec). I did not >> receive any error but some warnings. After the third rendering I got no >> warning and of course no error. Now I am able to show a series of videos for >> over 10 min !! >> Thank you David Vinson for information and other forum members for earlier >> discussions. >> Meltem >> >> On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN <> meltemballan at gmail.**com >meltemballan at gmail.com> >> wrote: >> Hi David, >> Thank you very much pointing out the special thread. It is not easy to >> follow up all the threads but I am trying. >> I tried to render my files. Before everything I checked the MSconfig as >> defined on >> >**INFO: How to use MSCONFIG to troubleshoot machine configuration and >> reduce background applications. Then I followed the instructions on < >> http://www.pstnet.com/**support/kb.asp?TopicID=3162 >> >**FEATURE: CodecConfig provides ability to choose codecs used for Movie >> and Sound rendering. I use k-lite as it works pretty good for my auditory >> task. But, it seems like I cannot correctly render those files (Failed >> files). I tried MPEG-1, MPEG-2, avi and as a last format ts. I could not >> succeed. It is little bit frustrating and I know there are people solved the >> issue w/ video decoding and presenting. >> I do not know how to ask the question anymore. But is there a way to show >> at least a piece between 300 and 800 ms. >> Thanks >> MEltem >> >> >> On Mon, Oct 17, 2011 at 11:23 AM, David Vinson <> d.vinson at ucl.ac.uk>d.**vinson at ucl.ac.uk > wrote: >> Hi Meltem, >> >> Sorry to say that I'm afraid your best course of action is to try >> different video formats. >> If you run the Codec Config tool on your problematic video this may help >> to identify what the problem is. >> >> You might also find some useful information in this thread from July: >> > thread/0338b7e9ceec5d22 >> >http:/**/groups.google.com/group/e-**prime/browse_thread/thread/** >> 0338b7e9ceec5d22 >> >> good luck, >> david >> >> >> On 17/10/2011 15:53, Meltem BALLAN wrote: >> David, >> Thank you very much for the hint. Unfortunately, it has not been working. >> I am using mpg format which is the format suggested by PST. I can only load >> the demo videos but nothing else. I developing a series of experiment for >> infants and need some attention grabber objects (fixation-like). It does not >> need to be a fancy video or something just moving shapes or so between 300 >> and 800 ms. >> The other experiment is an open eye state (some call it resting but not >> sure). I am showing a series of videos for 10 min and recording EEG. I >> cannot get any of my experiments going in E-PRIME w/ video. The error >> message is a RUNTIME ERROR. An error occurs while attempting to load the >> movie. Marker: 242 Error: 0 (0x0) >> Line:202 Error number:11053. >> There must be a way to solve it. I contacted PST once and no solution >> offered. I will try to bug them again. >> Cheers, >> Meltem >> >> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson <> >d.**vinson at ucl.ac.uk > >> wrote: >> >> Hi, >> >> Presenting movies successfully can be a huge challenge in E-Prime, >> mainly related to compatibility issues. >> >> The very first step is to create the simplest possible experiment >> which displays only your movie and nothing else. If this does not >> work you may need to convert the movie into some other format. >> >> hope this helps, >> david >> >> >> On 14/10/2011 20:21, Meltem BALLAN wrote: >> >> Hello Again, >> I have been trying to present a movie which is 9 min 40 sec >> and I am receiving an error which is : >> Run-time Error (Line 838) 11053: An error occurred while >> attempting to load the movie >> Marker: 227 >> Error: -2147220891 2147220891> >> (0x80040265) >> >> I am doing exactly what I was told on the documentations. I >> email PST couple of times and no solution yet. Any idea? Has >> anyone solved this issue yet ? >> Thank you again. >> Meltem >> >> -- Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Mon Oct 17 20:58:32 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 17 Oct 2011 16:58:32 -0400 Subject: presenting a movie In-Reply-To: Message-ID: Just to clarify, none of the products from ojosoft are free. They are distributed as "shareware", which means that you may download and try them for free, and you might indeed get away with continuing to use them for free, but if you find them useful then you are supposed to pay for them, else how can companies like this continue to make these products available? So if ojosoft provided something of value to your research, then do the right thing and buy the product to keep your karma intact and help keep the company in business providing useful products for the next time you need one. -- David McFarlane, Professional Faultfinder At 10/17/2011 04:44 PM Monday, you wrote: >David, >I used the free version. But I think it has the similar specs. The >other product I can recommend is vlc and vlmc for mac. It is still >beta and success rate for my experiments is 50/50. >Best >Meltem >On Oct 17, 2011 4:40 PM, "David McFarlane" ><mcfarla9 at msu.edu> wrote: >Meltem, > >Thanks for reporting back on your success, and indicating which >product worked for you. I suppose you used the "Total Video >Converter" product from ojosoft >(www.ojosoft.com, US$27). I will add that >to my growing E-Prime FAQ. I wonder how the ojosoft products >compare to the AoA products (www.aoamedia.com )? > >-- David McFarlane, Professional Faultfinder > > >At 10/17/2011 04:27 PM Monday, you wrote: >Hi All, >I successfully showed a video on E-Prime for 10 min (I am not sure >about the delays between netstation and E-PRIME yet) I used OJOSoft >to convert original video format (which was VOB in my case) to >MPEG-1. I rendered my video within E-Prime codeg config (btw I use >K-lite codec). I did not receive any error but some warnings. After >the third rendering I got no warning and of course no error. Now I >am able to show a series of videos for over 10 min !! >Thank you David Vinson for information and other forum members for >earlier discussions. >Meltem > >On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN ><meltemballan at gmail.com> >wrote: >Hi David, >Thank you very much pointing out the special thread. It is not easy >to follow up all the threads but I am trying. >I tried to render my files. Before everything I checked the MSconfig >as defined on ><http://www.pstnet.com/support/kb.asp?TopicID=2621>INFO: >How to use MSCONFIG to troubleshoot machine configuration and reduce >background applications. Then I followed the instructions on ><http://www.pstnet.com/support/kb.asp?TopicID=3162>FEATURE: >CodecConfig provides ability to choose codecs used for Movie and >Sound rendering. I use k-lite as it works pretty good for my >auditory task. But, it seems like I cannot correctly render those >files (Failed files). I tried MPEG-1, MPEG-2, avi and as a last >format ts. I could not succeed. It is little bit frustrating and I >know there are people solved the issue w/ video decoding and presenting. >I do not know how to ask the question anymore. But is there a way to >show at least a piece between 300 and 800 ms. >Thanks >MEltem > > >On Mon, Oct 17, 2011 at 11:23 AM, David Vinson ><d.vinson at ucl.ac.uk> >wrote: >Hi Meltem, > >Sorry to say that I'm afraid your best course of action is to try >different video formats. >If you run the Codec Config tool on your problematic video this may >help to identify what the problem is. > >You might also find some useful information in this thread from July: ><http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22>http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22 > >good luck, >david > > >On 17/10/2011 15:53, Meltem BALLAN wrote: >David, >Thank you very much for the hint. Unfortunately, it has not been >working. I am using mpg format which is the format suggested by PST. >I can only load the demo videos but nothing else. I developing a >series of experiment for infants and need some attention grabber >objects (fixation-like). It does not need to be a fancy video or >something just moving shapes or so between 300 and 800 ms. >The other experiment is an open eye state (some call it resting but >not sure). I am showing a series of videos for 10 min and recording >EEG. I cannot get any of my experiments going in E-PRIME w/ video. >The error message is a RUNTIME ERROR. An error occurs while >attempting to load the movie. Marker: 242 Error: 0 (0x0) >Line:202 Error number:11053. >There must be a way to solve it. I contacted PST once and no >solution offered. I will try to bug them again. >Cheers, >Meltem > >On Mon, Oct 17, 2011 at 4:45 AM, David Vinson ><d.vinson at ucl.ac.uk >> wrote: > > Hi, > > Presenting movies successfully can be a huge challenge in E-Prime, > mainly related to compatibility issues. > > The very first step is to create the simplest possible experiment > which displays only your movie and nothing else. If this does not > work you may need to convert the movie into some other format. > > hope this helps, > david > > > On 14/10/2011 20:21, Meltem BALLAN wrote: > > Hello Again, > I have been trying to present a movie which is 9 min 40 sec > and I am receiving an error which is : > Run-time Error (Line 838) 11053: An error occurred while > attempting to load the movie > Marker: 227 > Error: > -2147220891>2147220891 > 2147220891>2147220891> (0x80040265) > > I am doing exactly what I was told on the documentations. I > email PST couple of times and no solution yet. Any idea? Has > anyone solved this issue yet ? > Thank you again. > Meltem > > -- Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to >e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Tue Oct 18 11:37:04 2011 From: giladsabo at gmail.com (gilis) Date: Tue, 18 Oct 2011 04:37:04 -0700 Subject: Randomizing without repeating the same word twice Message-ID: Hi there! Sorry for bothering the groups so often, but I just tackled a road stone in my programming. Words are selected from an attribute which contain 10 words and lied in a block that is nested in the main list. The words are selected randomly in the block but the list run the block 20 times (at list so I weighted the block in the main list though it doesn't seem to run it 20 times, which is another problem...) so it happen that the same word repeat itself twice (e.g., food, apple, juice, fork, spoon, orange, sandwich, beach, ocean, river, river: in this instance river appeared last in the first time the block was run and first in the second so it actually repeated itself) -how can I avoid that? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From meltemballan at gmail.com Tue Oct 18 13:37:43 2011 From: meltemballan at gmail.com (Meltem BALLAN) Date: Tue, 18 Oct 2011 09:37:43 -0400 Subject: presenting a movie In-Reply-To: <4e9c9703.4a962a0a.6c99.fffff204SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hi David, That you very much for reminding. I know what I am responsible of especially when I teach the science ethics. You might be interested that OJOsoft trial version allows you to convert 20% of your entire data. Meltem On Mon, Oct 17, 2011 at 4:58 PM, David McFarlane wrote: > Just to clarify, none of the products from ojosoft are free. They are > distributed as "shareware", which means that you may download and try them > for free, and you might indeed get away with continuing to use them for > free, but if you find them useful then you are supposed to pay for them, > else how can companies like this continue to make these products available? > So if ojosoft provided something of value to your research, then do the > right thing and buy the product to keep your karma intact and help keep the > company in business providing useful products for the next time you need > one. > > > -- David McFarlane, Professional Faultfinder > > > At 10/17/2011 04:44 PM Monday, you wrote: > > David, >> I used the free version. But I think it has the similar specs. The other >> product I can recommend is vlc and vlmc for mac. It is still beta and >> success rate for my experiments is 50/50. >> Best >> Meltem >> On Oct 17, 2011 4:40 PM, "David McFarlane" <mcfa >> **rla9 at msu.edu > wrote: >> Meltem, >> >> Thanks for reporting back on your success, and indicating which product >> worked for you. I suppose you used the "Total Video Converter" product from >> ojosoft (www.**ojosoft.com, >> US$27). I will add that to my growing E-Prime FAQ. I wonder how the >> ojosoft products compare to the AoA products ( >> www.**aoamedia.com )? >> >> >> -- David McFarlane, Professional Faultfinder >> >> >> At 10/17/2011 04:27 PM Monday, you wrote: >> Hi All, >> I successfully showed a video on E-Prime for 10 min (I am not sure about >> the delays between netstation and E-PRIME yet) I used OJOSoft to convert >> original video format (which was VOB in my case) to MPEG-1. I rendered my >> video within E-Prime codeg config (btw I use K-lite codec). I did not >> receive any error but some warnings. After the third rendering I got no >> warning and of course no error. Now I am able to show a series of videos for >> over 10 min !! >> Thank you David Vinson for information and other forum members for earlier >> discussions. >> Meltem >> >> On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN <> meltemballan at gmail.**com >> gmail.com >meltemballan at gmail.**com> >> wrote: >> Hi David, >> Thank you very much pointing out the special thread. It is not easy to >> follow up all the threads but I am trying. >> I tried to render my files. Before everything I checked the MSconfig as >> defined on < >> >ht**tp://www.pstnet.com/support/**kb.asp?TopicID=2621>INFO: >> How to use MSCONFIG to troubleshoot machine configuration and reduce >> background applications. Then I followed the instructions on << >> http://www.pstnet.com/**support/kb.asp?TopicID=3162 >> >ht**tp://www.pstnet.com/support/**kb.asp?TopicID=3162>FEATURE: >> CodecConfig provides ability to choose codecs used for Movie and Sound >> rendering. I use k-lite as it works pretty good for my auditory task. But, >> it seems like I cannot correctly render those files (Failed files). I tried >> MPEG-1, MPEG-2, avi and as a last format ts. I could not succeed. It is >> little bit frustrating and I know there are people solved the issue w/ video >> decoding and presenting. >> >> I do not know how to ask the question anymore. But is there a way to show >> at least a piece between 300 and 800 ms. >> Thanks >> MEltem >> >> >> On Mon, Oct 17, 2011 at 11:23 AM, David Vinson <> d.vinson at ucl.ac.uk><**mailto:d.vinson at ucl.ac.uk>d.**vinson at ucl.ac.uk> >> wrote: >> Hi Meltem, >> >> Sorry to say that I'm afraid your best course of action is to try >> different video formats. >> If you run the Codec Config tool on your problematic video this may help >> to identify what the problem is. >> >> You might also find some useful information in this thread from July: >> <> thread/0338b7e9ceec5d22 >> >http:/**/groups.google.com/group/e-**prime/browse_thread/thread/** >> 0338b7e9ceec5d22 >> >http://**groups.google.com/group/e-**prime/browse_thread/thread/** >> 0338b7e9ceec5d22 >> >> >> good luck, >> david >> >> >> On 17/10/2011 15:53, Meltem BALLAN wrote: >> David, >> Thank you very much for the hint. Unfortunately, it has not been working. >> I am using mpg format which is the format suggested by PST. I can only load >> the demo videos but nothing else. I developing a series of experiment for >> infants and need some attention grabber objects (fixation-like). It does not >> need to be a fancy video or something just moving shapes or so between 300 >> and 800 ms. >> The other experiment is an open eye state (some call it resting but not >> sure). I am showing a series of videos for 10 min and recording EEG. I >> cannot get any of my experiments going in E-PRIME w/ video. The error >> message is a RUNTIME ERROR. An error occurs while attempting to load the >> movie. Marker: 242 Error: 0 (0x0) >> Line:202 Error number:11053. >> There must be a way to solve it. I contacted PST once and no solution >> offered. I will try to bug them again. >> Cheers, >> Meltem >> >> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson <> ><**mailto:d.vinson at ucl.ac.uk>d.**vinson at ucl.ac.uk > d.vinson at ucl.ac.uk>> wrote: >> >> Hi, >> >> Presenting movies successfully can be a huge challenge in E-Prime, >> mainly related to compatibility issues. >> >> The very first step is to create the simplest possible experiment >> which displays only your movie and nothing else. If this does not >> work you may need to convert the movie into some other format. >> >> hope this helps, >> david >> >> >> On 14/10/2011 20:21, Meltem BALLAN wrote: >> >> Hello Again, >> I have been trying to present a movie which is 9 min 40 sec >> and I am receiving an error which is : >> Run-time Error (Line 838) 11053: An error occurred while >> attempting to load the movie >> Marker: 227 >> Error: -2147220891>2147220891> 2147220891>2147220891>2147220891> (0x80040265) >> >> >> I am doing exactly what I was told on the documentations. I >> email PST couple of times and no solution yet. Any idea? Has >> anyone solved this issue yet ? >> Thank you again. >> Meltem >> >> -- Meltem Ballan, PhD >> Department of Psychiatry, CB# 7160 >> University of North Carolina School of Medicine >> 7023 Neurosciences Hospital >> Chapel Hill, NC 27599-7160 >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to >> >e-prime at googlegroups.com. >> To unsubscribe from this group, send email to > e-prime%2Bunsubscribe@**googlegroups.com >> >e-prime+**unsubscribe at googlegroups.com >> . >> For more options, visit this group at > group/e-prime?hl=en > >> http://**groups.google.com/group/e-**prime?hl=en >> . >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to e-prime+unsubscribe@** >> googlegroups.com . >> For more options, visit this group at http://groups.google.com/** >> group/e-prime?hl=en . >> > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe@** > googlegroups.com . > For more options, visit this group at http://groups.google.com/** > group/e-prime?hl=en . > > -- Meltem Ballan, PhD Department of Psychiatry, CB# 7160 University of North Carolina School of Medicine 7023 Neurosciences Hospital Chapel Hill, NC 27599-7160 -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcfarla9 at msu.edu Tue Oct 18 14:15:22 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Tue, 18 Oct 2011 10:15:22 -0400 Subject: Randomizing without repeating the same word twice In-Reply-To: <01498066-cd0a-4ac1-8c9e-874c6302b9cc@hv4g2000vbb.googlegro ups.com> Message-ID: Gilis, Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... "Randomization with constraints" is very tricky in E-Prime, and has been discussed extensively on the message boards. Try searching for "random", "pseudorandom", or "constraint" both here at the Google Group and at the PST Forum. Also see the "NoRepeat" examples downloadable fron PST. And again, do not neglect PST Support, they would love to hear from you. -- David McFarlane, Professional Faultfinder "For a successful technology, reality must take precedence over public relations, for nature cannot be fooled." (Richard Feynman, Nobel prize-winning physicist) >Sorry for bothering the groups so often, but I just tackled a road >stone in my programming. Words are selected from an attribute which >contain 10 words and lied in a block that is nested in the main list. >The words are selected randomly in the block but the list run the >block 20 times (at list so I weighted the block in the main list >though it doesn't seem to run it 20 times, which is another >problem...) so it happen that the same word repeat itself twice (e.g., >food, apple, juice, fork, spoon, orange, sandwich, beach, ocean, >river, river: in this instance river appeared last in the first time >the block was run and first in the second so it actually repeated >itself) -how can I avoid that? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From njvack at wisc.edu Tue Oct 18 15:39:12 2011 From: njvack at wisc.edu (Nate Vack) Date: Tue, 18 Oct 2011 10:39:12 -0500 Subject: presenting a movie In-Reply-To: Message-ID: If you're looking to transcode videos, you might try Handbrake: http://handbrake.fr/ which may give you a result you like. And it's free. -n On Tue, Oct 18, 2011 at 8:37 AM, Meltem BALLAN wrote: > Hi David, > That you very much for reminding. I know what I am responsible of especially > when I teach the science ethics. You might be interested that OJOsoft trial > version allows you to convert 20% of your entire data. > Meltem > > > On Mon, Oct 17, 2011 at 4:58 PM, David McFarlane wrote: >> >> Just to clarify, none of the products from ojosoft are free. ?They are >> distributed as "shareware", which means that you may download and try them >> for free, and you might indeed get away with continuing to use them for >> free, but if you find them useful then you are supposed to pay for them, >> else how can companies like this continue to make these products available? >> ?So if ojosoft provided something of value to your research, then do the >> right thing and buy the product to keep your karma intact and help keep the >> company in business providing useful products for the next time you need >> one. >> >> -- David McFarlane, Professional Faultfinder >> >> >> At 10/17/2011 04:44 PM Monday, you wrote: >> >>> David, >>> I used the free version. But I think it has the similar specs. The other >>> product I can recommend is vlc and vlmc for mac. It is still beta and >>> success rate for my experiments is 50/50. >>> Best >>> Meltem >>> On Oct 17, 2011 4:40 PM, "David McFarlane" >>> <mcfarla9 at msu.edu> wrote: >>> Meltem, >>> >>> Thanks for reporting back on your success, and indicating which product >>> worked for you. ?I suppose you used the "Total Video Converter" product from >>> ojosoft (www.ojosoft.com, US$27). ?I will add that >>> to my growing E-Prime FAQ. ?I wonder how the ojosoft products compare to the >>> AoA products (www.aoamedia.com )? >>> >>> -- David McFarlane, Professional Faultfinder >>> >>> >>> At 10/17/2011 04:27 PM Monday, you wrote: >>> Hi All, >>> I successfully showed a video on E-Prime for 10 min (I am not sure about >>> the delays between netstation and E-PRIME yet) I used OJOSoft to convert >>> original video format (which was VOB in my case) to MPEG-1. I rendered my >>> video within E-Prime codeg config (btw I use K-lite codec). I did not >>> receive any error but some warnings. After the third rendering I got no >>> warning and of course no error. Now I am able to show a series of videos for >>> over 10 ?min !! >>> Thank you David Vinson for information and other forum members for >>> earlier discussions. >>> Meltem >>> >>> On Mon, Oct 17, 2011 at 2:24 PM, Meltem BALLAN >>> <meltemballan at gmail.com> >>> wrote: >>> Hi David, >>> Thank you very much pointing out the special thread. It is not easy to >>> follow up all the threads but I am trying. >>> I tried to render my files. Before everything I checked the MSconfig as >>> defined on >>> <http://www.pstnet.com/support/kb.asp?TopicID=2621>INFO: >>> How to use MSCONFIG to troubleshoot machine configuration and reduce >>> background applications. Then I followed the instructions on >>> <http://www.pstnet.com/support/kb.asp?TopicID=3162>FEATURE: >>> CodecConfig provides ability to choose codecs used for Movie and Sound >>> rendering. I use k-lite as it works pretty good for my auditory task. But, >>> it seems like I cannot correctly render those files (Failed files). I tried >>> MPEG-1, MPEG-2, avi and as a last format ts. I could not succeed. It is >>> little bit frustrating and I know there are people solved the issue w/ video >>> decoding and presenting. >>> I do not know how to ask the question anymore. But is there a way to show >>> at least a piece between 300 and 800 ms. >>> Thanks >>> MEltem >>> >>> >>> On Mon, Oct 17, 2011 at 11:23 AM, David Vinson >>> <d.vinson at ucl.ac.uk> >>> wrote: >>> Hi Meltem, >>> >>> Sorry to say that I'm afraid your best course of action is to try >>> different video formats. >>> If you run the Codec Config tool on your problematic video this may help >>> to identify what the problem is. >>> >>> You might also find some useful information in this thread from July: >>> >>> <http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22>http://groups.google.com/group/e-prime/browse_thread/thread/0338b7e9ceec5d22 >>> >>> good luck, >>> david >>> >>> >>> On 17/10/2011 15:53, Meltem BALLAN wrote: >>> David, >>> Thank you very much for the hint. Unfortunately, it has not been working. >>> I am using mpg format which is the format suggested by PST. I can only load >>> the demo videos but nothing else. I developing a series of experiment for >>> infants and need some attention grabber objects (fixation-like). It does not >>> need to be a fancy video or something just moving shapes or so between 300 >>> and 800 ms. >>> The other experiment is an open eye state (some call it resting but not >>> sure). I am showing a series of videos for 10 min and recording EEG. I >>> cannot get any of my experiments going in E-PRIME w/ video. The error >>> message is a RUNTIME ERROR. An error occurs while attempting to load the >>> movie. Marker: 242 Error: 0 (0x0) >>> Line:202 Error number:11053. >>> There must be a way to solve it. I contacted PST once and no solution >>> offered. I will try to bug them again. >>> Cheers, >>> Meltem >>> >>> On Mon, Oct 17, 2011 at 4:45 AM, David Vinson >>> <d.vinson at ucl.ac.uk >>> > wrote: >>> >>> ?Hi, >>> >>> ?Presenting movies successfully can be a huge challenge in E-Prime, >>> ?mainly related to compatibility issues. >>> >>> ?The very first step is to create the simplest possible experiment >>> ?which displays only your movie and nothing else. ?If this does not >>> ?work you may need to convert the movie into some other format. >>> >>> ?hope this helps, >>> ?david >>> >>> >>> ?On 14/10/2011 20:21, Meltem BALLAN wrote: >>> >>> ? ? ?Hello Again, >>> ? ? ?I have been trying to present a movie ?which is 9 min 40 sec >>> ? ? ?and I am receiving an error which is : >>> ? ? ?Run-time Error (Line 838) 11053: An error occurred while >>> ? ? ?attempting to load the movie >>> ? ? ?Marker: 227 >>> ? ? ?Error: -2147220891>2147220891 >>> 2147220891>2147220891> >>> (0x80040265) >>> >>> ? ? ?I am doing exactly what I was told on the documentations. I >>> ? ? ?email PST couple of times and no solution yet. Any idea? Has >>> ? ? ?anyone solved this issue yet ? >>> ? ? ?Thank you again. >>> ? ? ?Meltem >>> >>> ? ? ?-- ? ? ? ? Meltem Ballan, PhD >>> ? ? ?Department of Psychiatry, CB# 7160 >>> ? ? ?University of North Carolina School of Medicine >>> ? ? ?7023 Neurosciences Hospital >>> ? ? ?Chapel Hill, NC 27599-7160 >>> >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "E-Prime" group. >>> To post to this group, send email to >>> e-prime at googlegroups.com. >>> To unsubscribe from this group, send email to >>> e-prime+unsubscribe at googlegroups.com. >>> For more options, visit this group at >>> http://groups.google.com/group/e-prime?hl=en. >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "E-Prime" group. >>> To post to this group, send email to e-prime at googlegroups.com. >>> To unsubscribe from this group, send email to >>> e-prime+unsubscribe at googlegroups.com. >>> For more options, visit this group at >>> http://groups.google.com/group/e-prime?hl=en. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "E-Prime" group. >> To post to this group, send email to e-prime at googlegroups.com. >> To unsubscribe from this group, send email to >> e-prime+unsubscribe at googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/e-prime?hl=en. >> > > > > -- > Meltem Ballan, PhD > Department of Psychiatry, CB# 7160 > University of North Carolina School of Medicine > 7023 Neurosciences Hospital > Chapel Hill, NC 27599-7160 > > -- > You received this message because you are subscribed to the Google Groups > "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to > e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/e-prime?hl=en. > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Tue Oct 18 17:18:39 2011 From: giladsabo at gmail.com (gilis) Date: Tue, 18 Oct 2011 10:18:39 -0700 Subject: Randomizing without repeating the same word twice In-Reply-To: <4e9d8a05.47352b0a.12f9.1d85SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Thanks! the problem however is still not solved as the example of noRepeat refer to randomizing nested lists while I'm interested in randomizing words from the same list which repeat itself several times. On Oct 18, 4:15?pm, David McFarlane wrote: > Gilis, > > Stock reminder: ?1) I do not work for PST. ?2) PST's trained staff > takes any and all questions athttp://support.pstnet.com/e%2Dprime/support/login.asp, and they > strive to respond to all requests in 24-48 hours -- this is pretty > much their substitute for proper documentation, so make full use of > it. ?3) If you do get an answer from PST Web Support, please extend > the courtesy of posting their reply back here for the sake of others. > > That said, here is my take... > > "Randomization with constraints" is very tricky in E-Prime, and has > been discussed extensively on the message boards. ?Try searching for > "random", "pseudorandom", or "constraint" both here at the Google > Group and at the PST Forum. ?Also see the "NoRepeat" examples > downloadable fron PST. ?And again, do not neglect PST Support, they > would love to hear from you. > > -- David McFarlane, Professional Faultfinder > "For a successful technology, reality must take precedence over > public relations, for nature cannot be fooled." ?(Richard Feynman, > Nobel prize-winning physicist) > > > > > > > > >Sorry for bothering the groups so often, but I just tackled a road > >stone in my programming. Words are selected from an attribute which > >contain 10 words and lied in a block that is nested in the main list. > >The words are selected randomly in the block but the list run the > >block 20 times (at list so I weighted the block in the main list > >though it doesn't seem to run it 20 times, which is another > >problem...) so it happen that the same word repeat itself twice (e.g., > >food, apple, juice, fork, spoon, orange, sandwich, beach, ocean, > >river, river: in this instance river appeared last in the first time > >the block was run and first in the second so it actually repeated > >itself) ?-how can I avoid that? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Tue Oct 18 21:17:01 2011 From: giladsabo at gmail.com (gilis) Date: Tue, 18 Oct 2011 14:17:01 -0700 Subject: Finding the right comments Message-ID: In continue to my former question I would like to update that I believe that I find the solution though the problem is that I've tough time to find the right commands in eprime. First, in short, this is what I want to do: I've one main list, in this list there are about 10 nested blocks, each block contain an attribute with 10 words and from this attribute the slide object take the word to present each time, so the selection of words from this attribute is set to random. Each block run several times so though the selection of words is random, it could happen that the same word repeat itself twice in the same block (and I don't want it). The solution I was thinking about go like that: Dim blocknum, blockname as integer Blockname=c.GetAttrib(?block_name") ' each block has its own name, that's important do ' starting loop statement Dim Comparison as Boolean 'setting another important variables Dim worda as string Dim wordb as string Dim n as integer N=n+1 ' counting the number of words that were presented, so each word has its own ordinal number If mod n/2=0 then 'well, I don't know the right command in eprime, but I try to see if there is remnant when dividing n by two to conclude if it's odd or even c. SetAttrib ?word1?, c.GetAttrib(?word?) 'in the case that n is even number keep the last word in attribute word1 else c.SetAttrib ?word2?, c.GetAttrib(?word?) ' in the case that n is odd number, keep the last word in attribute word2 end if c.GetAttrib(?word1?)=worda 'worda= the last word or the last-1 word c.GetAttrib(?word2?)=wordb 'wordb= the last-1 word or the last word if worda=wordb then 'the Boolean variable is false in case that two consecutive words are actually the same Comparison= false Else Comparison=true 'if the two consecutive words are different then the Boolean variable is set to "true" End if If Comparison = false then randomarray(List.&Blockname) 'well, I actually want to randomly select another word from the current block as long as Comparison value is false but this is obviously not the right command-help is needed end if Loop until Comparison=true 'loop until different word is chosen N=0 'reset n value because there is no problem that two consecutive words will be the same if they are in different blocks and if n is not reset then the algorithm will prohibit such cases -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 19 11:45:40 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 19 Oct 2011 04:45:40 -0700 Subject: Finding the right comments In-Reply-To: Message-ID: Hi Gilis, In by far you're not the first and will definitely also not be the last person to struggle with preventing stimuli to 'double up' when a list is repeated. As David wrote in your previous thread, searching this group and the PST forums should give you a bunch of threads on this topic. The solution you propose seems reasonable but the main problem would be that whenever a doubling is discovered, the doubled word should be replaced (or the trial with the double skipped and added again later in the program, causing a potential new doubling etc). This requires interfering with the lists, after which a list should be reset and the randomization up to that point is then lost. It is possible to create a new list from skipped trials that runs after the initial lists have run (if doubles have occurred) but this tampers with a blocked design which is often not desired. In by far the most easy solution therefore is to simply split the stimuli (or whatever the to be randomized values are) in two separate lists that are alternating. I.e. first run a randomized listA then a randomized listB, followed by listA etc. This admittedly results in pseudorandomization but for most designs I'd reckon this is a better solution than to tamper with trialorder 'on the fly', breaking up the blocked design, having a memory heavy comparison process running throughout the test etc etc. best, liw On Oct 18, 11:17?pm, gilis wrote: > In continue to my former question I would like to update that I > believe that I find the solution though the problem is that I've tough > time to find the right commands in eprime. First, in short, this is > what I want to do: I've one main list, in this list there are about 10 > nested blocks, each block contain an attribute with 10 words and from > this attribute the slide object take the word to present each time, so > the selection of words from this attribute is set to random. Each > block run several times so though the selection of words is random, it > could happen that the same word repeat itself twice in the same block > (and I don't want it). The solution I was thinking about go like that: > > Dim blocknum, blockname as integer > > Blockname=c.GetAttrib(?block_name") ' each block has its own name, > that's important > > do ?' starting loop statement > > Dim Comparison as Boolean 'setting another important variables > Dim worda as string > Dim wordb as string > Dim n as integer > > N=n+1 ' counting the number of words that were presented, so each word > has its own ordinal number > > If mod n/2=0 then 'well, I don't know the right command in eprime, but > I try to see if there is remnant when dividing n by two to conclude if > it's odd or even > > c. SetAttrib ??word1?, c.GetAttrib(?word?) ?'in the case that n is > even number keep the last word in attribute word1 > else > c.SetAttrib ?word2?, c.GetAttrib(?word?) ? ' in the case that n is odd > number, keep the last word in attribute word2 > end if > c.GetAttrib(?word1?)=worda ? ? ? ? ?'worda= the last word or the > last-1 word > c.GetAttrib(?word2?)=wordb ? ? ? ? ?'wordb= the last-1 word or the > last word > if worda=wordb then ? ? ? ? ? ? ? ? ? ?'the Boolean variable is false > in case that two consecutive words are actually the same > Comparison= false > Else > Comparison=true ? ? ? ? ? ? ? ? ? ? ? 'if the two consecutive words > are different then the Boolean variable is set to "true" > End if > If Comparison = false then > randomarray(List.&Blockname) ?'well, I actually want to randomly > select another word from the current block as long as Comparison value > is ? ? ? ?false but this is obviously not the right command-help is > needed > end if > Loop until Comparison=true 'loop until different word is chosen > N=0 'reset n value because there is no problem that two consecutive > words will be the same if they are in different blocks and if n is not > reset then the algorithm will prohibit such cases -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 19 12:20:37 2011 From: liwenna at gmail.com (Anne-Wil Kruijt) Date: Wed, 19 Oct 2011 14:20:37 +0200 Subject: Finding the right comments Message-ID: That being said... given the low amount of stimuli you have, you might not mind typing each word out (and adding "'s) in an inline. In that case you could have a look at the attached script. This is how I would tackle the thing you described. At the beginning of each block the stimwords are loaded into an array, randomized, the first word checked to see whether it's different than the last used word and if that's the case the stimwords are written into the stimlist. I realize this could be more elegantly done (loading the words at the start of the experiment rather than repeatedly at the start of each block, and using a written loop rather than a label, and in order to check whether it works an attribute "doublediscovered" is marked x and remains marked for all 10 trials in that block, but ermm yeah... it does work ^.^) Best, liw -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- A non-text attachment was scrubbed... Name: AWsnorepeats.es2 Type: application/octet-stream Size: 43898 bytes Desc: not available URL: From scarlet.quill at gmail.com Wed Oct 19 14:07:28 2011 From: scarlet.quill at gmail.com (Poppy) Date: Wed, 19 Oct 2011 07:07:28 -0700 Subject: Randomizing Block lists without randomizing the trial list Message-ID: Ok, I'm sure there is a remarkably simple way of doing this; but I've been banging my head against the desk for the last 2 days trying to pull it off. Basically; I am running a repeated measures design whereby a participant is presented with an image and answers 8 sequential likert questions about that image (the image remaining on screen as each question is presented), and then finally makes 2 decisions about that image (One a Binary Ultimatum game question and 1 a binary Prisoners Dilemma question) (again with the image remaining on the screen above the choices). That part I have done and works perfectly. The problem comes where each participant needs to see a total of 16 of these images, essentially 16 blocks of the trial spoken about above, and the order these 16 blocks are presented needs to be random. I've tried nesting the images and questions within trials, and I've tried different proc's for each trial, but everytime I try to randomise the list it ends up mixing up the order of the images and questions. Is there anyway to randomise the blocks, but keeping the trials within the blocks sequential? Thanks! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Wed Oct 19 15:51:09 2011 From: liwenna at gmail.com (liwenna) Date: Wed, 19 Oct 2011 08:51:09 -0700 Subject: Randomizing Block lists without randomizing the trial list In-Reply-To: <4dee885c-826e-40e3-8078-c489f37e7991@1g2000vbx.googlegroups.com> Message-ID: Hi Poppy, I got to admit that your explanation of what you did so far was mostly lost on me... I reckon I won't be the only reader experiencing this problem. In general: realize that e-prime can use information from one single level of each list within a chain of nested list for each run of the most lowest ranked procedure. So ... the thing that you call block where the image appears (and remains) on the display and the pp answers questions: is this (and it sound as if this is the case) one run of a list that has the 8 likert scaled questions and procedures in the top 8 rows and the procedures showing the two different decision questions in the lower two levels? If so -> keep that list sequential (!!), it determines the order of the questions. The determination of the image itself should happen in a different list that is either higher or lower ranked. If (and this may well be the case) the attribute that determines which image is being shown is also in this questions list or even in a lower ranking (nested) list, then move it to a higher ranking list. If the attribute that determines which image is shown is located in a list that is lower ranked (nested into the questionslist) then for each level of the higher ranking list (the 10 questions) a new level will be drawn from the lower ranking list (the images) and hence a new, randomly drawn image will appear for each question. It might well be that I am totally on the wrong track in comprehending what you did so far.., consider posting a screen shot here (or mailing for instance me your studio file). best, liw On Oct 19, 4:07?pm, Poppy wrote: > Ok, I'm sure there is a remarkably simple way of doing this; but I've > been banging my head against the desk for the last 2 days trying to > pull it off. > > Basically; I am running a repeated measures design whereby a > participant is presented with an image and answers 8 sequential likert > questions about that image (the image remaining on screen as each > question is presented), and then finally makes 2 decisions about that > image (One a Binary Ultimatum game question and 1 a binary Prisoners > Dilemma question) (again with the image remaining on the screen above > the choices). That part I have done and works perfectly. > > The problem comes where each participant needs to see a total of 16 of > these images, essentially 16 blocks of the trial spoken about above, > and the order these 16 blocks are presented needs to be random. I've > tried nesting the images and questions within trials, and I've tried > different proc's for each trial, but everytime I try to randomise the > list it ends up mixing up the order of the images and questions. > > Is there anyway to randomise the blocks, but keeping the trials within > the blocks sequential? > > Thanks! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Wed Oct 19 16:06:32 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Wed, 19 Oct 2011 12:06:32 -0400 Subject: Randomizing Block lists without randomizing the trial list In-Reply-To: <4dee885c-826e-40e3-8078-c489f37e7991@1g2000vbx.googlegroup s.com> Message-ID: At 10/19/2011 10:07 AM Wednesday, Poppy wrote: >I've tried nesting the images and questions within trials, and I've >tried different proc's for each trial, but everytime I try to >randomise the list it ends up mixing up the order of the images and questions. I suspect that your use of the term "nesting" here does not coincide with E-Prime's use of that term. I have adopted the term "tiered" to refer to the relationship of, say, block Lists to trial Lists, as opposed to nested Lists within block or trial Lists, etc. Remember, true "nested" Lists only appear when you add a List name in the Nested column of a List, rather than adding another List within a Procedure called by a List. Please go back and do the Nested List tutorial in the User's Guide that came with E-Prime. -- David McFarlane, Professional Faultfinder -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From nick.gaspelin at gmail.com Thu Oct 20 05:05:31 2011 From: nick.gaspelin at gmail.com (Nick G) Date: Wed, 19 Oct 2011 22:05:31 -0700 Subject: If then and loops Message-ID: I'm having trouble with the below code. E-Prime seems to want a 'then' statement immediately following the 'if' statement: if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = "aMed" then Confidence.RESP = strHit2 If one response on the present slide is selected, I just want E-Prime to allow one of the three responses in the string hits. How should this code look? -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Thu Oct 20 05:15:33 2011 From: pquain at une.edu.au (Peter Quain) Date: Thu, 20 Oct 2011 16:15:33 +1100 Subject: If then and loops In-Reply-To: <69a532da-2279-481a-8fb7-c4afa5be1724@l10g2000pra.googlegro ups.com> Message-ID: try searching e-basic help for "If...Then...Else (statement)". Note the conditions under which you need to close the conditional with "End If" At 04:05 PM 20/10/2011, you wrote: >I'm having trouble with the below code. E-Prime seems to want a >'then' statement immediately following the 'if' statement: > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = >"aMed" then > Confidence.RESP = strHit2 > >If one response on the present slide is selected, I just want E-Prime >to allow one of the three responses in the string hits. How should >this code look? > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From nick.gaspelin at gmail.com Thu Oct 20 05:47:20 2011 From: nick.gaspelin at gmail.com (Nick G) Date: Wed, 19 Oct 2011 22:47:20 -0700 Subject: If then and loops In-Reply-To: <201110200515.p9K5FbiD014843@mail13.tpg.com.au> Message-ID: The E-basic help doesn't say whether an if-then statement can have multiple conditions. Seems limiting to not have that sort of functionality. -Nick On Oct 19, 11:15?pm, Peter Quain wrote: > try searching e-basic help for "If...Then...Else (statement)". Note > the conditions under which you need to close the conditional with "End If" > > At 04:05 PM 20/10/2011, you wrote: > > > > > > > > >I'm having trouble with the below code. ?E-Prime seems to want a > >'then' statement immediately following the 'if' statement: > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > >"aMed" then > > ? ? ? ? ? ? ? ? Confidence.RESP = strHit2 > > >If one response on the present slide is selected, I just want E-Prime > >to allow one of the three responses in the string hits. ?How should > >this code look? > > >-- > >You received this message because you are subscribed to the Google > >Groups "E-Prime" group. > >To post to this group, send email to e-prime at googlegroups.com. > >To unsubscribe from this group, send email to > >e-prime+unsubscribe at googlegroups.com. > >For more options, visit this group at > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From nick.gaspelin at gmail.com Thu Oct 20 05:52:40 2011 From: nick.gaspelin at gmail.com (Nick G) Date: Wed, 19 Oct 2011 22:52:40 -0700 Subject: If then and loops In-Reply-To: Message-ID: You know in C you can just if (condition1 && condition2) On Oct 19, 11:47?pm, Nick G wrote: > The E-basic help doesn't say whether an if-then statement can have > multiple conditions. ?Seems limiting to not have that sort of > functionality. > > -Nick > > On Oct 19, 11:15?pm, Peter Quain wrote: > > > > > > > > > try searching e-basic help for "If...Then...Else (statement)". Note > > the conditions under which you need to close the conditional with "End If" > > > At 04:05 PM 20/10/2011, you wrote: > > > >I'm having trouble with the below code. ?E-Prime seems to want a > > >'then' statement immediately following the 'if' statement: > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > >"aMed" then > > > ? ? ? ? ? ? ? ? Confidence.RESP = strHit2 > > > >If one response on the present slide is selected, I just want E-Prime > > >to allow one of the three responses in the string hits. ?How should > > >this code look? > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Thu Oct 20 06:33:54 2011 From: pquain at une.edu.au (Peter Quain) Date: Thu, 20 Oct 2011 17:33:54 +1100 Subject: If then and loops In-Reply-To: <055abe75-d5d3-4fd3-b67a-092d61f181d2@42g2000prp.googlegrou ps.com> Message-ID: In E-basic help look for "And (operator)" ... links to other operators at bottom of the page. At 04:52 PM 20/10/2011, you wrote: >You know in C you can just >if (condition1 && condition2) > > >On Oct 19, 11:47 pm, Nick G wrote: > > The E-basic help doesn't say whether an if-then statement can have > > multiple conditions. Seems limiting to not have that sort of > > functionality. > > > > -Nick > > > > On Oct 19, 11:15 pm, Peter Quain wrote: > > > > > > > > > > > > > > > > > try searching e-basic help for "If...Then...Else (statement)". Note > > > the conditions under which you need to close the conditional > with "End If" > > > > > At 04:05 PM 20/10/2011, you wrote: > > > > > >I'm having trouble with the below code. E-Prime seems to want a > > > >'then' statement immediately following the 'if' statement: > > > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > > >"aMed" then > > > > Confidence.RESP = strHit2 > > > > > >If one response on the present slide is selected, I just want E-Prime > > > >to allow one of the three responses in the string hits. How should > > > >this code look? > > > > > >-- > > > >You received this message because you are subscribed to the Google > > > >Groups "E-Prime" group. > > > >To post to this group, send email to e-prime at googlegroups.com. > > > >To unsubscribe from this group, send email to > > > >e-prime+unsubscribe at googlegroups.com. > > > >For more options, visit this group at > > > >http://groups.google.com/group/e-prime?hl=en. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pquain at une.edu.au Thu Oct 20 06:33:27 2011 From: pquain at une.edu.au (Peter Quain) Date: Thu, 20 Oct 2011 17:33:27 +1100 Subject: If then and loops In-Reply-To: Message-ID: Google can be your friend: Using If...Then...Else Statement ' Dimension the variable. Dim x As Integer ' Place a value in x. x = Int(Rnd * 100) ' Display the value of x. MsgBox "The value of x is " & x & "." ' Test to see if x less than or equal to 10. If x <= 10 Then ' Display a message box. MsgBox "X is <=10" ' Test to see if x less than or equal to 40 and greater than 10. ElseIf x <= 40 And x > 10 Then MsgBox "X is <=40 and > 10" ' Test to see if x less than or equal to 70 and greater than 40. ElseIf x <= 70 And x > 40 Then MsgBox "X is <=70 and > 40" ' Test to see if x less than or equal to 100 and greater than 70. ElseIf x <= 100 And x > 70 Then MsgBox "X is <= 100 and > 70" ' If none of the above tests returned true. Else MsgBox "X does not fall within the range" End If At 04:47 PM 20/10/2011, you wrote: >The E-basic help doesn't say whether an if-then statement can have >multiple conditions. Seems limiting to not have that sort of >functionality. > >-Nick > >On Oct 19, 11:15 pm, Peter Quain wrote: > > try searching e-basic help for "If...Then...Else (statement)". Note > > the conditions under which you need to close the conditional with "End If" > > > > At 04:05 PM 20/10/2011, you wrote: > > > > > > > > > > > > > > > > >I'm having trouble with the below code. E-Prime seems to want a > > >'then' statement immediately following the 'if' statement: > > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > >"aMed" then > > > Confidence.RESP = strHit2 > > > > >If one response on the present slide is selected, I just want E-Prime > > >to allow one of the three responses in the string hits. How should > > >this code look? > > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pquain at une.edu.au Thu Oct 20 06:01:59 2011 From: pquain at une.edu.au (Peter Quain) Date: Thu, 20 Oct 2011 17:01:59 +1100 Subject: If then and loops In-Reply-To: Message-ID: Note in description: "statement or group of statements." ----------------------- Syntax 1 If condition Then statements [Else else_statements] Syntax 2 If condition Then [statements] [ElseIf else_condition Then [elseif_statements]] [Else [else_statements]] End If ------------------------- Description Conditionally executes a statement or group of statements. Comments The single-line conditional statement (syntax 1) has the following parameters: Parameter Description condition Any expression evaluating to a Boolean value. statements One or more statements separated with colons. This group of statements is executed when condition is True. else_statements One or more statements separated with colons. This group of statements is executed when condition is False. The multiline conditional statement (syntax 2) has the following parameters: Parameter Description condition Any expression evaluating to a Boolean value. statements One or more statements to be executed when condition is True. else_condition Any expression evaluating to a Boolean value. The else_condition is evaluated if condition is False. elseif_statements One or more statements to be executed when condition is False and else_condition is True. else_statments One or more statements to be executed when both condition and else_condition are False. ------------------------------- At 04:47 PM 20/10/2011, you wrote: >The E-basic help doesn't say whether an if-then statement can have >multiple conditions. Seems limiting to not have that sort of >functionality. > >-Nick > >On Oct 19, 11:15 pm, Peter Quain wrote: > > try searching e-basic help for "If...Then...Else (statement)". Note > > the conditions under which you need to close the conditional with "End If" > > > > At 04:05 PM 20/10/2011, you wrote: > > > > > > > > > > > > > > > > >I'm having trouble with the below code. E-Prime seems to want a > > >'then' statement immediately following the 'if' statement: > > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > >"aMed" then > > > Confidence.RESP = strHit2 > > > > >If one response on the present slide is selected, I just want E-Prime > > >to allow one of the three responses in the string hits. How should > > >this code look? > > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. > >-- >You received this message because you are subscribed to the Google >Groups "E-Prime" group. >To post to this group, send email to e-prime at googlegroups.com. >To unsubscribe from this group, send email to >e-prime+unsubscribe at googlegroups.com. >For more options, visit this group at >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Thu Oct 20 07:26:40 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Thu, 20 Oct 2011 08:26:40 +0100 Subject: If then and loops In-Reply-To: <055abe75-d5d3-4fd3-b67a-092d61f181d2@42g2000prp.googlegroups.com> Message-ID: Avoiding pedantry: In basic you can just if (condition1 and condition2) then ... which works almost exactly the same as the & in C (but not &&, which would be if (condition1) {if (condition2) {...}}. Anyway, the answer is much shorter: IF (present.RESP = "z" and strHit2 = "aHi") or (strHit2 = "aLo" and strHit2 = "aMed") THEN Confidence.RESP = strHit2 END IF Note the end if. All on one line is also possible, but note it freaks out if you then use end if. THIS is what is exasperating - if not necessarily limitating - about ebasic. More likely, your code makes no sense in some other degree, though. Notice me putting in the brackets - they are useless - and comes before or anyway - but i think where you got stuck was in the length of the IF statement. I mean, strHit2 is never both aLo and aMed, right? In your original code it did not have an operator (or strHit2 = "aLo" strHit2 = ?), so, given a wild guess, you actually want something like this: IF present.RESP = "z" and (strHit2 = "this" or strHit2 = "that" or strHit2 = "nothisactually") THEN Confidence.RESP = strHit2 END IF Notice that due to the precedence of and over or - both in C and basic - this is possible, but your previous code made little sense. Best, Mich ________________________________________ From: e-prime at googlegroups.com [e-prime at googlegroups.com] On Behalf Of Nick G [nick.gaspelin at gmail.com] Sent: 20 October 2011 06:52 To: E-Prime Subject: Re: If then and loops You know in C you can just if (condition1 && condition2) On Oct 19, 11:47 pm, Nick G wrote: > The E-basic help doesn't say whether an if-then statement can have > multiple conditions. Seems limiting to not have that sort of > functionality. > > -Nick > > On Oct 19, 11:15 pm, Peter Quain wrote: > > > > > > > > > try searching e-basic help for "If...Then...Else (statement)". Note > > the conditions under which you need to close the conditional with "End If" > > > At 04:05 PM 20/10/2011, you wrote: > > > >I'm having trouble with the below code. E-Prime seems to want a > > >'then' statement immediately following the 'if' statement: > > > >if present.RESP = "z" and strHit2 = "aHi" or strHit2 = "aLo" strHit2 = > > >"aMed" then > > > Confidence.RESP = strHit2 > > > >If one response on the present slide is selected, I just want E-Prime > > >to allow one of the three responses in the string hits. How should > > >this code look? > > > >-- > > >You received this message because you are subscribed to the Google > > >Groups "E-Prime" group. > > >To post to this group, send email to e-prime at googlegroups.com. > > >To unsubscribe from this group, send email to > > >e-prime+unsubscribe at googlegroups.com. > > >For more options, visit this group at > > >http://groups.google.com/group/e-prime?hl=en. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en.This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From kylehdavis at gmail.com Fri Oct 21 01:15:33 2011 From: kylehdavis at gmail.com (Kyle Davis) Date: Thu, 20 Oct 2011 18:15:33 -0700 Subject: Hit Test Issues/Response collection conversion Message-ID: Hello, I am new to programming beyond some experience with R so the learning curve has been a bit steep thus far. The program I am currently working on is a number line experiment where subjects are shown a number and a line that has the endpoints labeled (i.e. 0 to 1000, -5 to 5, etc.). I am having two problems with it though. The first problem is I am trying to create an error trap where if the subject clicks outside of the line it returns them an error message and then back to the same exact problem they were working on when the error occurred. PST support suggested creating a label called "tryagain" and then returning the user to that but it did not work the way I intended. I want to do a HitTest where if the user clicks within the slide object "LineText" it collects there response and they go on but if they click outside of the object it returns an error message, I am just not sure of the syntax and the functions I need to call in order to present the error message. The second problem is with calculating the user input. The existing code was programmed by someone else and it works fine if the origin of the line is 0, but if the origin of the line is anything else (i.e. -5, .1, 15) it merely reports the users response on the scale of the difference between the origin of the line and the endpoint (so a scale of 15 to 25 where the user clicks where 20 should be it is reported as 5 instead of 20). Below is the code that is giving me the problems... sorry if it is messy. Dim lineOrigin as Integer, lineEnd as Integer Dim lineDispOrigin as Integer, lineDispEnd as Integer Dim xInt as Integer Dim slText as SlideText Dim scalePerPixel as Double 'Retrieve mouse click location and store in Point variable to send to PointInRect Dim theMouseResponseData As MouseResponseData Dim ptr As Point Dim strHit As String 'Set theMouseResponseData = CMouseResponseData(StimulusSlide.InputMasks.Responses(1)) Set theMouseResponseData = CMouseResponseData(Stimulus.InputMasks.Responses(1)) ptr.x = theMouseResponseData.CursorX ptr.y = theMouseResponseData.CursorY lineOrigin = c.GetAttrib("LineOrigin") lineEnd = c.GetAttrib("LineEnd") Set slText = CSlideText( StimulusSlide.States("Default").Objects("LineText") ) '? msgbox slText.X & " " & slText.Width '? ' assume line is centered, so slText.X = Display.XRes/2 '? msgbox slText.Width & " " & Left$( slText.Width, (Len(slText.Width) - 1) ) '? xInt = CInt( Left$( slText.Width, (Len(slText.Width) - 1) ) ) ' remove "%" from end xInt = xInt * Display.XRes / 100 ' convert % to #pixels lineDispOrigin = (Display.XRes/2) - (xInt/2) '? lineDispEnd = slText.X + (slText.Width/2) '? lineDispEnd = lineDispOrigin + xInt scalePerPixel = (LineEnd - LineOrigin) / (LineDispEnd - LineDispOrigin) c.SetAttrib "Line.CursorX", ptr.x c.SetAttrib "Line.XUniform", (ptr.x - lineDispOrigin) * scalePerPixel '?Figuring out the definitions of variables'? c.SetAttrib "LineDispOrigin", lineDispOrigin c.SetAttrib "LineDispEnd", LineDispEnd c.SetAttrib "scaleperpixel", scalePerPixel c.SetAttrib "xInt", xInt 'Hit Test' If strHit <> "LineText" Then Goto TryAgain End If 'If strHit = "LineText" Then 'Results.Text = "Great!" 'Stimulus.ACC = 1 'Else 'Results.Text = "You missed, try again!" 'Stimulus.ACC = 0 'End If Set slText = Nothing Set theMouseResponseData = Nothing Mouse.ShowCursor FALSE Thank you for any help, I really appreciate it as I need to get this up and running soon. p.s. PST recommended "To calculate responses, I strongly recommend adjusting the X position of the response according to the left edge of the line (i.e. Display.XRes * .3 for your 70% line), then calculating the rating as a percentage of the total length of the line (Display.XRes * .7). All of these calculations should be done in terms of pixels, and adjusted at the end to fit your scale if desired." but I am not exactly sure how to implement this as I did not create the original calculation. Thank you again -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From benhisattva at googlemail.com Fri Oct 21 09:33:50 2011 From: benhisattva at googlemail.com (Ben) Date: Fri, 21 Oct 2011 02:33:50 -0700 Subject: Dynamometer Message-ID: Hi all, We want to measure the force a subject applies to press a button or move a joystick. Has anybody used a dynamometer and can recommend a device? Regards, Ben -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From rbgarcia at gmail.com Fri Oct 21 14:47:26 2011 From: rbgarcia at gmail.com (Garcia) Date: Fri, 21 Oct 2011 07:47:26 -0700 Subject: Hit Test Issues/Response collection conversion In-Reply-To: <0a04656d-b504-472c-84e5-f2070950cc50@g25g2000yqh.googlegroups.com> Message-ID: Hello, I?ve noticed that you have an empty strHit variable. I think you should have something like this to implement the so called "error trap": strHit = TaskDisplay.States(TaskDisplay.ActiveState).HitTest(theMouseResponseData.CursorX, theMouseResponseData.CursorY) If strHit = ?LineText? Then ?write here the code to process the response Else ?(the click was outside the LineText) Display error message (see the ebasic msgbox function) Goto TryAgain End If For the arithmetic problem I'd suggest to create a variable to hold the deviation from origin (0, 5, etc) and to apply it as a correction factor to the user input. Regards, RB Garcia On 21 out, 03:15, Kyle Davis wrote: > Hello, > I am new to programming beyond some experience with R so the learning > curve has been a bit steep thus far. ?The program I am currently > working on is a number line experiment where subjects are shown a > number and a line that has the endpoints labeled (i.e. 0 to 1000, -5 > to 5, etc.). ?I am having two problems with it though. ?The first > problem is I am trying to create an error trap where if the subject > clicks outside of the line it returns them an error message and then > back to the same exact problem they were working on when the error > occurred. ?PST support suggested creating a label called "tryagain" > and then returning the user to that but it did not work the way I > intended. ?I want to do a HitTest where if the user clicks within the > slide object "LineText" it collects there response and they go on but > if they click outside of the object it returns an error message, I am > just not sure of the syntax and the functions I need to call in order > to present the error message. > > ? ?The second problem is with calculating the user input. ?The > existing code was programmed by someone else and it works fine if the > origin of the line is 0, but if the origin of the line is anything > else (i.e. -5, .1, 15) it merely reports the users response on the > scale of the difference between the origin of the line and the > endpoint (so a scale of 15 to 25 where the user clicks where 20 should > be it is reported as 5 instead of 20). > Below is the code that is giving me the problems... sorry if it is > messy. > > Dim ?lineOrigin as Integer, lineEnd as Integer > Dim ?lineDispOrigin as Integer, lineDispEnd as Integer > Dim ?xInt as Integer > Dim ?slText as SlideText > Dim ?scalePerPixel as Double > 'Retrieve mouse click location and store in Point variable to send to > PointInRect > Dim theMouseResponseData As MouseResponseData > Dim ptr As Point > Dim strHit As String > > 'Set theMouseResponseData = > CMouseResponseData(StimulusSlide.InputMasks.Responses(1)) > Set theMouseResponseData = > CMouseResponseData(Stimulus.InputMasks.Responses(1)) > > ptr.x = theMouseResponseData.CursorX > ptr.y = theMouseResponseData.CursorY > > lineOrigin = c.GetAttrib("LineOrigin") > lineEnd = c.GetAttrib("LineEnd") > Set slText = > CSlideText( StimulusSlide.States("Default").Objects("LineText") ) > '? msgbox slText.X & " ?" & slText.Width ?'? > ' assume line is centered, so slText.X = Display.XRes/2 > '? msgbox slText.Width & " ?" & Left$( slText.Width, > (Len(slText.Width) - 1) ) ?'? > xInt = CInt( Left$( slText.Width, (Len(slText.Width) - 1) ) ) ?' > remove "%" from end > xInt = xInt * Display.XRes / 100 ?' convert % to #pixels > lineDispOrigin = (Display.XRes/2) - (xInt/2) > '? lineDispEnd = slText.X + (slText.Width/2) ?'? > lineDispEnd = lineDispOrigin + xInt > scalePerPixel = (LineEnd - LineOrigin) / (LineDispEnd - > LineDispOrigin) > c.SetAttrib "Line.CursorX", ptr.x > c.SetAttrib "Line.XUniform", (ptr.x - lineDispOrigin) * scalePerPixel > > '?Figuring out the definitions of variables'? > c.SetAttrib "LineDispOrigin", lineDispOrigin > c.SetAttrib "LineDispEnd", LineDispEnd > c.SetAttrib "scaleperpixel", scalePerPixel > c.SetAttrib "xInt", xInt > > 'Hit Test' > If strHit <> "LineText" Then > ? ?Goto TryAgain > End If > > 'If strHit = "LineText" Then > 'Results.Text = "Great!" > 'Stimulus.ACC = 1 > 'Else > 'Results.Text = "You missed, try again!" > 'Stimulus.ACC = 0 > 'End If > > Set slText = Nothing > Set theMouseResponseData = Nothing > Mouse.ShowCursor FALSE > > Thank you for any help, I really appreciate it as I need to get this > up and running soon. > p.s. PST recommended "To calculate responses, I strongly recommend > adjusting the X position of the response according to the left edge of > the line (i.e. Display.XRes * .3 for your 70% line), then calculating > the rating as a percentage of the total length of the line > (Display.XRes * .7). All of these calculations should be done in terms > of pixels, and adjusted at the end to fit your scale if desired." but > I am not exactly sure how to implement this as I did not create the > original calculation. ?Thank you again -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Fri Oct 21 15:27:42 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Fri, 21 Oct 2011 11:27:42 -0400 Subject: Hit Test Issues/Response collection conversion In-Reply-To: Message-ID: Kyle, First, to expand on RB Garcia's answer to the arithmetic, (PST's advice notwithstanding) you need merely add back in the left end value, thus, c.SetAttrib "Line.XUniform", _ ((ptr.x - lineDispOrigin) * scalePerPixel) + LineOrigin Next, if you want to present your error feedback with a TextDisplay or Slide, etc., instead of a MsgBox, then you need to do a little more footwork. There are several similar ways to accomplish it. In short, you need to add another Slide or whatever for your error feedback, and then another inline to skip over it when not needed. For example, your Procedure might have a structure like - SkipErrCode - ErrLabel - ErrSlide - StimulusSlideLabel - StimulusSlide - LineRespCode SkipErrCode simply contains the following inline code: Goto StimulusSlideLabel That skips over ErrSlide the first time through the Procedure. LineRespCode contains all your inline code to process the line response, including something like the following: If strHit <> "LineText" Then Goto ErrLabel End If Now, upon an error, the program will loop back to show ErrSlide, present StimulusSlide again, etc. -- David McFarlane, Professional Faultfinder At 10/21/2011 10:47 AM Friday, Garcia wrote: >Hello, > >I've noticed that you have an empty strHit variable. I think you >should have something like this to implement the so called "error >trap": > >strHit = >TaskDisplay.States(TaskDisplay.ActiveState).HitTest(theMouseResponseData.CursorX, >theMouseResponseData.CursorY) >If strHit = "LineText" Then > > 'write here the code to process the response > >Else '(the click was outside the LineText) > > Display error message (see the ebasic msgbox function) > Goto TryAgain > >End If > > >For the arithmetic problem I'd suggest to create a variable to hold >the deviation from origin (0, 5, etc) and to apply it as a correction >factor to the user input. > >Regards, >RB Garcia > >On 21 out, 03:15, Kyle Davis wrote: > > Hello, > > I am new to programming beyond some experience with R so the learning > > curve has been a bit steep thus far. The program I am currently > > working on is a number line experiment where subjects are shown a > > number and a line that has the endpoints labeled (i.e. 0 to 1000, -5 > > to 5, etc.). I am having two problems with it though. The first > > problem is I am trying to create an error trap where if the subject > > clicks outside of the line it returns them an error message and then > > back to the same exact problem they were working on when the error > > occurred. PST support suggested creating a label called "tryagain" > > and then returning the user to that but it did not work the way I > > intended. I want to do a HitTest where if the user clicks within the > > slide object "LineText" it collects there response and they go on but > > if they click outside of the object it returns an error message, I am > > just not sure of the syntax and the functions I need to call in order > > to present the error message. > > > > The second problem is with calculating the user input. The > > existing code was programmed by someone else and it works fine if the > > origin of the line is 0, but if the origin of the line is anything > > else (i.e. -5, .1, 15) it merely reports the users response on the > > scale of the difference between the origin of the line and the > > endpoint (so a scale of 15 to 25 where the user clicks where 20 should > > be it is reported as 5 instead of 20). > > Below is the code that is giving me the problems... sorry if it is > > messy. > > > > Dim lineOrigin as Integer, lineEnd as Integer > > Dim lineDispOrigin as Integer, lineDispEnd as Integer > > Dim xInt as Integer > > Dim slText as SlideText > > Dim scalePerPixel as Double > > 'Retrieve mouse click location and store in Point variable to send to > > PointInRect > > Dim theMouseResponseData As MouseResponseData > > Dim ptr As Point > > Dim strHit As String > > > > 'Set theMouseResponseData = > > CMouseResponseData(StimulusSlide.InputMasks.Responses(1)) > > Set theMouseResponseData = > > CMouseResponseData(Stimulus.InputMasks.Responses(1)) > > > > ptr.x = theMouseResponseData.CursorX > > ptr.y = theMouseResponseData.CursorY > > > > lineOrigin = c.GetAttrib("LineOrigin") > > lineEnd = c.GetAttrib("LineEnd") > > Set slText = > > CSlideText( StimulusSlide.States("Default").Objects("LineText") ) > > '? msgbox slText.X & " " & slText.Width '? > > ' assume line is centered, so slText.X = Display.XRes/2 > > '? msgbox slText.Width & " " & Left$( slText.Width, > > (Len(slText.Width) - 1) ) '? > > xInt = CInt( Left$( slText.Width, (Len(slText.Width) - 1) ) ) ' > > remove "%" from end > > xInt = xInt * Display.XRes / 100 ' convert % to #pixels > > lineDispOrigin = (Display.XRes/2) - (xInt/2) > > '? lineDispEnd = slText.X + (slText.Width/2) '? > > lineDispEnd = lineDispOrigin + xInt > > scalePerPixel = (LineEnd - LineOrigin) / (LineDispEnd - > > LineDispOrigin) > > c.SetAttrib "Line.CursorX", ptr.x > > c.SetAttrib "Line.XUniform", (ptr.x - lineDispOrigin) * scalePerPixel > > > > '?Figuring out the definitions of variables'? > > c.SetAttrib "LineDispOrigin", lineDispOrigin > > c.SetAttrib "LineDispEnd", LineDispEnd > > c.SetAttrib "scaleperpixel", scalePerPixel > > c.SetAttrib "xInt", xInt > > > > 'Hit Test' > > If strHit <> "LineText" Then > > Goto TryAgain > > End If > > > > 'If strHit = "LineText" Then > > 'Results.Text = "Great!" > > 'Stimulus.ACC = 1 > > 'Else > > 'Results.Text = "You missed, try again!" > > 'Stimulus.ACC = 0 > > 'End If > > > > Set slText = Nothing > > Set theMouseResponseData = Nothing > > Mouse.ShowCursor FALSE > > > > Thank you for any help, I really appreciate it as I need to get this > > up and running soon. > > p.s. PST recommended "To calculate responses, I strongly recommend > > adjusting the X position of the response according to the left edge of > > the line (i.e. Display.XRes * .3 for your 70% line), then calculating > > the rating as a percentage of the total length of the line > > (Display.XRes * .7). All of these calculations should be done in terms > > of pixels, and adjusted at the end to fit your scale if desired." but > > I am not exactly sure how to implement this as I did not create the > > original calculation. Thank you again -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Fri Oct 21 15:37:51 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Fri, 21 Oct 2011 11:37:51 -0400 Subject: Dynamometer In-Reply-To: Message-ID: Ben, Don't know about a dynomometer, but FWIW, just a few days ago I learned about some availabe small "flexible force sensors" (http://www.tekscan.com/flexible-force-sensors ). You would of course also have to add an A/D converter (e.g., http://www.mccdaq.com/usb-data-acquisition/USB-1208-Series.aspx ), and then integrate the A/D software with E-Prime (not for the faint of heart, but eminently possible, as I know from some experience). -- David McFarlane, Professional Faultfinder At 10/21/2011 05:33 AM Friday, you wrote: >We want to measure the force a subject applies to press a button or >move a joystick. Has anybody used a dynamometer and can recommend a >device? > >Regards, >Ben -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From Michiel.Spape at nottingham.ac.uk Fri Oct 21 15:46:38 2011 From: Michiel.Spape at nottingham.ac.uk (Michiel Spape) Date: Fri, 21 Oct 2011 16:46:38 +0100 Subject: Dynamometer In-Reply-To: <4ea191fd.c4862a0a.7a47.ffffd3f1SMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hiya, To add another experience, I've used the Jamar+ digital dynamometer here to test grip force, but I cannot be integrated into e-prime or such (other than typing in its output). Such devices are also of more use to measure 'maximum grip force', and, should you ever do this, I would recommend testing multiple trials a long time in between (I mean minutes). Participants here usually scored 40 kg (what, 6-7 stones or something, for the imperialists here) at first trial and 20 at the 3rd in a row. Not very reliable. For ease of programming and more natural experiments with e-prime and such, I'd recommend force joysticks. We had a discussion about some of these on this list, I seem to recall. All in all, it depends on whether you're planning to publish in a psychophysics journal - which would require something along David's suggestion or very good medical equipment - or psychological-neuropsychological - for which often just any force-feedback joystick would suffice. Best, Mich Dr. Michiel M. Sovij?rvi-Spap? Research Fellow Perception & Action group University of Nottingham School of Psychology www.cognitology.eu -----Original Message----- From: e-prime at googlegroups.com [mailto:e-prime at googlegroups.com] On Behalf Of David McFarlane Sent: 21 October 2011 16:38 To: e-prime at googlegroups.com Subject: Re: Dynamometer Ben, Don't know about a dynomometer, but FWIW, just a few days ago I learned about some availabe small "flexible force sensors" (http://www.tekscan.com/flexible-force-sensors ). You would of course also have to add an A/D converter (e.g., http://www.mccdaq.com/usb-data-acquisition/USB-1208-Series.aspx ), and then integrate the A/D software with E-Prime (not for the faint of heart, but eminently possible, as I know from some experience). -- David McFarlane, Professional Faultfinder At 10/21/2011 05:33 AM Friday, you wrote: >We want to measure the force a subject applies to press a button or >move a joystick. Has anybody used a dynamometer and can recommend a >device? > >Regards, >Ben -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From njvack at wisc.edu Fri Oct 21 16:20:42 2011 From: njvack at wisc.edu (Nate Vack) Date: Fri, 21 Oct 2011 11:20:42 -0500 Subject: Dynamometer In-Reply-To: <4ea191fd.c4862a0a.7a47.ffffd3f1SMTPIN_ADDED@gmr-mx.google.com> Message-ID: On Fri, Oct 21, 2011 at 10:37 AM, David McFarlane wrote: > Don't know about a dynomometer, but FWIW, just a few days ago I learned > about some availabe small "flexible force sensors" > (http://www.tekscan.com/flexible-force-sensors If you're going down this rabbit hole (and it's a deep hole!), here's a fairly complete guide to building these things: http://www.nakka-rocketry.net/strainlc.html You'd want to make something for it that'd actually be grippable, and build a data transfer device (you could program a microcontroller to dump the data over a serial line, for example). It's certainly not a 'buy this thing and plug it in' solution. -n -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From maartjevroling at gmail.com Fri Oct 21 19:57:09 2011 From: maartjevroling at gmail.com (mrtj) Date: Fri, 21 Oct 2011 12:57:09 -0700 Subject: beginners-question parallel port Message-ID: I have a beginners-question regarding my E-prime programming. I want to send event-related triggers to BioPac and after doing some research I figured that an Inline with the following should do the trick: Stimulus.OnsetSignalEnabled = True Stimulus.OnsetSignalPort = &H378 Stimulus.OnsetSignalData = 1 Stimulus.OffsetSignalEnabled = True Stimulus.OffsetSignalPort = &H378 Stimulus.OffsetSignalData = 0 However, it seems to me that I should define/open/set-to-zero the Port at the beginning of my experiment first. Am I correct to assume, and if do... how can I do this. I hope you can help me out. Many thanks! Maartje -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From pfc.groot at gmail.com Fri Oct 21 22:04:23 2011 From: pfc.groot at gmail.com (Paul Groot) Date: Sat, 22 Oct 2011 00:04:23 +0200 Subject: beginners-question parallel port In-Reply-To: Message-ID: Hi Maartje, It is not required to open a classic LPT port. EPrime directly writes to the output registers of the IO-port. However, it is a good think to initialize the state of the output pins at the start of your experiment with a single line of inline script: WritePort &H378, 0 (although you could also use 3 lines of code to configure the onsetsignal method on the first object using code 0 to achieve the same thing) best, Paul 2011/10/21 mrtj : > I have a beginners-question regarding my E-prime programming. > I want to send event-related triggers to BioPac and after doing some > research I figured that an Inline with the following should do the > trick: > > Stimulus.OnsetSignalEnabled = True > Stimulus.OnsetSignalPort = &H378 > Stimulus.OnsetSignalData = 1 > > Stimulus.OffsetSignalEnabled = True > Stimulus.OffsetSignalPort = &H378 > Stimulus.OffsetSignalData = 0 > > However, it seems to me that I should define/open/set-to-zero the Port > at the beginning of my experiment first. Am I correct to assume, and > if do... how can I do this. > > I hope you can help me out. Many thanks! > Maartje > > > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Sat Oct 22 16:45:11 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Sat, 22 Oct 2011 12:45:11 -0400 Subject: beginners-question parallel port In-Reply-To: Message-ID: Maartje , And if you want to look like a real programmer instead of a novice, you will replace the "magic numbers" with named constants, thus, Const OutPort as Integer = &h0378 Const BioPacTrigger as Integer = &h01 WritePort OutPort, 0 Stimulus.OnsetSignalEnabled = True Stimulus.OnsetSignalPort = OutPort Stimulus.OnsetSignalData = BioPacTrigger Stimulus.OffsetSignalEnabled = True Stimulus.OffsetSignalPort = OutPort Stimulus.OffsetSignalData = 0 -- David McFarlane, Professional Faultfinder Quoting Paul Groot: > Hi Maartje, > > It is not required to open a classic LPT port. EPrime directly writes > to the output registers of the IO-port. However, it is a good think to > initialize the state of the output pins at the start of your > experiment with a single line of inline script: > > WritePort &H378, 0 > > > (although you could also use 3 lines of code to configure the > onsetsignal method on the first object using code 0 to achieve the > same thing) > > best, > Paul > > > 2011/10/21 mrtj: >> I have a beginners-question regarding my E-prime programming. >> I want to send event-related triggers to BioPac and after doing some >> research I figured that an Inline with the following should do the >> trick: >> >> Stimulus.OnsetSignalEnabled = True >> Stimulus.OnsetSignalPort = &H378 >> Stimulus.OnsetSignalData = 1 >> >> Stimulus.OffsetSignalEnabled = True >> Stimulus.OffsetSignalPort = &H378 >> Stimulus.OffsetSignalData = 0 >> >> However, it seems to me that I should define/open/set-to-zero the Port >> at the beginning of my experiment first. Am I correct to assume, and >> if do... how can I do this. >> >> I hope you can help me out. Many thanks! >> Maartje -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sat Oct 22 22:08:27 2011 From: giladsabo at gmail.com (gilis) Date: Sat, 22 Oct 2011 15:08:27 -0700 Subject: Can't get addlevel commant to do the trick...(plus another question) Message-ID: Hi all.. when I try to do that: dim nLevel as integer for nLevel= 1 to 10 stimlist.AddLevel 0 stimlist.SetWeight nLevel, "1" stimlist.SetProc nLevel, "trialproc" stimlist.SetAttrib nLevel, "word", "nothing" stimlist.SetAttrib nLevel , "Word_type", "notrealy" stimlist.SetAttrib nLevel, "correct", "0" stimlist.SetAttrib nLevel, "xcolor", "black" Set stimlist.TerminateCondition = Cycles(1) Set stimlist.ResetCondition = Samples(10) stimlist.Reset Next nLevel I get "level that is an integer with level count mismatch" -well, I tried to solve it in many ways, but I guess that some help could be more helpful. Second question is about this issue: dim a(9) as string dim stimarray(9) as string dim c1 as string dim m as integer a(0)="word1" . . a(9)="word10" . . . for m=1 to 1o stimlist.SetAttrib m, "word", stimarray(m-1) c1 = c.getattrib("word") if c1 = a(0) or a(1) or a(2) or a(3) or a(4) then stimlist.SetAttrib m, "correct", 1 end if It keep telling me that there is no such attribute as "word", though you can see that I predefined one and just to make sure I also did it in the relevant list object. Again, I tried to solve it in many ways but your help sounds like a better idea. Thanks in advance, Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sat Oct 22 22:09:29 2011 From: giladsabo at gmail.com (gilis) Date: Sat, 22 Oct 2011 15:09:29 -0700 Subject: Finding the right comments In-Reply-To: Message-ID: As always, you're great and very helpful and as always, I got more questions..;) Gilis On Oct 19, 2:20?pm, Anne-Wil Kruijt wrote: > That being said... given the low amount of stimuli you have, you might > not mind typing each word out (and adding "'s) in an inline. > In that case you could have a look at the attached script. This is how > I would tackle the thing you described. > > At the beginning of each block the stimwords are loaded into an array, > randomized, the first word checked to see whether it's different than > the last used word and if that's the case the stimwords are written > into the stimlist. > > I realize this could be more elegantly done (loading the words at the > start of the experiment rather than repeatedly at the start of each > block, and using a written loop rather than a label, ?and in order to > check whether it works an attribute "doublediscovered" is marked x and > remains marked for all 10 trials in that block, but ermm yeah... it > does work ^.^) > > Best, > > liw > > ?AWsnorepeats.es2 > 57KViewDownload -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Sun Oct 23 11:27:18 2011 From: liwenna at gmail.com (liwenna) Date: Sun, 23 Oct 2011 04:27:18 -0700 Subject: Can't get addlevel commant to do the trick...(plus another question) In-Reply-To: <9a73bc42-a813-44a2-b5cc-fde68f321306@s14g2000vbj.googlegroups.com> Message-ID: Hi Gilis, Not sure about the first question you ask, but could it have something to do with the line 'stimlist.AddLevel 0' ? Seems to me that you're adding zero levels there making that line either redundant or possibly messing up your script (given that the error message seems to have something to do with a mismatch between the numbering or number of levels). As for the second question: I think you'll have to use the stimlist.reset command before you can operate on the attribute values. But what confuses me more is what the possible location of this script is?? If it's on the proc that is nested in stimlist than you should (perhaps even could?) not tamper with the stimlist that the proc is in while if it's not on the proc that is nested into stimlist than you're in the wrong context (the c in c.getattrib) to get the value of the attribute using that command. Perhaps (guessing here) you overlooked the part where adding levels with a script should be done to a separate list that get's located later in the main procedure than the list that the program is currently 'working' in, i.e not the list that is active when the inline is encountered. On 23 okt, 00:08, gilis wrote: > Hi all.. > > when I try to do that: > > dim nLevel as integer > > for nLevel= 1 to 10 > > stimlist.AddLevel 0 > > stimlist.SetWeight nLevel, "1" > > stimlist.SetProc nLevel, "trialproc" > > stimlist.SetAttrib nLevel, "word", "nothing" > > stimlist.SetAttrib nLevel , "Word_type", "notrealy" > > stimlist.SetAttrib nLevel, "correct", "0" > > stimlist.SetAttrib nLevel, "xcolor", "black" > > Set stimlist.TerminateCondition = Cycles(1) > > Set stimlist.ResetCondition = Samples(10) > > stimlist.Reset > > Next nLevel > > I get "level that is an integer with level count mismatch" -well, I > tried to solve it in many ways, but I guess that some help could be > more helpful. > > Second question is about this issue: > > dim a(9) as string > dim stimarray(9) as string > dim c1 as string > dim m as integer > > a(0)="word1" > . > . > a(9)="word10" > . > . > . > > for m=1 to 1o > stimlist.SetAttrib m, "word", stimarray(m-1) > c1 = c.getattrib("word") > if c1 = a(0) or a(1) or a(2) or a(3) or a(4) then > stimlist.SetAttrib m, "correct", 1 > end if > > It keep telling me that there is no such attribute as "word", though > you can see that I predefined one and just to make sure I also did it > in the relevant list object. Again, I tried to solve it in many ways > but your help sounds like a better idea. > > Thanks in advance, > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From giladsabo at gmail.com Sun Oct 23 19:33:39 2011 From: giladsabo at gmail.com (gilis) Date: Sun, 23 Oct 2011 12:33:39 -0700 Subject: Can't get addlevel commant to do the trick...(plus another question) In-Reply-To: <99f134ba-8427-493c-8d1c-a9f7428d82d1@s14g2000vbj.googlegroups.com> Message-ID: Well the 0 is a mistake in the post, at first place I had nLevel instead. In any case Liwi, the problem I still didn't have much success to solve goes like this: I have to different lists of words and I want eprime to sample 1 of them each time, each list contain 10 samples. Also, the "word" stimuli in one list should have the color of white and cyan in the other. So I tried to solve it this way: Dim indexstim(19) as integer dim oddoreven as integer dim stimuli(19) as string dim Newcorrect(19) as integer dim blonumber as integer dim randi as integer blonumber=c.getattrib("Block_Number") 'Block_Number is an attribute within each trial list that indicate the number of the block 'do this only if you're in block 3 if blonumber=3 then 'randomize 20 values randi=random(1,20) 'if this random number already been used loop it until unused value is found. Also, if word from b list was already chosen in the previous trial please randomize again until value from a list is chosen. if indexstim(randi)=1 and oddoreven<>0 then randi=random(1,20) loop until indexstim(randi)<>1 and randi mod 2=0 end if ' do the opposite in case the previous item was taken from a list (so each time the sample take item from different list). if indexstim(randi)=1 and oddoreven=0 then randi=random(1,20) loop until indexstim(randi)<>1 and randi mod 2<>0 end if 'set oddoreven to distinguish between the two lists (values of a list are always in even numbers in the array) oddoreven= randi mod 2 'set the words array, words from list a are in even number (0, 2, 4..20) and words from list b are in odd numbers (1,3,5...19) stimuli(0)= "word1" . . . .stimuli(19)="word20" 'set an array of correct answers that is in accordance with the word list newcorrcet(0)=1 . . . . newcorrect(19)=9 'the indexstim of the word that was chosen is now equal to 1 and the word won't be chosen again indexstim(randi)=1 'display the word that was chosen triallist.setattrib randi, "word", stimuli(randi) 'update the correct answer triallist.setattrib randi, "correct",newcorrect(randi) 'set different color for words from different lists if oddoreven=0 then mainlist.setattrib randi, "word_color",CColor("cyan") else mainlist.setattrib randi, "word_color",CColor("white") end if 'close statement end if Now, this inline, in different versions that I tried (e.g., like using c.set instead of addressing the level and list directly) was putted by me after the stimuli slide and the results were peculiar-sometimes the slide presented words taken from the attribute "word" (when I delete those, it present blank trials sometimes) and sometimes words from the arrays (and sometimes not even single one of them), it didn't reset the correct attribute and didn't alter the color of the words according to the lists from which they were taken. I also tried to split this inline and to use it in the session process, before the main list-nothing worked, and my experiment-which should be complete or at least 99% so if it would work, still not running... Would appreciate any advice Warmest regards Gili On Oct 23, 1:27?pm, liwenna wrote: > Hi Gilis, > > Not sure about the first question you ask, but could it have something > to do with the line 'stimlist.AddLevel 0' ? ?Seems to me that you're > adding zero levels there making that line either redundant or possibly > messing up your script (given that the error message seems to have > something to do with a mismatch between the numbering or number of > levels). > > As for the second question: I think you'll have to use the > stimlist.reset command before you can operate on the attribute values. > But what confuses me more is what the possible location of this script > is?? If it's on the proc that is nested in stimlist than you should > (perhaps even could?) not tamper with the stimlist that the proc is in > while if it's not on the proc that is nested into stimlist than you're > in the wrong context (the c in c.getattrib) to get the value of the > attribute using that command. > > Perhaps (guessing here) you overlooked the part where adding levels > with a script should be done to a separate list that get's located > later in the main procedure than the list that the program is > currently 'working' ?in, i.e not the list that is active when the > inline is encountered. > > On 23 okt, 00:08, gilis wrote: > > > > > > > > > Hi all.. > > > when I try to do that: > > > dim nLevel as integer > > > for nLevel= 1 to 10 > > > stimlist.AddLevel 0 > > > stimlist.SetWeight nLevel, "1" > > > stimlist.SetProc nLevel, "trialproc" > > > stimlist.SetAttrib nLevel, "word", "nothing" > > > stimlist.SetAttrib nLevel , "Word_type", "notrealy" > > > stimlist.SetAttrib nLevel, "correct", "0" > > > stimlist.SetAttrib nLevel, "xcolor", "black" > > > Set stimlist.TerminateCondition = Cycles(1) > > > Set stimlist.ResetCondition = Samples(10) > > > stimlist.Reset > > > Next nLevel > > > I get "level that is an integer with level count mismatch" -well, I > > tried to solve it in many ways, but I guess that some help could be > > more helpful. > > > Second question is about this issue: > > > dim a(9) as string > > dim stimarray(9) as string > > dim c1 as string > > dim m as integer > > > a(0)="word1" > > . > > . > > a(9)="word10" > > . > > . > > . > > > for m=1 to 1o > > stimlist.SetAttrib m, "word", stimarray(m-1) > > c1 = c.getattrib("word") > > if c1 = a(0) or a(1) or a(2) or a(3) or a(4) then > > stimlist.SetAttrib m, "correct", 1 > > end if > > > It keep telling me that there is no such attribute as "word", though > > you can see that I predefined one and just to make sure I also did it > > in the relevant list object. Again, I tried to solve it in many ways > > but your help sounds like a better idea. > > > Thanks in advance, > > Gilis -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From liwenna at gmail.com Mon Oct 24 10:27:18 2011 From: liwenna at gmail.com (Anne-Wil Kruijt) Date: Mon, 24 Oct 2011 12:27:18 +0200 Subject: Can't get addlevel commant to do the trick...(plus another question) Message-ID: Oh dear.... Gilis, although I don't quite understand what you try to achieve, I do fear that you're going completely overboard on the scripting, overlooking the more simple and easy to implement features present in e-prime. Again: you shouldn't tamper with a list that is currently running. Moreover: did you check/play with the option to exit a list after 1 sample is taken? What is the function of having two lists of stimuli? If the two lists contain different words, then why did you need to check for stimuli repeating? (i.e. if two lists containing different words alternate based on odd/evenness of the trials than repeats can not happen?). Have a look at the testscript "gilis two lists two colors' to see a script alternating two stimlists with the words presented in white/cyan dependent on the list. If the two stimlists contain the same words and the only function of having two lists is to alternate the colors based on the lists, then rather use one list and alternate the color... see the testscript "gilis 1 stimlist two colours" which is a simple adjustment of last week's 'nostimrepeats' script and therefore has the no stim repeats coding also in place. best, liw -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. -------------- next part -------------- A non-text attachment was scrubbed... Name: gillis two lists two colors.es2 Type: application/octet-stream Size: 37950 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: gilis 1 stimlist two colours.es2 Type: application/octet-stream Size: 44792 bytes Desc: not available URL: From anna.siyanova at unimore.it Mon Oct 24 15:38:29 2011 From: anna.siyanova at unimore.it (Anya) Date: Mon, 24 Oct 2011 08:38:29 -0700 Subject: audio presentation in Eprime, file duration question Message-ID: Hi, I have a very simple experiment where people first hear Word 1, then there's a blank, then they hear Word 2, and need to decide if the two words can refer to the same person. The duration of Word 2 is indefinite, until the button is pressed. My question regards the duration of Word 1. I want the duration of this word to be as long/ short as the duration of the actual audio file, so short words have the duration of, say, under a second, and the duration of longer words is over one sec. Eprime wants me to set the duration of my Audio out object to something, e.g., indefinite, 1000, 2000 etc. But i don't want to do that, instead i want the duration of each file to depend on the length of the word and thus each duration to be unique. Word 1 is then followed by a 250 ms blank, and then Word 2. How do i fix the duration of Word 1? How do i make the word presentation time as long as the actual word is? If i set the duration in Eprime to 1000 ms, then longer words are truncated. If i set the duration to say 1300, then i have lots of silence at the end of shorter words. Many thanks in advance! Anya -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From mcfarla9 at msu.edu Mon Oct 24 17:31:07 2011 From: mcfarla9 at msu.edu (David McFarlane) Date: Mon, 24 Oct 2011 13:31:07 -0400 Subject: audio presentation in Eprime, file duration question In-Reply-To: Message-ID: Anya, Stock reminder: 1) I do not work for PST. 2) PST's trained staff takes any and all questions at http://support.pstnet.com/e%2Dprime/support/login.asp , and they strive to respond to all requests in 24-48 hours -- this is pretty much their substitute for proper documentation, so make full use of it. 3) If you do get an answer from PST Web Support, please extend the courtesy of posting their reply back here for the sake of others. That said, here is my take... On your Word 1 stimulus object, set Duration to (infinite), and End Sound Action to Terminate (you may also set Stop After to to No if you like, although in this case that will have no effect). I cover this in lesson 7 of the online video course that we are preparing. -- David McFarlane, Professional Faultfinder >I have a very simple experiment where people first hear Word 1, then >there's a blank, then they hear Word 2, and need to decide if the two >words can refer to the same person. The duration of Word 2 is >indefinite, until the button is pressed. My question regards the >duration of Word 1. I want the duration of this word to be as long/ >short as the duration of the actual audio file, so short words have >the duration of, say, under a second, and the duration of longer words >is over one sec. Eprime wants me to set the duration of my Audio out >object to something, e.g., indefinite, 1000, 2000 etc. But i don't >want to do that, instead i want the duration of each file to depend on >the length of the word and thus each duration to be unique. Word 1 is >then followed by a 250 ms blank, and then Word 2. > >How do i fix the duration of Word 1? How do i make the word >presentation time as long as the actual word is? If i set the duration >in Eprime to 1000 ms, then longer words are truncated. If i set the >duration to say 1300, then i have lots of silence at the end of >shorter words. > >Many thanks in advance! >Anya -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From anna.siyanova at unimore.it Tue Oct 25 08:35:06 2011 From: anna.siyanova at unimore.it (Anya) Date: Tue, 25 Oct 2011 01:35:06 -0700 Subject: audio presentation in Eprime, file duration question In-Reply-To: <4ea5a0e9.11a4960a.76d5.27edSMTPIN_ADDED@gmr-mx.google.com> Message-ID: Hi Many thanks, i think this could be it. I will post a reply if i hear back from the forum. Thanks again, Anya On Oct 24, 6:31?pm, David McFarlane wrote: > Anya, > > Stock reminder: ?1) I do not work for PST. ?2) PST's trained staff > takes any and all questions athttp://support.pstnet.com/e%2Dprime/support/login.asp, and they > strive to respond to all requests in 24-48 hours -- this is pretty > much their substitute for proper documentation, so make full use of > it. ?3) If you do get an answer from PST Web Support, please extend > the courtesy of posting their reply back here for the sake of others. > > That said, here is my take... > > On your Word 1 stimulus object, set Duration to (infinite), and End > Sound Action to Terminate (you may also set Stop After to to No if > you like, although in this case that will have no effect). > > I cover this in lesson 7 of the online video course that we are preparing. > > -- David McFarlane, Professional Faultfinder > > > > > > > > >I have a very simple experiment where people first hear Word 1, then > >there's a blank, then they hear Word 2, and need to decide if the two > >words can refer to the same person. The duration of Word 2 is > >indefinite, until the button is pressed. My question regards the > >duration of Word 1. I want the duration of this word to be as long/ > >short as the duration of the actual audio file, so short words have > >the duration of, say, under a second, and the duration of longer words > >is over one sec. Eprime wants me to set the duration of my Audio out > >object to something, e.g., indefinite, 1000, 2000 etc. But i don't > >want to do that, instead i want the duration of each file to depend on > >the length of the word and thus each duration to be unique. Word 1 is > >then followed by a 250 ms blank, and then Word 2. > > >How do i fix the duration of Word 1? How do i make the word > >presentation time as long as the actual word is? If i set the duration > >in Eprime to 1000 ms, then longer words are truncated. If i set the > >duration to say 1300, then i have lots of silence at the end of > >shorter words. > > >Many thanks in advance! > >Anya -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From benhisattva at googlemail.com Tue Oct 25 09:02:05 2011 From: benhisattva at googlemail.com (Ben) Date: Tue, 25 Oct 2011 02:02:05 -0700 Subject: Dynamometer In-Reply-To: Message-ID: Thanks to all for your help. I think we start with the joystick unless a technician at the university has some time on his hands. Best, Ben -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From gidgetownsme at gmail.com Thu Oct 27 18:33:07 2011 From: gidgetownsme at gmail.com (Ren) Date: Thu, 27 Oct 2011 11:33:07 -0700 Subject: Output to serial device on keypress Message-ID: I have been struggling to program in E-Prime the ability to trigger a peristaltic pump with a keypress. I want to be able to run the pump while a slide object (movie) is showing, without it advancing to the next object. I want to be able to press a key/ mouse button/ joystick/ anything at any time during my experiment to trigger the pump to deliver juice, but cannot seem to figure it out. Any help would be appreciated. Also, I am running the pump after a gaze-fixation is met as part of the experiement, so I cannot simply find another device to remotely trigger the pump. Thank you! -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From marclatz885 at googlemail.com Mon Oct 31 16:46:32 2011 From: marclatz885 at googlemail.com (Marc) Date: Mon, 31 Oct 2011 09:46:32 -0700 Subject: Simulating Keypress (beginners question) Message-ID: hi there, I'm just starting using E-Prime (with some VB experience, though) and was trying to do something simple as that: There are three stimuluses ("1","2","nothing") displayed in a TextDisplay element which is set to react on event. Correct responses for 1 is 1, for 2 is 2 and for nothing I'd like it to be nothing at all. In case the stimulus is 1 or 2 the program is supposed to wait for the user to make his input, in the "nothing" case it's supposed to wait for 3 or so seconds and then go to the next stimulus. I tried to solve this via VB skills and I'm absolutely stuck here... My code: Dim Start as Long Dim now as Long Start = Clock.Read if TextDisplay1.CRESP = "" then do DoKeys "a" now= Clock.Read - Start loop until now>2000 end if What I'm trying to do is simulating the press of some random key (a in this case) in order to move to the next event as soon as the 2000 ms are over (a is also among the allowable inputs in my TextDisplay). I tried the same with SendKeys and it won't work either, it does, though, when I press the a key manually. What am I doing wrong? I'm almost certain there is an easier way to do what I want to do but unfortunately I don't seem to be able to figure out what to google/e- basic-/eprime search. Some help (may it be "search for xyz in abc before asking, fool") would be greatly appreciated!! Marc P.S.: In case you wonder - the programs purpose is simply getting the loop to work and then applying it to a bitter, existing e-prime file which we want to use as a dependent variable. -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. From baltimore.ben at gmail.com Mon Oct 31 17:24:13 2011 From: baltimore.ben at gmail.com (ben robinson) Date: Mon, 31 Oct 2011 13:24:13 -0400 Subject: Simulating Keypress (beginners question) In-Reply-To: Message-ID: if i've understood the question, this is very easy to accomplish. on whatever object is presenting your stimuli and collecting your responses (probably the same object, possibly a TextObject or SlideObject), set the InputDevice to Keyboard, Allowable responses to "12" (without the quotes, which will make both 1 and 2 allowable resposes), Duration to 3000, and EndAction to Terminate. doing this will cause your Stim object to run for 3000 ms, during which time it will accept responses of 1 or 2 only, and when one of those responses is received the Stim object will Terminate, going to the object in your procedure. if no response is received the object will terminate after 3000 ms. this should be covered somewhere near the very beginning of the Getting Started guide which comes with E-Prime... ben On Mon, Oct 31, 2011 at 12:46 PM, Marc wrote: > hi there, > > I'm just starting using E-Prime (with some VB experience, though) and > was trying to do something simple as that: > > There are three stimuluses ("1","2","nothing") displayed in a > TextDisplay element which is set to react on event. > Correct responses for 1 is 1, for 2 is 2 and for nothing I'd like it > to be nothing at all. > In case the stimulus is 1 or 2 the program is supposed to wait for the > user to make his input, in the "nothing" case it's supposed to wait > for 3 or so seconds and then go to the next stimulus. > > I tried to solve this via VB skills and I'm absolutely stuck here... > > My code: > > Dim Start as Long > Dim now as Long > Start = Clock.Read > > if TextDisplay1.CRESP = "" then > ? ? ? ?do > ? ? ? ?DoKeys "a" > ? ? ? ?now= Clock.Read - Start > ? ? ? ?loop until now>2000 > end if > > What I'm trying to do is simulating the press of some random key (a in > this case) in order to move to the next event as soon as the 2000 ms > are over (a is also among the allowable inputs in my TextDisplay). I > tried the same with SendKeys and it won't work either, it does, > though, when I press the a key manually. > > What am I doing wrong? > I'm almost certain there is an easier way to do what I want to do but > unfortunately I don't seem to be able to figure out what to google/e- > basic-/eprime search. > > Some help (may it be "search for xyz in abc before asking, fool") > would be greatly appreciated!! > > Marc > > P.S.: In case you wonder - the programs purpose is simply getting the > loop to work and then applying it to a bitter, existing e-prime file > which we want to use as a dependent variable. > > -- > You received this message because you are subscribed to the Google Groups "E-Prime" group. > To post to this group, send email to e-prime at googlegroups.com. > To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. > For more options, visit this group at http://groups.google.com/group/e-prime?hl=en. > > -- You received this message because you are subscribed to the Google Groups "E-Prime" group. To post to this group, send email to e-prime at googlegroups.com. To unsubscribe from this group, send email to e-prime+unsubscribe at googlegroups.com. For more options, visit this group at http://groups.google.com/group/e-prime?hl=en.