Jump to content

IE doesnt work


Joke758
 Share

Recommended Posts

why? doesn't fill the form in the message

Func _hotmail($user, $subject, $message)
    $oIE = _IECreate ("http://hotmail.com", 0, 1)
    $o_form = _IEFormGetCollection ($oIE, 0)
    $o_name = _IEFormElementGetObjByName ($o_form, "login")
    $o_pass = _IEFormElementGetObjByName ($o_form, "passwd")
    
    _IEFormElementSetValue ($o_name, YOUREMAILHERE)
    _IEFormElementSetValue ($o_pass, YOURPASSHERE)
    
    $submit = _IEFormElementGetObjByName ($o_form, "SI" )
    _IEAction ( $submit, "click" )
    _IeLoadWait ( $oIE )
    
    $oIE = _IeNavigate ( $oIE, "http://by22fd.bay22.hotmail.msn.com/cgi-bin/compose?&curmbox=F000000001&a=07dbc459228078e3757682bc9a9f511a402e984638143dd6499fd5b04719737e" )
    $o_form2 = _IEFormGetCollection ($oIE, 0)
    
    $o_to = _IEFormElementGetObjByName ($o_form2, "to")
    $o_subject = _IEFormElementGetObjByName ($o_form2, "subject")
    $o_body = _IEFormElementGetObjByName ($o_form2, "body")
    
    _IEFormElementSetValue ($o_to, "grison4@hotmail.com")
    _IEFormElementSetValue ($o_subject, "hey")
    _IEFormElementSetValue ($o_body, "test")

EndFunc

why? and how can I submit?

[u]My Programs:[/u]Word Search Creator - Make your own Word SearchShortHand - Hide a secret message in a jpg fileHex Editor - Edit your Binary fileIncrease file size - Increase the size of any filesArt Generator - A program that generate random picture[u]My Functions:[/u]16-Bits Hash - My Hash function similar to MD5Probabilities - My probabilities function (factorial, permuation, combination)_GetDate() - Convert a date to a day of the week_Base(), _Dec() - Convert a number in any base (bin, oct, hex, dec). Create your own!

Link to comment
Share on other sites

No, put your account and pass to try my function

It doesn't works... weird

[u]My Programs:[/u]Word Search Creator - Make your own Word SearchShortHand - Hide a secret message in a jpg fileHex Editor - Edit your Binary fileIncrease file size - Increase the size of any filesArt Generator - A program that generate random picture[u]My Functions:[/u]16-Bits Hash - My Hash function similar to MD5Probabilities - My probabilities function (factorial, permuation, combination)_GetDate() - Convert a date to a day of the week_Base(), _Dec() - Convert a number in any base (bin, oct, hex, dec). Create your own!

Link to comment
Share on other sites

Just because you aren't using it correctly doesn't mean it doesn't work :)

There are 3 forms on that second page and you are getting a reference to the first one (index = 0). Try index = 2 instead.

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

I waqs refering to my script because it doesn't work. Thanks alot!

[u]My Programs:[/u]Word Search Creator - Make your own Word SearchShortHand - Hide a secret message in a jpg fileHex Editor - Edit your Binary fileIncrease file size - Increase the size of any filesArt Generator - A program that generate random picture[u]My Functions:[/u]16-Bits Hash - My Hash function similar to MD5Probabilities - My probabilities function (factorial, permuation, combination)_GetDate() - Convert a date to a day of the week_Base(), _Dec() - Convert a number in any base (bin, oct, hex, dec). Create your own!

Link to comment
Share on other sites

  • Moderators

It was your function that didn't work, not IE.au3. :)

#include <IE.au3>

_Hotmail("your-email@hotmail.com", "yourpassword", "someone@somewhere.com", "Test Subject", "Test Message")

Func _Hotmail($s_Email, $s_Password, $s_To, $s_Subject, $s_Body)
    $o_IE = _IECreate("http://hotmail.com", 0, 1)
    $o_Form = _IEFormGetObjByName($o_IE, "f1")
    $o_Name = _IEFormElementGetObjByName($o_Form, "login")
    $o_Pass = _IEFormElementGetObjByName($o_Form, "passwd")

    _IEFormElementSetValue($o_Name, $s_Email)
    _IEFormElementSetValue($o_Pass, $s_Password)
    _IEFormSubmit($o_Form, 0)
    _IELoadWait($o_IE, 500)
    
    $o_Links = _IELinkGetCollection($o_IE)
    For $o_Link In $o_Links
        If $o_Link.tabIndex = 1 Then
            $o_NewMessage = $o_Link
            ExitLoop
        EndIf
    Next
    
    If Not IsObj($o_NewMessage) Then Exit
    
    _IEAction($o_NewMessage, "click")
    _IELoadWait($o_IE)
    
    $o_Form = _IEFormGetObjByName($o_IE, "composeform")
    $o_To = _IEFormElementGetObjByName($o_Form, "to")
    $o_Subject = _IEFormElementGetObjByName($o_Form, "subject")
    $o_Body = _IEFormElementGetObjByName($o_Form, "body")
    
    $o_Links = _IELinkGetCollection($o_IE)
    For $o_Link In $o_Links
        If $o_Link.tabIndex = 1 Then
            $o_Send = $o_Link
            ExitLoop
        EndIf
    Next

    _IEFormElementSetValue($o_To, $s_To)
    _IEFormElementSetValue($o_Subject, $s_Subject)
    _IEFormElementSetValue($o_Body, $s_Body)
    _IEAction($o_Send, "click")
    _IELoadWait($o_IE)
    
    _IEImgClick($o_IE, "Sign out of .NET Passport sites", "alt")
    _IEQuit($o_IE)

EndFunc   ;==>_Hotmail
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...