Jump to content

tax

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by tax

  1. Hey guys great code but can you create me one so, I can auto-log into my twitter account? because the code you have does't work I'd really appreciate it https://twitter.com/
  2. hey guys I like this code but it only work on certaint sites how do I get this to work for my google login? #include <IE.au3> #include <misc.au3> _IEErrorHandlerRegister() $oIE = _IECreate ("https://accounts.google.com/") $o_form = _IEFormGetCollection ($oIE, 0) $o_login = _IEFormElementGetCollection ($o_form, 0) $o_password = _IEFormElementGetCollection ($o_form, 1) $username = "user" $password = "pass" _IEFormElementSetValue ($o_login, $username) _IEFormElementSetValue ($o_password, $password) _IEFormSubmit ($o_form, False) $iTimer = TimerInit() ; Timeout timer
×
×
  • Create New...