-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By Tersion
Why I can't get more than two simultaneously background downloads?
Simultaneously background downloads with InetGet() works! It was just server limitation from which I downloaded files.
-
By TheAutomator
How can you get the downloads folder in AutoIT?
As far as i know there isn't a macro for it right? like @Downloads or something?
The ugly solution would be typing in the whole path but what if the user has chosen another location?
Need to clear that folder regularly on my work and on different accounts..
regards, TheAutomator
-
By jonson1986
Hello,
I'm having a condition to copy all urls, having same ending and starting pattern, from source code of a specific website, that's why I write autoit codes but it only copy very first matched url and exist.
Could you please help me how can I save all the available URLs matching with my pattern given in codes;
Here are codes
#RequireAdmin #include <Excel.au3> #include <IE.au3> #include <String.au3> #include <Array.au3> Local $oExcel = _Excel_Open() Local $oWorkbook1 = _Excel_BookOpen($oExcel, @ScriptDir & "\Urls.xlsx", True) ProcessClose ( "iexplore.exe") $file = fileopen(@scriptdir & "\source.txt", 10) $IE = _IECreate(_Excel_RangeRead ($oWorkbook1, Default, "A1"), 0, 0 ) $source = _IEDocReadHTML($IE) FileWrite($file, $source) $target_source2 = _StringBetween($source, 'http://example.com/posts/', '/"') If Not @error Then FileWrite (@scriptdir & "\links.txt", 'http://example.com/posts/' & $target_source2[0] & @crlf) EndIf Thanks
-