Now I have a new question. The two buttons I used are text boxes (light gray background, Bold black font).<br><br>To make the buttons more realistic, I am trying to have the background color change when my mouse hovers over them.<br><br>No clicking will happen, I simply want the program to monitor the location of the cursor; and when the cursor is over the buttons, the backcolor of the buttons can change.<br><br>I am sorry to bother you again, but I do need help :(<br><br>My thought is to <br><br><br><br>dim leftbutton as rect<br><span style="background-color: rgb(255, 255, 0);">(is this correct? leftbutton is the string name of a button on the slide.)</span><br><br>Dim curPoint As Point    'mouse over<br>Dim ETTime As Long<br>ETTime = Clock.Read<br>Dim ETTimeInterval As Long<br>ETTimeInterval = 10<br><br><br>'---loop the positioning mechanism before a response is made<br>Do While Slide5.InputMasks.Responses.Count = 0<br><br>    '===  request eye or mouse data every ETTimeInterval ms<br>If (Clock.Read > ETTime)  Then<br><br>        'Set the next log time<br>        ETTime = Clock.Read + ETTimeInterval<br><br><br><br><br>        '---- highlight AOI ( mouse over )<br>        Mouse.GetCursorPos curPoint.x, curPoint.y<br> <br> <br>           <br>                If PointInRect(curPoint,leftbutton ) Then     <span style="background-color: rgb(255, 255, 0);">'This I don't understand. Am i in the right path to make a textbox a rect in the inline, then use it in a pointinrect and color change command?</span><br>                    leftbutton.BackColor =  color.silver<br>                    leftbutton.Draw<br>                Else<br>                    leftbutton.BackColor = color.gray    <br>                    leftbutton.Draw<br>                End If<br>     <br><br><br>end if<br>loop<br><br><br>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups "E-Prime" group.<br />
To view this discussion on the web visit <a href="https://groups.google.com/d/msg/e-prime/-/oCQYtMwJ3eAJ">https://groups.google.com/d/msg/e-prime/-/oCQYtMwJ3eAJ</a>.<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 />