kyper Posted November 14, 2009 Posted November 14, 2009 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%')
AlmarM Posted November 14, 2009 Posted November 14, 2009 (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 November 14, 2009 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.
kyper Posted November 14, 2009 Author Posted November 14, 2009 Thanks AlmarM that was exactly what i wanted to know
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now