jtuttle
Joined: 06 Nov 2008 Posts: 26
|
Posted: Sat Aug 15, 2009 1:23 am Post subject: UrlDownloadToFile progress |
|
|
I have a little snippet that grabs a URL from the clipboard and downloads it to a folder, but it'd be nice to have some kind of progress bar or general ETA on the download while in progress. Is this possible?
Here's my code, simple though it is:
| Code: | Grab:
ifinstring, clipboard, http://
{
SplitPath, clipboard, GetThis
UrlDownloadToFile, %clipboard%, R:/%GetThis%
TrayTip,, %GetThis% saved to R:/, 3, 2
}
else
{
TrayTip,, That is not a valid URL!, 3, 2
}
Return |
|
|