Jump to content

Yahoo Messenger


Recommended Posts

I got to goofing with some code another user asked for help with and thought

others might like to play with it, the idea hit while thinking of my grandmother

she likes to chat but hates trying to remember/look for her password

You'll need to use a 'real' nick & password of course before using :)

#include <IE.au3>


$oIE = _IECreate ("https://login.yahoo.com/config/login_verify2?.src=wmsgr&.intl=us&.pd=c%3DB_VH9oa42e68KuzJEhSlKbE-&.done=http://webmessenger.yahoo.com/close.php?r=1968165161")

$o_form = _IEFormGetObjByName ($oIE, "login_form")
$o_login = _IEFormElementGetObjByName ($o_form, "login")
$o_password = _IEFormElementGetObjByName ($o_form, "passwd")
$o_signin = _IEFormElementGetObjByName ($o_form, ".save")

$username = "user_name"
$password = "12345"


_IEFormElementSetValue ($o_login, $username)
_IEFormElementSetValue ($o_password, $password)
_IEAction ($o_signin, "click")
Edited by Thamiel
Link to comment
Share on other sites

I got to goofing with some code another user asked for help with and thought

others might like to play with it, the idea hit while thinking of my grandmother

she likes to chat but hates trying to remember/look for her password

You'll need to use a 'real' nick & password of course before using :)

#include <IE.au3>


$oIE = _IECreate ("https://login.yahoo.com/config/login_verify2?.src=wmsgr&.intl=us&.pd=c%3DB_VH9oa42e68KuzJEhSlKbE-&.done=http://webmessenger.yahoo.com/close.php?r=1968165161")

$o_form = _IEFormGetObjByName ($oIE, "login_form")
$o_login = _IEFormElementGetObjByName ($o_form, "login")
$o_password = _IEFormElementGetObjByName ($o_form, "passwd")
$o_signin = _IEFormElementGetObjByName ($o_form, ".save")

$username = "user_name"
$password = "12345"


_IEFormElementSetValue ($o_login, $username)
_IEFormElementSetValue ($o_password, $password)
_IEAction ($o_signin, "click")
how about the chat window after logging in ym webmessenger? i tried to read the page source, it seems ym webmessenger is using flash applet, i can't figure out how to control it... do u have any idea?
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...