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:
Patchou
Messenger Plus! Creator
*****

Avatar

Posts: 8607
Reputation: 201
43 / Male / Flag
Joined: Apr 2002
RE: Winamp 2 Scrolling > Any VB Coder wanna finish the plugin?
lol, don't be so sorry, it's very possible I under looked something. However, I checked again and everything seems the same, as you, I even remove " - Winamp" when I find it. For those interested, here is an excerpt of the Messenger Plus! code that gets the song title for Winamp 2.

code:
HWND hWinamp = FindWindow(_T("Winamp v1.x"), NULL);
if(hWinamp)
{
    TCHAR sTitle[1024]; ZeroMemory(sTitle, 1024*sizeof(TCHAR));
    GetWindowText(hWinamp, sTitle, 1024);
    if(sTitle[0] != '\\0')
    {
        //Remove everything after the WinAmp marker
        for(int i = _tcsclen(sTitle)-9; i > 0; i--)
        {
            if(_tcsnicmp(sTitle+i, _T(" - Winamp"), 9) == 0)
            {
                sTitle[i] = '\\0';
                break;
            }
        }
    }
}


Let me know what I didn't saw in your VB code that makes the difference, and sorry for being such a moron lol, I'm just not that used to VB code, I can only guess what it does. Btw, WDZ, what about fixing the <code> tag so that it doesnt puts double carriage returns on every line? :)
[Image: signature2.gif]
10-17-2003 05:35 PM
Profile PM Web 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