Hi guys! Please help ! I need to fill forms on IE-window which opened by click by link. Well, to fill form "form" on http://somesite.some I can use this script: #include <IE.au3> $oIE = _IECreate ("http://somesite.some") $oForm = _IEFormGetCollection ($oIE, 1) _IEFormElementSetValue (_IEFormElementGetObjByName($oForm, "form"), "Form") But how can I fill form on window opened by _IELinkClickByText ($oIE, "text_OF_link", 0, 1)? I need to know object variable of this window... The example o