| View previous topic :: View next topic |
| Author |
Message |
chipmanners
Joined: 30 Aug 2007 Posts: 60
|
Posted: Thu Aug 30, 2007 8:39 pm Post subject: can AutoHotkey do this? |
|
|
Hi,
I am curious to see if autohotkey can do this.
I basically have a text file with a list of URLs. One on each line of the text document.
I'm wondering if autohotkey can read the url open it in the browswer (IE) and then go to the next link in the text document and open it up in the same window. And keep on doing this until all the links are opened?
Thanks for all your help,
CHip |
|
| Back to top |
|
 |
Z Gecko Guest
|
Posted: Thu Aug 30, 2007 8:42 pm Post subject: |
|
|
YES!
check FileRead and ControlSend in the help. |
|
| Back to top |
|
 |
thefunnyman
Joined: 04 Aug 2007 Posts: 22
|
Posted: Thu Aug 30, 2007 8:42 pm Post subject: |
|
|
yes it can....
| Code: |
loop, read, FileFullOfURLs.txt
{
Run, %A_LoopReadLine%
}
|
|
|
| Back to top |
|
 |
chipmanners
Joined: 30 Aug 2007 Posts: 60
|
Posted: Thu Aug 30, 2007 8:48 pm Post subject: Wow LOL |
|
|
You guys are great. Amazing. So fast reply.
THANKS THANKS THANKS!
I will try this
Thanks,
Chip |
|
| Back to top |
|
 |
|