| View previous topic :: View next topic |
| Author |
Message |
geor
Joined: 16 Jun 2008 Posts: 66
|
Posted: Sat Jan 02, 2010 3:55 pm Post subject: "Autopager" or "Next Page" type script f |
|
|
Having searched but not found, is there any script,
that would do for Internet Explorer ,
what Autopager does for Firefox or Chrome?
(or for any/all browsers?)
that is, in a multi-page site (like this forum!)
it would find either "Next" or "Next Page"
so that you could hotkey &/or mouse-gesture bind it ?
Thanks |
|
| Back to top |
|
 |
Sergio
Joined: 16 Mar 2008 Posts: 160 Location: Brooklyn
|
Posted: Sun Jan 03, 2010 12:42 am Post subject: |
|
|
I'm sure that it could be made using urldownloadtofile and FileAppend. But as far as I know it doesn't exist yet.
Why not just use the clearly superior browser? _________________
 |
|
| Back to top |
|
 |
Hasso
Joined: 23 Mar 2005 Posts: 321 Location: Germany
|
Posted: Mon Jan 11, 2010 3:32 pm Post subject: |
|
|
| Quote: | that is, in a multi-page site (like this forum!)
it would find either "Next" or "Next Page"
so that you could hotkey &/or mouse-gesture bind it ? |
I have built this some time ago:
| Code: | #DOWN:: ;Hotkey WIN+Down - can be changed
saveclip=%clipboard%
clipboard=
clipboard=javascript:for(var i = 1; i <= document.links.length; i++){if((document.links[i].text.indexOf('Next') != -1)||(document.links[i].text.indexOf('next') != -1)){location.href=document.links[i].href;break}}
sendInput !s^a^v{ENTER} ;puts the JavaScript code into the address field and sends ENTER
clipboard=%saveclip%
return
| The text in red has to be entered in one line. The only problem occurs if the topic title contains the word 'Next' as well. Then it will stay at this topic. _________________ Hasso
Programmers don't die, they GOSUB without RETURN |
|
| Back to top |
|
 |
|