views:

141

answers:

1

Using Autohotkey, I’ve remapped a button to execute a loop. Every 30 seconds, PgDn will execute. In order to move on to the next tab, Ctrl-W (close tab) needs to happen. Is there way any to detect that the scrollbar as at the bottom? Once the “scrollbar-at-bottom” condition is met, PgDn will execute “close tab” instead. What language should I learn to make a program/script that can do this? I know a little bit of Java. Can Javascript do this?

Thanks

A: 

You probably need to investigate building a Firefox extension.

Dave Gamble
*extension*. "Plugin" in mozilla refers to flash/silverlight-like components.
Nickolay
sorry! edited to correct.
Dave Gamble
thanks Davesomething like this:https://developer.mozilla.org/en/XUL/scrollbarwas what I was looking forif curpos 100 (scroll position at bottom), closeTab or moveToNextTabI can't find something that closes the tab, but I'm sure it's in there somewhere
bbint