Hello all,
I am currently trying to make an auto scroller for some webpages that will be on display and I have hit a bit of an odd problem.
"$oIE.document.parentwindow.scroll" and "$oIE.document.parentwindow.scrollto" work on some webpages and not on others.
#include <IE.au3>
$oIE = _IECreate("www.themercury.com.au")
$iSleepTime = 15000
$iScrollTime = Round($iSleepTime / $oIE.document.body.clientHeight)
For $scroll = 1 To $oIE.document.body.clientHeight
Sleep($iScrollTime)
$oIE.doc