I want applescript to scroll a window all the way up.
I\'ve tried the page up key, the home key, and I\'ve tried looking for a way to scroll using the built in scro
With browsers you could also use JavaScript:
tell application "Safari" to tell document 1 do JavaScript "window.scroll(0,0)" end tell tell application "Google Chrome" to tell active tab of window 1 execute javascript "window.scroll(0,0)" end tell