Excel VBA - Click a specific pixel location in an open IE window -
i have existing macro navigates web page in existing ie window. there way can instruct excel click on specific pixel location?
here plain english template accomplish
ie.navigate "somesite.com" ie.document ie.click pixel 500,500 end
1, install autoit
2, add reference autoitx.dll (tools--reference--browse , navigate autoitx.dll)
3. add sinppet code
set x = createobject("autoitx3.control") x.mouseclick "left", 500, 500
Comments
Post a Comment