Jump to content


Photo

Download from Skydrive


  • Please log in to reply
3 replies to this topic

#1 blondedude092

blondedude092
  • Members
  • 73 posts

Posted 24 July 2012 - 01:31 PM

I have a file in a public folder which can be downloaded by anyone.

I can download it manually but attempts to download it problematically fails due to the URL changes ever so often.
How would I be able to request for the file to download?

#2 Wingfat

Wingfat
  • Members
  • 932 posts

Posted 24 July 2012 - 03:00 PM


SetKeyDelay, 20

Gui, Add, Text, ,URL

Gui, Add, Edit, vURL,

Gui, Add, Button, default, OK

Gui, Show

UrlDownloadToFile, %URL%, Filename   ;rename filename and use a path if you need

return



#3 blondedude092

blondedude092
  • Members
  • 73 posts

Posted 24 July 2012 - 08:09 PM

Once again.... The URL changes!!!! so therefore I need to have it emulate clicks...

#4 Wingfat

Wingfat
  • Members
  • 932 posts

Posted 24 July 2012 - 10:28 PM

Once again.... The URL changes!!!! so therefore I need to have it emulate clicks...

that is why i added in a box for you to type in the new URL each time ;-)
But - Have you tried the AutoScript writter that comes with AHK? you can record where your "clicks" are and then emulate them. sorry with out more info or even a test script it is hard to help you.