Jump to content

Recommended Posts

Posted (edited)

I'm making a script that will download a whole bunch of zip files off of a web page. All the links text are something like

Core Data
So, I'm getting every link, then narrowing it down into an array called $datalinks using StringRight.

#include <ie.au3>

;Declare global variables
Dim $ie, $links, $datalinks[1], $i
$i = 0
$ie = _IEAttach("test")
;Generate list of <a ...> tags
$links = _IETagNameGetCollection($ie, "a")
For $link in $links.Elements
;If it's a **** Data link then $datalinks[$i] = $links.Elements($i)
    If StringRight($link.InnerText , 4) = "Data" Then
        ReDim $datalinks[UBound($datalinks, 1) + 1]
        $i = $i + 1
        $datalinks[$i] = $link.InnerText
    EndIf
Next
$datalinks[0] = $i

I'm getting an error at

$links = _IETagNameGetCollection($ie, "a")

It just says "The requested action with this object has failed"

Please help

~cdkid

Sorry, nevermind, I found the problem disregard

Edited by cdkid
AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...