IE.au3 Hilfe.. D:

07/25/2012 23:31 Miichiii#1
Hallöchen :D
ich hab nur ne kleine Frage uuund zwar, weiß jemand wie man den Bug beheben kann, dass AutoIT die Buttons im IE nicht klickt? Normalerweise gehts ja mit
Code:
$oButton.click()
oder mit
Code:
_IEAction ($oButton, "click")
aber bei mir funktioniert keiner der beiden Wege..

Danke im Vorraus :)
07/27/2012 14:00 CantShutMyMouth#2
Look at my FaceBook auto login:

PHP Code:
#include <IE.au3> 
Call("Sign")
Func Sign()
   Global 
$oIE _IeCreate("http://www.facebook.com")
  
Local $email _IeGetObjByName ($oIE,"email"
  
Local $pass _IeGetObjByName ($oIE,"pass"
  
Local $login _IEGetObjById($oIE,"loginbutton")
_IEFormElementSetValue ($email,"your email")
_IEFormElementSetValue ($pass,"your password")
_IEAction($login,"click")
EndFunc 
07/29/2012 09:09 v1Dr333s#3
that didnt fixed the problem.
_IEAction($login,"click") doesent work for him(and for me).
07/31/2012 11:11 CantShutMyMouth#4
Give more of script,ill try to fix it.