<html>
<body>
<blockquote type=cite class=cite 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>
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>
<x-tab>        </x-tab>If
Object.RESP = 1 And Condition = 'same' Then<br>
<x-tab>        </x-tab><x-tab>
        </x-tab>GoTo Label1<br>
<x-tab>        </x-tab>ElseIf
Object.RESP = 0 And Condition = 'same' Then<br>
<x-tab>        </x-tab><x-tab>
        </x-tab>GoTo Label2<br>
<x-tab>        </x-tab>ElseIf
Object.RESP = 0 And Condition = 'different' Then<br>
<x-tab>        </x-tab><x-tab>
        </x-tab>GoTo Label1<br>
<x-tab>        </x-tab>ElseIf
Object.RESP = 1 And Condition = 'different' Then<br>
<x-tab>        </x-tab><x-tab>
        </x-tab>GoTo Label1<br>
<x-tab>        </x-tab>End
If<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>
</body>
</html>
<br>