What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » Winamp 2 Scrolling > Patch and Matty figure it out

Winamp 2 Scrolling > Patch and Matty figure it out
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
O.P. Winamp 2 Scrolling > Patch and Matty figure it out
hey guys, as you know i am dealing with greif for the lose of immy, so while i was surfing around the forum, i saw a post about people complaing that plus when you use the (!WAT) it will only capture what plus! sees in the taskbar, so i created the code that will find EXACTLY what its playing even if it is scrolling, now i dont have the time to create the code for the plugin and if any Visual Basic programmer out there wants to finish this for me then great (i will attach the code for the program (not the plugin code) to this thread

now there is an about window, and just pop your name into the plugin code part, but please leave the red text where it is, and what is says

well thats about all i have to say, so here you guys go, enjoy
(oh and the command could be something like (!WAT2))

ignore the first module, its just a standard one i make when i use api related programs
no need to change any of the code at all

if you just want to see what the program looks like (well the function to do it then here)

code:
Public winampTitle
Public Function winampSong2(frm As Form)

Dim winampvx As Long
winampvx = FindWindow("winamp v1.x", vbNullString)
Dim TheText As String, TL As Long
TL = SendMessageLong(winampvx, WM_GETTEXTLENGTH, 0&, 0&)
TheText = String(TL + 1, " ")
Call SendMessageByString(winampvx, WM_GETTEXT, TL + 1, TheText)
TheText = Left(TheText, TL)
If InStr(1, TheText, " - Winamp") Then
    TheText = Replace(TheText, " - Winamp", "")
    TheText = Replace(TheText, " [Stopped]", "")
    TheText = Replace(TheText, " [Paused]", "")
    For j = 1 To 500
        TheText = Replace(TheText, j & ". ", "")
    Next
End If
If TheText = "Winamp 2.91" Or TheText = "" Then
Else
    winampTitle = TheText
    frm.Caption = winampTitle
End If
End Function

This post was edited on 10-18-2003 at 03:36 AM by matty.
10-16-2003 07:10 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Winamp 2 Scrolling > Patch and Matty figure it out - by matty on 10-16-2003 at 07:10 PM
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by Patchou on 10-17-2003 at 07:01 AM
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by matty on 10-17-2003 at 02:47 PM
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by Patchou on 10-17-2003 at 05:35 PM
RE: RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by matty on 10-17-2003 at 06:46 PM
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by Patchou on 10-17-2003 at 11:38 PM
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by matty on 10-18-2003 at 12:08 AM
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by Patchou on 10-18-2003 at 12:36 AM
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by matty on 10-18-2003 at 12:46 AM
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by Patchou on 10-18-2003 at 01:42 AM
RE: RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by matty on 10-18-2003 at 03:25 AM
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin? - by dotNorma on 10-18-2003 at 01:48 AM
RE: Winamp 2 Scrolling > Patch and Matty figure it out - by Wabz on 10-18-2003 at 12:29 PM
RE: Winamp 2 Scrolling > Patch and Matty figure it out - by dotNorma on 10-18-2003 at 03:02 PM
RE: RE: Winamp 2 Scrolling > Patch and Matty figure it out - by matty on 10-18-2003 at 03:47 PM
RE: Winamp 2 Scrolling > Patch and Matty figure it out - by chris on 10-18-2003 at 05:59 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