Here is what I've found out so far: Let's imagine that: - you've created an IE object - you work with the one and only form inside the page you browse - you are getting ready to iterate on all the objects in that form $oIE = _IECreate(...)
$oForm = _IEFormGetObjByName($oIE, "theForm")
$oObjects = _IEFormElementGetCollection($oForm)
For $oObject In $oObjects
if $oObject.id = "the_id_Im_looking_for" Then
...
EndIf
Next
- you want to know the pixel position of one of the $oO