trial timeline:<br><br>BeginningOfTrialLabel<br>Fixation<br>StimA<br>Mask<br>StimA'<br>Mask<br>Inline:<br><div style="margin-left: 40px;">Select Case StimA'.RESP<br>   Case 0 'no change - end this trial so we can start the next trial<br>
      Goto EndOfTrialLabel<br>   Case 1 'change detected (correctly or incorrectly, doesn't matter) - ask participant in which quadrant the change was detected<br>      Goto LocalizationLabel 'this label is actually unnecessary, and i've only included it for clarity<br>
   Case Else 'no response detected - keep flickering the same trial until a response is detected<br>      Goto BeginningOfTrialLabel<br>End Select<br></div>LocalizationLabel<br>LocalizationScreen - "In which quadrant did you note the change?"<br>
EndOfTrialLabel<br><br><div class="gmail_quote">On Jan 30, 2008 7:53 PM, Peter Quain <<a href="mailto:pquain@une.edu.au">pquain@une.edu.au</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<div><div class="Ih2E3d">
<blockquote type="cite"><br>
I'm using as yours advice an If … Then Statement and I add an Else (like
this):<br><br>
 <br><br>
<b>If RealStimulus.ACC Or AlterStimulus.ACC = 0 Then <br>
</b><br>
<b>           
Goto Label1<br>
</b><br>
<b>Else<br>
</b><br>
<b>           
Goto Label2<br>
</b><br>
<b>End If<br>
</b></blockquote><br><br></div>
for a start, I think the 'Or' syntax should be ... If RealStim.ACC = 0 Or
Alter.Stim.ACC = 0 Then ...<br><br>
But, shouldn't you test the RESPONSE (1 or 0) against the stimuli match
condition (same or different)?<br>
maybe <u>something </u>like this...<br><br>
        If
Object.RESP = 1 And Condition = 'same' Then<br>
        
        GoTo Label1<br>
        ElseIf
Object.RESP = 0 And Condition = 'same' Then<br>
        
        GoTo Label2<br>
        ElseIf
Object.RESP = 0 And Condition = 'different' Then<br>
        
        GoTo Label1<br>
        ElseIf
Object.RESP = 1 And Condition = 'different' Then<br>
        
        GoTo Label1<br>
        End
If<div class="Ih2E3d"><br>
</div></div>

<br>
<br><br><br>No virus found in this outgoing message.<br>Checked by AVG Free Edition.<br>Version: 7.5.516 / Virus Database: 269.19.15/1249 - Release Date: 29/01/2008 9:51 AM<br><br></blockquote></div><br><br>
--~--~---------~--~----~------------~-------~--~----~<br>
You received this message because you are subscribed to the Google Groups "E-Prime" group. <br> To post to this group, send email to e-prime@googlegroups.com <br> To unsubscribe from this group, send email to e-prime-unsubscribe@googlegroups.com <br> For more options, visit this group at http://groups.google.com/group/e-prime?hl=en <br> -~----------~----~----~----~------~----~------~--~---<br>
<br>