syamay 0 Posted April 27, 2011 Hi programmers, I am new to auto It programming, need your help on the problem below. My program need to click on link and update some value on popup windows. I tried use _IEAction.au3 example file, but this code is opening new windows, how to get link from IE/ Mozilla which is already open and log on (since I need to key in is & password). #include <ie.au3> $oIE = _IECreate("http://204.183.109.150/home.php", 0, 1) _IELoadWait($oIE) _IELinkClickByText ($oIE, "Add Trend") Thanks. Share this post Link to post Share on other sites
sahsanu 28 Posted April 27, 2011 how to get link from IE/ Mozilla which is already open and log on (since I need to key in is & password). I think you are looking for _IEAttach function: #include <IE.au3> $oIE = _IEAttach ("204.183.109.150","URL") _IELinkClickByText ($oIE, "Add Trend") Share this post Link to post Share on other sites
syamay 0 Posted April 27, 2011 hi master sahsanu, Thanks a lot, its work. Share this post Link to post Share on other sites