tiger858 Posted September 29, 2013 Posted September 29, 2013 #include <IE.au3> $oIE = _IECreate("www.facebook.com") $o_form = _IEFormGetObjByName($oIE, "login_form") $o_login = _IEFormElementGetObjByName($o_form, "Email") $o_password = _IEFormElementGetObjByName($o_form, "Pass") ; Set field values and submit the form _IEFormElementSetValue($o_login, "Username") _IEFormElementSetValue($o_password, "Password") _IEFormSubmit ($o_form) Exit So after i log in to facebook i want to automatically post a status with this script (i think the id for the status box is "u_0_1d" ) and then open a new tab and log into gmail , the gmail log in script is the same i just don't know how to post and status open a new tab and then login to gmail
JohnOne Posted September 29, 2013 Posted September 29, 2013 _IENavigate() AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
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