Jump to content

Recommended Posts

Posted

hihihihhhiiii

i use macro's alot then my friend tell me about this so i decide to learn the language myself i was on vista but to much stress so now on win7 64bit. im very interested in learning the IE commands.autoit 1 2 3 dont seem to work for me dont know if script outdated or im jus a moron. i been cruising these forums for some hours there is tons of info i picked up some and some is beyond my grasp right now. i just need some links or whatever to get me on my feet then i can use threads as study tools.

this is my first script

#include <IE.au3>

$user = "joe02893@yahoo.com"

$pass = "xxxxxxxxxxxxxxxxxxxxx"

$oIE = _IECreate ("https://login.facebook.com/login.php?login_attempt=1")

_IELoadWait ($oIE)

$uForm = _IEFormGetObjByName ($oIE, "login_form")

$uText = _IEFormElementGetObjByName ($uForm, "email")

_IEFormElementSetValue ($uText,$user)

$pText = _IEFormElementGetObjByName ($uForm, "pass")

_IEFormElementSetValue ($pText,$pass)

_IEFormSubmit ($uForm)

_IENavigate ($oIE, "http://www.autoitscript.com/forum/index.php?")

my current project to help me learn is make a bunch of these login things like facebook myspace autoitscript.com yahoo and so on and goto my mailbox or message box or what have you for each site. and make a GUI with a dropdown menu for each site i can log into.

thank you for you're time

Posted

You forgot to post your question. Or are you even intending to ask something or is your post more like a comment than a query?

i need some links that would be helpful in my next steps of the project like how to link each login script to a drop down menu

Posted

You can look up the GUI* functions listed in the help file for information in constructing a GUI. You can also try using Koda to generate the GUI form code (don't know how to use it since I manually make my own GUI).

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
×
×
  • Create New...