Hi, I try to open a IE window (with _IECreate() ), after loading the website, the page must be scrolled down. In Javascript it's possible by using window.scroll(). So, this is what I tried: #include <IE.au3>
$oIE = _IECreate("http://www.mediacollege.com/internet/javascript/page/scroll.html",0,1,1,0)
_IEHeadInsertEventScript ($oIE, "window", "onload", "window.scroll(0,150);") Unfortunately this doesn't work for some reason, however this one works: #include <IE.au3>
$oIE = _IECre