<DIV>Hello,</DIV>
<DIV> </DIV>
<DIV>I am trying to create a slide with two buttons (made from images). One button (named Another) will take you back to the practice list and the other button (named Proceed) will proceed to the instructions for the first task.  If you click anywhere outside the buttons you will stay on the screen.</DIV>
<DIV> </DIV>
<DIV>I have created a code that directs where you go via labels.  My code to stay on the screen works fine. The code that recognizes the images as buttons also works.  The problem I am running into is the locations that the buttons go to... </DIV>
<DIV> </DIV>
<DIV>With the current code when I click on both the "Another" and "Proceed" buttons I end up at Label 3.  I tried switching what image corresponds to each label (i.e. Another going to Label11 and Proceed going to Label3) to see if the problem was in the Elseif statement, but then both buttons ended up at Label11.</DIV>
<DIV> </DIV>
<DIV>Would anyone know how to have each button go to their intended location?</DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV>Thank you,</DIV>
<DIV> </DIV>
<DIV>Katie</DIV>
<DIV> </DIV>
<DIV>_________________________________________________________________________</DIV>
<DIV> </DIV>
<DIV>'Designate "theState" as the Default Slide State, which is the<BR>'current ActiveState on the Slide object "morepractice".<BR>Dim theState As SlideState<BR>Set theState = morepractice.States("Default")</DIV>
<DIV>Dim theSlideImage As SlideImage</DIV>
<DIV>Dim strHit As String<BR>Dim theMouseResponseData As MouseResponseData</DIV>
<DIV> </DIV>
<DIV>'Was there a response?<BR> If morepractice.InputMasks.Responses.Count > 0 Then<BR>  debug.print "Line 16"<BR>  'Get the mouse response.<BR>  Set theMouseResponseData = CMouseResponseData(morepractice.InputMasks.Responses(1))</DIV>
<DIV>  'Determine string name of SlideImage object at<BR>  'mouse click coordinates. Assign that value to strHit<BR>  strHit = theState.HitTest(theMouseResponseData.CursorX, theMouseResponseData.CursorY)</DIV>
<DIV> <BR>  'If you hit image for Another Practice Trial you will go to a label before the practice list'<BR>  If strHit = "Another" Then<BR>   Sleep 350<BR>   GoTo Label3<BR>  <BR>  'If you hit the image for Proceed to Task1 you will go to a label before the intro slide for Task1' <BR>  ElseIf strHit = "Proceed" Then<BR>   Sleep 350<BR>   GoTo Label11<BR>  <BR>  'If you hit anywhere else on the screen you will stay at that screen' <BR>  Else<BR>   GoTo Label4<BR>     <BR>  End If<BR> End If</DIV>
<DIV> </DIV>
<DIV><BR>Set theMouseResponseData = Nothing<BR>Mouse.ShowCursor False<BR></DIV>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups "E-Prime" group.<br />
To unsubscribe from this group and stop receiving emails from it, send an email to e-prime+unsubscribe@googlegroups.com.<br />
To post to this group, send email to e-prime@googlegroups.com.<br />
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/e-prime/ec9337a2-41a6-4927-87ec-fcbf6d67f158%40googlegroups.com">https://groups.google.com/d/msgid/e-prime/ec9337a2-41a6-4927-87ec-fcbf6d67f158%40googlegroups.com</a>.<br />
For more options, visit <a href="https://groups.google.com/groups/opt_out">https://groups.google.com/groups/opt_out</a>.<br />
 <br />
 <br />