Hi Nate,<br><br>I usually implement object highlighting  by changing the objects background colour or bounding box style. E.g.<br><br>        hitObject.BackColor = CColor("silver")<br>        hitObject.Draw<br><br>
Where hitObject is the selected slide (sub)object, which can be a SlideText or SlideImage object. You can modify any graphics attribute on the fly using similar code. (Check out the help docs about SlideText and SlideImage object attributes)  <br>
<br>If you use the keyboard to select "1" or "2", then you can use the names of the objects to get a reference to the selected slide sub object:<br><br>Dim theState As SlideState<br>Dim hitObject As SlideText  'in case this the selected object is a text object<br>
Set theState = theSlide.States(theSlide.ActiveState)<br>Select Case theSlide.RESP<br>case "1"<br>   hitObject = theState.Objects("Text1")<br>case "2"<br>   hitObject = theState.Objects("Text2")<br>
End Select<br><br>When using the mouse you could use the theState.HitTest(x,y) method to determine which object was selected (if any).<br><br>The second part of your question is about having a fixed response window of 6 seconds, while updating the slide objects at the same time. There are several way's to implement this, and I think a simple while-loop that polls the isPending() method is the easiest: <a href="http://www.pstnet.com/support/kb.asp?TopicID=3026">http://www.pstnet.com/support/kb.asp?TopicID=3026</a><br>
<br>Cheers<br>Paul<br><br><div class="gmail_quote">2012/10/6 NW Stroh <span dir="ltr"><<a href="mailto:strohnw@gmail.com" target="_blank">strohnw@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<p style="text-align:left;clear:both"><span style="line-height:normal">Hello all,</span></p><p style="text-align:left;clear:both"><span style="line-height:normal">I would like to highlight an object based on the subject's response.  The basic flow is a repetition of 1) a Text Frame round counter, 2) a Text Frame presentation of a starting amount, and then 3) a framing prompt on a Slide similar to the one below.  </span>The boxes are black and the lines thicker.  The subject then makes their choice using 1 or 2.  <span style="line-height:normal">The subject has six seconds to make a choice and the slide stays up the whole duration.  Ideally, I would like the box surrounding the selected option to change color while the slide is still displayed but I am open to any and all suggestions.  </span></p>
<p style="text-align:left;clear:both"><span style="line-height:normal">I go</span><span style="line-height:normal">t one of the boxes to change using an Inline and the Correct State of a Feedback Slide.  This ultimately interrupts our timing because the feedback displays after the slide.  I tried to borrow some code from an older experiment, but I have not yet gotten it working and the coder is not available to help.  Any help would be greatly appreciated.  If worse comes to worse, I will use an Echo Display but I think it is a sub-optimal solution.  Thank you in advance.</span><br>
</p><p style="text-align:left;clear:both"><span style="line-height:normal">Nate</span></p><p style="text-align:left;clear:both"><a href="https://lh3.googleusercontent.com/-JEzfv1muKRM/UG9ZvOKry1I/AAAAAAAAABU/x03s5D7kdN8/s1600/EPrime+Frame.jpg" style="margin-left:1em;margin-right:1em" target="_blank"><img src="" border="0" height="243" width="320"></a></p>
<span class="HOEnZb"><font color="#888888"><br>

<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 <a href="mailto:e-prime@googlegroups.com" target="_blank">e-prime@googlegroups.com</a>.<br>
To unsubscribe from this group, send email to <a href="mailto:e-prime%2Bunsubscribe@googlegroups.com" target="_blank">e-prime+unsubscribe@googlegroups.com</a>.<br>
To view this discussion on the web visit <a href="https://groups.google.com/d/msg/e-prime/-/QgqKp6v6h_8J" target="_blank">https://groups.google.com/d/msg/e-prime/-/QgqKp6v6h_8J</a>.<br>
For more options, visit <a href="https://groups.google.com/groups/opt_out" target="_blank">https://groups.google.com/groups/opt_out</a>.<br>
 <br>
 <br>
</font></span></blockquote></div><br>

<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 <a href="https://groups.google.com/groups/opt_out">https://groups.google.com/groups/opt_out</a>.<br />
 <br />
 <br />