Forum: Winamp Technical Support
2nd December 2001, 09:33
|
|
Replies: 1
Views: 811
ok, here is the tweak
as I said, it is possible to tweak this by a two line code:
HWND WinAmpMenu=GetSubMenu(GetSystemMenu(plugin.hwndParent, FALSE), 0);
TrackPopupMenu(WinAmpMenu, 0, mousept.x, mousept.y, 0,...
|
Forum: Winamp Technical Support
2nd December 2001, 08:47
|
|
Replies: 1
Views: 811
|
Forum: Winamp Technical Support
2nd December 2001, 08:30
|
|
Replies: 1
Views: 1,184
here is a trick
You can use the WM_USER messages, to get the position in playlist, and set it to another value.
int TrackPos=SendMessage(plugin.hwndParent,WM_USER,0,125);
will retrieve the position of the...
|