Jump to content

frp64

Members
  • Posts

    4
  • Joined

  • Last visited

frp64's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi, I'm spanish and I speak a little the english language. I think that the trouble is just the file that you have published it is the library au3, it isn't the application, where it's going to import the functions. Greetings
  2. Hi, maybe in this page you can meet anything. The link is: http://blogs.technet.com/b/heyscriptingguy/archive/2007/08/20/how-can-i-tell-if-a-wireless-network-adapter-is-connected-to-the-network.aspx Greetings, Frank Rodriguez.
  3. Hi, maybe that the title is bigger than "VTSYNC", I recommend you that add in your code, in the beginning, the next line: Opt("WinTitleMatchMode", 2) Regards
  4. #include <IE.au3> Opt("WinTitleMatchMode", 2) $oIE = _IECreate ("http://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1276621884&rver=6.0.5285.0&wp=MBI&wreply=http:%2F%2Fmail.live.com%2Fdefault.aspx&lc=1033&id=64855&mkt=en-us") _IELoadWait ($oIE) $o_form = _IEFormGetObjByName ($oIE, "f1") $o_login = _IEFormElementGetObjByName ($o_form, "login") $o_password = _IEFormElementGetObjByName ($o_form, "passwd") $o_signin = _IEFormElementGetObjByName ($o_form, "SI") $username = "YOUR_HOTMAIL_ADDRESS@hotmail.com" $password = "YOUR_PASSWORD" _IEFormElementCheckBoxSelect ( $o_form, "remMe", "", 0) _IEFormElementSetValue ($o_login, $username) _IEFormElementSetValue ($o_password, $password) _IEAction ($o_signin, "click") i get this error: --> IE.au3 V2.4-0 Warning from function _IEFormGetObjByName, $_IEStatus_NoMatch --> IE.au3 V2.4-0 Error from function _IEFormElementGetObjByName, $_IEStatus_InvalidDataType --> IE.au3 V2.4-0 Error from function _IEFormElementGetObjByName, $_IEStatus_InvalidDataType --> IE.au3 V2.4-0 Error from function _IEFormElementGetObjByName, $_IEStatus_InvalidDataType --> IE.au3 V2.4-0 Error from function _IEFormElementCheckboxSelect, $_IEStatus_InvalidDataType --> IE.au3 V2.4-0 Error from function _IEFormElementSetValue, $_IEStatus_InvalidDataType --> IE.au3 V2.4-0 Error from function _IEFormElementSetValue, $_IEStatus_InvalidDataType --> IE.au3 V2.4-0 Error from function _IEAction, $_IEStatus_InvalidDataType And yes i did change the "YOUR_HOTMAIL_ADDRESS@hotmail.com" and "YOUR_PASSWORD"
×
×
  • Create New...