nake89 Posted July 27, 2006 Posted July 27, 2006 I have been trying to get the currently playing song from WMP for hours. I have searched the forum but nothing has worked for me. I am using the beta version. Could someone please help. I would just like to get the song and the artist and then make autoit type it to notepad or anywhere. Thank you. $oWMP = ObjCreate("wmplayer.ocx") $oWMPcontrols = $oWMP.controls msgbox(0, "omg", $oWMPcontrols.currentItem) That doesnt work... None of things I have tried works. And yes I have WMP on.
Lakes Posted July 27, 2006 Posted July 27, 2006 There is a really easy way to do this now, goto http://www.microsoft.com/windowsxp/downloa.../wm_create.mspxthis has a Blog plug-in that that Displays the track info in the Title Bar which auto can read from.HTH 2015 - Still no flying cars, instead blankets with sleeves.
fong1sky Posted February 9, 2007 Posted February 9, 2007 (edited) Any method I can get the current play time? Edited February 9, 2007 by fong1sky
Kip Posted May 3, 2007 Posted May 3, 2007 (edited) From CFire's script:Func WMStartPlayer() If $pObj = 0 Then $pObj = ObjCreate("WMPlayer.ocx") Else SetError(1) EndIf EndFunc Func WMOpenFile($sFilename) If $pObj <> 0 Then Return $pObj.newMedia($sFilename) If $pObj = 0 Then SetError(1) EndFunc Func WMPlay($sFilename) If $pObj <> 0 Then $pObj.url = $sFilename While Not WMGetState() = "Playing" Sleep(100) WEnd EndIf If $pObj = 0 Then SetError(1) EndFunc Func WMGetPosition() If $pObj <> 0 Then Return $pObj.controls.currentPosition If $pObj = 0 Then SetError(1) EndFunc Func WMGetArtist($sObj) Return $sObj.GetItemInfo("Artist") EndFunc Func WMGetTitle($sObj) Return $sObj.GetItemInfo("Title") EndFunc Edited May 3, 2007 by kip MailSpons: Fake SMTP server for safe email testing Dutch postcode & address API.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now