Jump to content

kiu

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by kiu

  1. Hello Pheonix I found a bug; it's in the part where _ExecuteFromEmail function is calling _GetfromDirectLink function; first parameter contains the ^zip in it so the link is incorrect; _GetfromDirectLink function do'nt catch the error, so _ExecuteFromEmail crashes because $nArrays is not a array. My correction (simplest for me) was this: Local $nFile = GetfromDirectLink(StringTrimRight($sExecute, 4), @ScriptDir & 'Temp.' & $nType) Anyway, great job, i was using a script similar with this, but yours is much better; thank you, and maybe we'll expand it; I have some ideas, but I will post them later. Thanks , Paul edit: sorry for my bad english
  2. I tried something like this #include <IE.au3> $oIE = _IECreate() _IENavigate($oIE, "http://s1.bitefight.de/bite/login.php") $o_form = _IEFormGetObjByName($oIE, "l") $o_login = _IEFormElementGetObjByName($o_form, "user") $o_password = _IEFormElementGetObjByName($o_form, "pass") _IEFormElementSetValue($o_login, "username") _IEFormElementSetValue($o_password, "password") _IEFormSubmit($o_form) Exit but didn't succeed
  3. I want to autologin in this site: My Site I try to fill the login form and activate Login button I started to code a bot, and I can't activate any of that kind of button, like that in Login form The code from my bot is big, and you can't use it if you don't have an account to that web-game. I can activate some buttons inside the site using _IENavigate($oIE, $url, 0) $oForm = _IEFormGetCollection($oIE, 3) _IEFormSubmit($oForm) I just discovered that using 3 in _IEFormGetCollection($oIE, 3) work,
  4. Hi I'm trying to click a button wich controls a form. I have an embedded IE I think the html source for my button is <INPUT class=button2 value=Dificil type=submit name=dif3> I use this to get informations about my button, $oInputs = _IETagNameGetCollection ($oIE, "input") $x = 0 For $oInput In $oInputs MsgBox(0, "Form Input Type", "x = " & $x & "Form: " & $oInput.form.name & " Type: " & $oInput.type & " html: " & $oInput.outerhtml) $x += 1 Next but I don'n know how to activate it; I have tried with $oForm = _IEFormGetCollection($oIE, 3) _IEFormSubmit ($oForm) but I don't know how to use _IEFormGetCollection here. If you can give me an example, or advice, I will bw very pleased. ps: sorry for my englih Paul
×
×
  • Create New...