<div>i'm a big fan of Select Case... rather than If Then... when things start getting complicated.</div><div>you could do something like this:</div><div>Select Case strhit1</div><div>    Case "redcircle"</div>

<div>        Select Case strhit2</div><div>            Case "bluecircle"</div><div>                CORRECT</div><div>            Case Else</div><div>                INCORRECT</div><div>        End Select</div><div>

    Case "bluecircle"</div><div>        Select Case strhit2</div><div>            Case "redcircle"</div><div>                CORRECT</div><div>            Case Else</div><div>                INCORRECT</div>

<div>        End Select</div><div>    Case "redsquare"</div><div>    Case "bluesquare"</div><div>End Select</div><div><br><div class="gmail_quote">On Wed, Aug 10, 2011 at 1:08 PM, Becky Clements <span dir="ltr"><<a href="mailto:cobwebfaery@gmail.com">cobwebfaery@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi Ben,<br>
<br>
Thanks for the advise. The task is a little bit more complicated than<br>
simply logging two response which if that is all we were doing two<br>
slides would be fine but the two response are paired in regards to<br>
accuracy. For example say the four images comprised of a red circle,<br>
blue circle, yellow triangle, and red rectangle there are two correct<br>
answers consisting of 4 mouse responses the two circles are one<br>
correct pair and the red circle and the red triangle the other correct<br>
pair. The participant is not restricted as to which pair they must<br>
pick first but it is a paired response that is correct rather than<br>
each response independently. Do you know if there is a way of pairing<br>
the hittest? I have tried to combine two attributes for example<br>
if strhit1 = red circle and strhit2 = blue circle then<br>
<div><div></div><div class="h5"><br>
<br>
On Aug 10, 11:02 am, ben robinson <<a href="mailto:baltimore....@gmail.com">baltimore....@gmail.com</a>> wrote:<br>
> i'm sure you could find a way to do this using a single slide collecting the<br>
> two responses, but i think it would be easier to use two slides one after<br>
> the other, each collecting a single response.<br>
> i would have a procedure start with Label1, then Slide1, then Inline1, then<br>
> Label2, Slide2, Inline2.<br>
> Slide1 shows your 4 images.<br>
> Inline1 performs a HitTest on the mouse response to Slide1.  if an invalid<br>
> response then go back to Label1 to represent Slide1, otherwise procede to<br>
> Slide2.  you might label this valid response something like strHit1.<br>
> Slide2 is configured exactly the same as Slide1 so that to the participant's<br>
> eye no change occurs on the screen following their successful mouse response<br>
> to Slide1.<br>
> Inline2 again checks to see that a valid response is made.  if not, for<br>
> instance if they click on the same item as they did on Slide1, just jump<br>
> back to Label2 so that Slide2 can be redisplayed and a valid response<br>
> collected.  label that valid response strHit2.<br>
> furthermore, with Inline2 you can take your two valid responses and craft<br>
> your remaining slide, which you said needed to be based on the previous two<br>
> responses.<br>
> for instance, once you've received a valid response to Slide2, Inline2 might<br>
> continue as follows:<br>
><br>
> Select Case strHit1<br>
>     Case "Image1"<br>
><br>
> Select Case strHit2<br>
>     Case "Image1"<br>
>         'set Slide3 to reflect a choice of Slide1.Image1 and Slide2.Image1<br>
>     Case "Image2"<br>
>         'set Slide3 to reflect a choice of Slide1.Image1 and Slide2.Image2<br>
>     Case "Image3"<br>
>         'set Slide3 to reflect a choice of Slide1.Image1 and Slide2.Image3<br>
>     Case "Image4"<br>
>         'set Slide3 to reflect a choice of Slide1.Image1 and Slide2.Image4<br>
> End Select<br>
><br>
>     Case "Image2"<br>
>     Case "Image3"<br>
>     Case "Image4"<br>
> End Select<br>
><br>
</div></div>> On Tue, Aug 9, 2011 at 8:56 PM, Becky Clements <<a href="mailto:cobwebfa...@gmail.com">cobwebfa...@gmail.com</a>>wrote:<br>
<div class="im">><br>
><br>
><br>
><br>
><br>
><br>
><br>
> > Hi everyone.<br>
><br>
> > I am currently designing an experiment in which children will be<br>
> > presented with four images, and will have to choose two objects using<br>
> > a mouse response.  I have looked at the "Multiple Response Sample"<br>
> > provided on EPrime Support, however, I cannot see how to manipulate<br>
> > this Inline to an image slide, in order to record the two responses<br>
> > from the one slide.  (The proceeding slide's correct answer is based<br>
> > upon the combination of these two responses, so it would be preferable<br>
> > to have the multiple responses be on one slide).<br>
><br>
> > Any help would be greatly appreciated.<br>
><br>
> > Cheers,<br>
> > Becky<br>
><br>
> > --<br>
> > You received this message because you are subscribed to the Google Groups<br>
> > "E-Prime" group.<br>
> > To post to this group, send email to <a href="mailto:e-prime@googlegroups.com">e-prime@googlegroups.com</a>.<br>
> > To unsubscribe from this group, send email to<br>
> > <a href="mailto:e-prime%2Bunsubscribe@googlegroups.com">e-prime+unsubscribe@googlegroups.com</a>.<br>
> > For more options, visit this group at<br>
> ><a href="http://groups.google.com/group/e-prime?hl=en" target="_blank">http://groups.google.com/group/e-prime?hl=en</a>.<br>
<br>
</div>--<br>
<div><div></div><div class="h5">You received this message because you are subscribed to the Google Groups "E-Prime" group.<br>
To post to this group, send email to <a href="mailto:e-prime@googlegroups.com">e-prime@googlegroups.com</a>.<br>
To unsubscribe from this group, send email to <a href="mailto:e-prime%2Bunsubscribe@googlegroups.com">e-prime+unsubscribe@googlegroups.com</a>.<br>
For more options, visit this group at <a href="http://groups.google.com/group/e-prime?hl=en" target="_blank">http://groups.google.com/group/e-prime?hl=en</a>.<br>
<br>
</div></div></blockquote></div><br></div>

<p></p>

-- <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 />