AzKay Posted September 8, 2006 Author Posted September 8, 2006 Well, For some reason, Its not working atall now, Last time, it filled out half of the textbox;s, now its filling out nothing. And, I replaced it with your code, still nothing >< # MY LOVE FOR YOU... IS LIKE A TRUCK- #
AzKay Posted September 9, 2006 Author Posted September 9, 2006 Hate to bump # MY LOVE FOR YOU... IS LIKE A TRUCK- #
banban Posted September 16, 2006 Posted September 16, 2006 (edited) #include <IE.au3>$username = "Test"$password = "Test"$email = "Test"$month = "1"$day = "1"$year = "2006"$oIE = _IECreate("http://www.gaiaonline.com/profile/character.php?mode=register",0,1,0)Sleep(3000)$oForm = _IEFormGetObjByName ($oIE, 1)$oUsername = _IEFormElementGetObjByName ($oForm, "username")$oPassword = _IEFormElementGetObjByName ($oForm, "new_password")$oPasswordConfirm = _IEFormElementGetObjByName ($oForm, "confirm_password")$oEmail = _IEFormElementGetObjByName ($oForm, "email")$oEmailConfirm = _IEFormElementGetObjByName ($oForm, "confirm_email")$oMonth = _IEFormElementGetObjByName ($oForm, "month")$oDay = _IEFormElementGetObjByName ($oForm, "day")$oYear = _IEFormElementGetObjByName ($oForm, "year")$oAgree = _IEFormElementGetObjByName ($oForm, "agreed")_IEFormElementSetValue ($oUsername, $username)_IEFormElementSetValue ($oPassword, $password)_IEFormElementSetValue ($oPasswordConfirm, $password)_IEFormElementSetValue ($oEmail, $email)_IEFormElementSetValue ($oEmailConfirm, $email)_IEFormElementSetValue ($oMonth, $month)_IEFormElementSetValue ($oDay, $day)_IEFormElementSetValue ($oYear, $year)_IEFormElementCheckBoxSelect ($oAgree, "yes") Edited September 16, 2006 by banban
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