AutoHotkey Community

It is currently May 27th, 2012, 1:01 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
PostPosted: January 2nd, 2010, 4:55 pm 
Offline

Joined: June 16th, 2008, 6:19 am
Posts: 66
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 3rd, 2010, 1:42 am 
Offline

Joined: March 16th, 2008, 6:48 pm
Posts: 161
Location: Brooklyn
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?

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 11th, 2010, 4:32 pm 
Offline

Joined: March 23rd, 2005, 7:53 am
Posts: 321
Location: Germany
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


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Leef_me, WillTroll, XstatyK, Yahoo [Bot] and 30 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group