AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

"Autopager" or "Next Page" type script f

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
geor



Joined: 16 Jun 2008
Posts: 66

PostPosted: Sat Jan 02, 2010 3:55 pm    Post subject: "Autopager" or "Next Page" type script f Reply with quote

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
View user's profile Send private message
Sergio



Joined: 16 Mar 2008
Posts: 160
Location: Brooklyn

PostPosted: Sun Jan 03, 2010 12:42 am    Post subject: Reply with quote

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
View user's profile Send private message
Hasso



Joined: 23 Mar 2005
Posts: 321
Location: Germany

PostPosted: Mon Jan 11, 2010 3:32 pm    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group