Thank you its working, here is the code in case any one cares:
quote:
function OnEvent_MyMediaChange (new_media) {
playerHwnd = Interop.Call('User32','FindWindowW','Winamp v1.x',0);
var lBuffer = Interop.Call('user32', 'GetWindowTextLengthW', playerHwnd);
var sBuffer = Interop.Allocate(2*(lBuffer+2));
var Title = Interop.Call('user32', 'GetWindowTextW', playerHwnd, sBuffer, lBuffer);
Debug.Trace('sBuffer: '+sBuffer.ReadString(0));
}
Result is:
sBuffer: 3565. Jay-Z - Aint No Nigga ft. Foxy Brown : "Reasonable Doubt" - Winam
The only problem I got now is that its cutting off the last letter but its good enough.