Jump to content

Recommended Posts

Posted

Hey guys :mellow: My question is how can i make my script click on a special link , for example clicking on all links that contain http://www.autoitscript/forum/ , I've searched a lot but couldn't find any solutions, and thanks.

Posted

Hi,

this is not tested, but should show the way and may works:

$oIE = IECreate ("http://www.autoitscript.com")
$oLinks = _IELinkGetCollection ($oIE)
;$iNumLinks = @extended
For $oLink In $oLinks
    If StringInStr ($oLink.href, "http://www.autoitscript.com/forum") <> 0 Then
        _IEAction ($oLink, "Click")
    EndIf
Next

;-))

Stefan

Posted

  On 2/16/2010 at 1:31 PM, '99ojo said:

Hi,

this is not tested, but should show the way and may works:

$oIE = IECreate ("http://www.autoitscript.com")
$oLinks = _IELinkGetCollection ($oIE)
;$iNumLinks = @extended
For $oLink In $oLinks
    If StringInStr ($oLink.href, "http://www.autoitscript.com/forum") <> 0 Then
        _IEAction ($oLink, "Click")
    EndIf
Next

;-))

Stefan

Thanks a lot :mellow:

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...