Jump to content

Recommended Posts

Posted

im new to AutoIt and im trying to make a script that starts with an InPutBox which prompts for my email password then opens IE to the hotmail sign in page and enter my e-mail address then enter what my password was from the InPutBox.

this is my script so far

InputBox('%title%', 'Password')

Run("C:\program files\internet explorer\iexplore.exe http://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1256512281&rver=6.0.5285.0&wp=MBI&wreply=http:%2F%2Fmail.live.com%2Fdefault.aspx&lc=1033&id=64855&mkt=en-us")

WinWait( "Sign In", "Done" )

Send( "%myemailaddress%")

Send('{TAB}')

Send('%password%')

Posted (edited)

First of all,

Welcome to the forums :)

About your problem, mayby this small example could help you. ^^,

$Email = InputBox("Auto-Login", "Enter your email.")
$Password = InputBox("Auto-Login", "Enter your password.")
; ...
Send($Email)
Send($Password)

AlmarM ;)

Edited by AlmarM

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

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