Posts: 1,338
Threads: 61
Joined: Jul 2006
i Was hoping that you could add the option to add your own title to the download progress dialog in IntGetFile function.I can do it now but i have to clone many functions in order to do so or i have to create my own dialog.
unless i have missed something
Posts: 12,095
Threads: 142
Joined: Dec 2002
Macro
Macro2506
Http h.Connect("www.quickmacros.com")
h.SetProgressDialog(1 "aaaaaaaa")
h.Get("quickmac.exe" _s)
Posts: 1,338
Threads: 61
Joined: Jul 2006
ahh ok thank you didn't think about doing that.
Posts: 1,338
Threads: 61
Joined: Jul 2006
I cannot make this work for direct download links
example link
download/file.php?id=318
Posts: 12,095
Threads: 142
Joined: Dec 2002
Macro
Macro2508
;IntGetFile "http://www.quickmacros.com/forum/download/file.php?id=318" _s
;out _s.len
Http h.Connect("www.quickmacros.com")
h.SetProgressDialog(1 "aaaaaaaa")
h.Get("forum/download/file.php?id=318" _s)
out _s.len
Posts: 1,338
Threads: 61
Joined: Jul 2006
ah ok i see i needed to remove the /after .com works now for all i have tested thanks Gintaras