spyrorocks Posted July 4, 2006 Posted July 4, 2006 OK, after a few hours of work, i have came up with a MSN UDF. I searched the board and found someone was supossibly working on one, but it was never realesed yet. MSN.au3 It is in its early stages and i plan to add more features. It currently supports the following functions: _msncreate() _msngetname() _msngetemailaddress() _msnsetstate() _msnlogoff() _msngetstate() _msnlogin() _msnopenchatwindow() _msnclosechatwindow() _msnsendtext() _msnwindowmembers() _msngetchattext() Im sorry, but the code isent documentated. Im just releasing it to see if there is any interest. If there is, i will documentate it. you should be able to figure it out. To capture incomming text, use the following code: #include<MSN.au3> $msn = _msncreate() while 1 sleep(100) wend Func _msn_OnTextReceived($IMSession, $IMUser, $MsgHeader, $MsgText, $Something) if $msgtext = "hello" then msgbox(0, "", "Someone said 'Hello' To you") endif if $msgtext = "logout" then _msnlogoff($msn) endif EndFunc So, what do you guys think? [center] My Projects: Online AutoIt Compiler - AutoForum - AutoGuestbook - AutoIt Web-based Auto Installer - Pure AutoIt Zipping Functions - ConfuseGen - MindReader - P2PChat[/center]
w0uter Posted July 4, 2006 Posted July 4, 2006 maby this wil also help you.http://www.autoitscript.com/forum/index.ph...ost&p=72301 My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
Wolfteeth Posted July 5, 2006 Posted July 5, 2006 Has anybody who made a code to tracert the logs from above MSN 7.0?
nfwu Posted July 6, 2006 Posted July 6, 2006 If you mean something to get the authencation cookie for a user's Live ID, password and challenge string from the Nexus, yes, that is possible. I believe it's in the _msncreate() function. (I have not looked at the source code yet) #) TwitterOut of date stuff:Scripts: Sudoku Solver | Webserver | 3D library (Pure AutoIt) | Wood's GadgetsUDFs: _WoodUniqueID() | _DialogEditIni() | _Console*() | _GetIPConfigData() | _URLEncode/Decode()
Daniel W. Posted July 7, 2006 Posted July 7, 2006 Same here... --------------------------------------------------------------------------------------------------------------------------------Scripts : _Encrypt UDF_UniquePCCode UDF MS like calculatorInstall programm *UPDATED* --------------------------------------------------------------------------------------------------------------------------------[quote name='Helge' post='213117' date='Jul 26 2006, 10:22 AM']Have you ever tried surfing the internet with a milk-carton ?This is similar to what you're trying to do.[/quote]
marfdaman Posted July 8, 2006 Posted July 8, 2006 And here... Don't take my pic to serious...~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~You Looked, but you did not see!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
AzKay Posted July 8, 2006 Posted July 8, 2006 Yepo, doesnt work for me either. # MY LOVE FOR YOU... IS LIKE A TRUCK- #
Richard Robertson Posted July 8, 2006 Posted July 8, 2006 Looks like a good try. According to most users, it doesn't work though. I've yet to try it myself as I've never needed such an implementation.
nfwu Posted July 10, 2006 Posted July 10, 2006 I'll attempt ripping apart spyrorocks' source code to identify the problem. I started on something similar but still have not bothered to finish it... Another project was more attractive. #) TwitterOut of date stuff:Scripts: Sudoku Solver | Webserver | 3D library (Pure AutoIt) | Wood's GadgetsUDFs: _WoodUniqueID() | _DialogEditIni() | _Console*() | _GetIPConfigData() | _URLEncode/Decode()
spyrorocks Posted July 12, 2006 Author Posted July 12, 2006 It only works for windows messenger guys [center] My Projects: Online AutoIt Compiler - AutoForum - AutoGuestbook - AutoIt Web-based Auto Installer - Pure AutoIt Zipping Functions - ConfuseGen - MindReader - P2PChat[/center]
w0uter Posted July 13, 2006 Posted July 13, 2006 You should really note that in your first post. Atleast mine/zero's worked on msn My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
spyrorocks Posted July 14, 2006 Author Posted July 14, 2006 sorry [center] My Projects: Online AutoIt Compiler - AutoForum - AutoGuestbook - AutoIt Web-based Auto Installer - Pure AutoIt Zipping Functions - ConfuseGen - MindReader - P2PChat[/center]
{NL}--Xantios--- Posted July 15, 2006 Posted July 15, 2006 Nice idea to bad that it doesnt work (yet) if you can get this working,then you would be my great hero !
neko Posted July 17, 2006 Posted July 17, 2006 Any one can give some example , how to use it ? Thank you very much
brodie28 Posted August 25, 2006 Posted August 25, 2006 I get this error with some of the functions... C:\Program Files\AutoIt3\Include\MSN.au3 (69) : ==> Subscript used with non-Array variable.: if not IsObj($object[1]) then return 0 if not IsObj($object^ ERROR How can I fix this?
Cyber Posted August 28, 2006 Posted August 28, 2006 brodie28 said: I get this error with some of the functions... C:\Program Files\AutoIt3\Include\MSN.au3 (69) : ==> Subscript used with non-Array variable.: if not IsObj($object[1]) then return 0 if not IsObj($object^ ERROR How can I fix this? You use AutoIT BETA? Console Browse: Navigate on the WEB in a textual consoleMultiPing!: Show computer on the lan and/or show the local/remote task, ALL animated!KillaWin: Event executingCryptPage: Crypt your webpage and show only with key
pingpong24 Posted August 28, 2006 Posted August 28, 2006 func _msnsendtext($win, $msg) if not IsObj($win) then return 0 $win.SendText($msg) return 1 endfunc How does this method work, I want to send a text to a window that is currently open. NumCR Super Fast EASY NUMBER OCR, easiest and the fastest AUTOIT OCR released on this forum
theguy0000 Posted September 22, 2006 Posted September 22, 2006 (edited) #include <MSN.au3> $msn = _msncreate() while 1 sleep(100) wend Func _msn_OnTextReceived($IMSession, $IMUser, $MsgHeader, $MsgText, $Something) MsgBox (0, "", "IMSession: "&$IMSession&@CRLF&"IMUser: "&$IMUser&@CRLF&"MsgHeader: "&$MsgHeader&@CRLF&"MsgText: "&$MsgText&@CRLF&"Something: "&$Something) EndFunc IMSession and IMUser both just come up as squares. I don't care about IMSession, but I need to see who it is sending me the message. Can I do that? edit: nvm, i got it. Edited September 23, 2006 by theguy0000 The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now