What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » How to start off a plugin and how to make it simply change your name

How to start off a plugin and how to make it simply change your name
Author: Message:
Stigmata
Veteran Member
*****



Posts: 3520
Reputation: 45
20 / Other / Flag
Joined: Jul 2003
RE: How to start off a plugin and how to make it simply change your name
code:
Public Function ChangeNick(nick As String)
'functions changenick
'originally code by effekt
'altered to work better and with msn7 by stormsys

Dim msnmsblclass As Long 'Main MSN Window Variable
Dim edit As Long 'Edit Text Box Variable
Dim x As Long 'Options Window Variable

msnmsblclass& = FindWindow("MSBLWindowClass", vbNullString) 'Get Messenger Window HWND
DoEvents 'w8 for api to compleate what its dooing
PostMessage msnmsblclass&, WM_COMMAND, 40268, 0 'Show Options Box
DoEvents 'w8 for api to compleate what its dooing
x& = FindWindow("#32770", "Options") 'Get Options Box HWND
DoEvents 'w8 for api to compleate what its dooing
x& = FindWindowEx(x&, 0&, "#32770", vbNullString) 'Get Options Box HWND
DoEvents 'w8 for api to compleate what its dooing
edit& = FindWindowEx(x&, 0&, "edit", vbNullString) 'Get Edit Box HWND
DoEvents 'w8 for api to compleate what its dooing
SendMessageByString edit&, WM_SETTEXT, 0, nick 'Set Edit Box Text
DoEvents 'w8 for api to compleate what its dooing
PostMessage edit&, WM_KEYDOWN, VK_RETURN, 0 'Push Enter
'no there is absolutly no need for this 2nd enter
End Function


http://forums.msnfanatic.com/index.php?showtopic=11504
04-15-2005 04:42 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
How to start off a plugin and how to make it simply change your name - by jasonallen on 04-15-2005 at 04:36 PM
RE: How to start off a plugin and how to make it simply change your name - by TheGeek on 04-15-2005 at 04:39 PM
RE: How to start off a plugin and how to make it simply change your name - by jasonallen on 04-15-2005 at 04:40 PM
RE: How to start off a plugin and how to make it simply change your name - by TheGeek on 04-15-2005 at 04:42 PM
RE: How to start off a plugin and how to make it simply change your name - by Stigmata on 04-15-2005 at 04:42 PM
RE: How to start off a plugin and how to make it simply change your name - by matty on 04-15-2005 at 05:07 PM
RE: How to start off a plugin and how to make it simply change your name - by jasonallen on 04-15-2005 at 05:12 PM
RE: RE: How to start off a plugin and how to make it simply change your name - by matty on 04-15-2005 at 05:17 PM
RE: How to start off a plugin and how to make it simply change your name - by jasonallen on 04-15-2005 at 05:27 PM
RE: How to start off a plugin and how to make it simply change your name - by matty on 04-15-2005 at 05:29 PM
RE: How to start off a plugin and how to make it simply change your name - by jasonallen on 04-15-2005 at 05:46 PM
RE: How to start off a plugin and how to make it simply change your name - by matty on 04-15-2005 at 05:55 PM
RE: How to start off a plugin and how to make it simply change your name - by jasonallen on 04-15-2005 at 05:58 PM
RE: How to start off a plugin and how to make it simply change your name - by matty on 04-15-2005 at 06:04 PM
RE: How to start off a plugin and how to make it simply change your name - by jasonallen on 04-15-2005 at 06:21 PM
RE: How to start off a plugin and how to make it simply change your name - by matty on 04-15-2005 at 06:52 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On