Jump to content

Using _IE Link Click in a Variable array.


Regency
 Share

Recommended Posts

I have been trying to make a script that checks my msg inbox of a game, realizes if the words are there, then close all my scripts. So far i have been having trouble with it destinguishing if its true or false. There is no problem synax wise, but it cant realize if its there because it clicks it and then doesnt look at if its supposed to tell the script if its true or false. I didnt know. Any help?

Making this realize if its clicked the words or not. (The words about the script test are a link to open the msg)

#include <IE.au3> 
$mail = ""
MyFunction()
$mail = TimerInit()

While 1
    Sleep(10)
    $dif = Int(TimerDiff($mail)/1000)
    If $dif >= (10 * 60) Then 
        MyFunction()
        $mail = Timerinit()
        Endif
WEnd

Func MyFunction()
    $oIE=_IECreate("http://tmn5.bounceme.net/mail.aspx?")
_IELoadWait($oIE)
WinSetState("TMN2 - Bloody Vendetta - Microsoft Internet Explorer", "", @SW_MAXIMIZE)
If isarray (_IELinkClickByText ($oIE, "Automatic Script Test")) = 1  Then
    _iequit($oIE)
    exit
    Else
        If (_IELinkClickByText ($oIE, "Automatic Script Test")) = 0 Then
        _iequit($oIE)
        Endif
Endif                   
EndFunc  ;==>MyFunction
Link to comment
Share on other sites

What's up with the isArray test? How could that ever return an array?

Dale

Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl

MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model

Automate input type=file (Related)

Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded  Better Better?

IE.au3 issues with Vista - Workarounds

SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y

Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?

Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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