DonationCoder.com Software > Finished Programs
DONE: Have list of URLs, and, in Chrome, manually load one, then next, etc.
mouser:
I'd still like to see this marked as not DONE and moved back to pending, and see what other coding snack coders might come up with.
nkormanik:
Skwire's solution worked fine with the example URLs he provided.
Unfortunately not so with my case:
myURLs =
(
https://plus.google.com/104262594301276893821
https://plus.google.com/104283716002131797428
https://plus.google.com/104309222535259801633
https://plus.google.com/104392019611590500945
https://plus.google.com/104410043740081757281
https://plus.google.com/104429427297929885544
https://plus.google.com/104479772621336105362
https://plus.google.com/104541959256591361052
https://plus.google.com/104575325257916010047
https://plus.google.com/104608435688900811644
https://plus.google.com/104612126840644619266
)
etc...
The URL box entry gets broken up. Could be do to a number of things, like the additional search box on the webpage, or possibly a conflicting add-in loaded?
So, mission not quite accomplished. Thanks mouser for keeping the thread active.
Possible enhancement requests, though, Squire, in case there's an easy solution to the above:
-- Allow a reference to a separate file that holds the URLs. Such as, "c:\look at sites\url list.txt" Instead of forcing user to edit the .ahk script file.
-- Allow for a longer list of URLs. I got error messages that I had too many (when attempting a much longer list than that shown above).
-- Perhaps allow user to choose which key to use to go forward, for instance the insert key (though a nice addition, I don't care so much about being able to go backward).
Thanks.
skwire:
All that you want is, basically, possible. As mouser suggested, I've moved this back to "IDEA" stage so let's see if anybody wants to pick this up.
The URL box entry gets broken up. Could be do to a number of things, like the additional search box on the webpage, or possibly a conflicting add-in loaded?-nkormanik (March 13, 2013, 07:42 PM)
--- End quote ---
Try increasing the sleep time in the script. It's currently set for 750 milliseconds.
nkormanik:
Increased sleep to 5000, and still the same problem.
What generally happens is that the h gets chopped off at the beginning of URLs.
So only: ttps://plus.google.com/104410043740081757281
And that, of course, doesn't go to the intended site.
skwire:
What generally happens is that the h gets chopped off at the beginning of URLs.
So only: ttps://plus.google.com/104410043740081757281-nkormanik (March 16, 2013, 03:16 AM)
--- End quote ---
Then try adding a small sleep after the ^l line, e.g.:
--- Code: Autohotkey ---SendInput, ^l Sleep, 300 SendInput, % %myURL%
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version