Jump to content

Input Buttons by Coords


Recommended Posts

$oFrame = _IEFrameGetObjByName($oIE, "Frame")

$oInputs = _IETagNameGetCollection($oFrame, "input")

For $oInput in $oInputs

If String($oInput.value) = "Value" Then

$oInput.click

ExitLoop

EndIf

Next

This command works fine, it finds any input button with the name "Value" and clicks it. What I was hoping to do was once it finds the input, if it AutoIt could actually return the coordinates upon which the button lies. The intention is to click the button in arbitrary places as opposed to a set place. Is this possible?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...