Jump to content

Recommended Posts

Posted (edited)

I've a site that send an email every hour . Now i would like to open this email with autoit. How i can read automatically the email with autoit?.

How i can log in on hotmail site and red the email with autoit?

Thank's for help

hi!

Edited by AuToItItAlIaNlOv3R
  • Moderators
Posted

AuToItItAlIaNlOv3R,

  Quote

i'm creating a bot for a game

I take it you have not yet read this.

Please take the time to do so now as it will explain why you are unlikely to get much help here unless you seriously rewrite your post.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

  On 8/7/2010 at 1:33 PM, 'AuToItItAlIaNlOv3R said:

I just see IE library, but i dont understand how i can use this with hotmail site :blink: .

hi!

or you could just have outlook check your hotmail, and control outlook through com
Posted

  On 8/7/2010 at 9:21 PM, 'cameronsdad said:

or you could just have outlook check your hotmail, and control outlook through com

I have a lot of email addres to read, i found a faster method. Automate log-in on hotmail is one of the faster method. But how can i do it? Please help me :blink:

hi!

  • Developers
Posted

  On 8/8/2010 at 12:13 PM, 'AuToItItAlIaNlOv3R said:

I've already use IE library time ago, but now i dont know how can automate it with hotmail site. Can you give an example code? :blink:

hi!

Start some script yourself and come back when you have problems.

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

I've this script but dont work :blink:

#include <IE.au3>
Opt("WinTitleMatchMode", 2)
$oIE = _IECreate ("http://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1276621884&rver=6.0.5285.0&wp=MBI&wreply=http:%2F%2Fmail.live.com%2Fdefault.aspx&lc=1033&id=64855&mkt=en-us")
_IELoadWait ($oIE)
$o_form = _IEFormGetObjByName ($oIE, "f1")
$o_login = _IEFormElementGetObjByName ($o_form, "login")
$o_password = _IEFormElementGetObjByName ($o_form, "passwd")
$o_signin = _IEFormElementGetObjByName ($o_form, "SI")
$username = "YOUR_HOTMAIL_ADDRESS@hotmail.com"
$password = "YOUR_PASSWORD"
_IEFormElementCheckBoxSelect ( $o_form, "remMe", "", 0)
_IEFormElementSetValue ($o_login, $username)
_IEFormElementSetValue ($o_password, $password)
_IEAction ($o_signin, "click")

But dont work ;) Who can help me?

hi!

Posted

  On 8/9/2010 at 11:14 AM, 'AuToItItAlIaNlOv3R said:

I've this script but dont work :blink:

#include <IE.au3>
Opt("WinTitleMatchMode", 2)
$oIE = _IECreate ("http://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1276621884&rver=6.0.5285.0&wp=MBI&wreply=http:%2F%2Fmail.live.com%2Fdefault.aspx&lc=1033&id=64855&mkt=en-us")
_IELoadWait ($oIE)
$o_form = _IEFormGetObjByName ($oIE, "f1")
$o_login = _IEFormElementGetObjByName ($o_form, "login")
$o_password = _IEFormElementGetObjByName ($o_form, "passwd")
$o_signin = _IEFormElementGetObjByName ($o_form, "SI")
$username = "YOUR_HOTMAIL_ADDRESS@hotmail.com"
$password = "YOUR_PASSWORD"
_IEFormElementCheckBoxSelect ( $o_form, "remMe", "", 0)
_IEFormElementSetValue ($o_login, $username)
_IEFormElementSetValue ($o_password, $password)
_IEAction ($o_signin, "click")

But dont work ;) Who can help me?

hi!

Could you give some more detail as to how it's not working? check also _IEFormSubmit, instead of clicking login
Posted

  On 8/9/2010 at 9:01 PM, 'cameronsdad said:

Could you give some more detail as to how it's not working? check also _IEFormSubmit, instead of clicking login

He don't do nothing ;) He go to hotmail login page and dont do nothing. Anyone can fix it? :)

hi!

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...