Gillboss Posted January 28, 2009 Posted January 28, 2009 When Itunes, WMP, or Winamp play song, they send to MSN Messenger which song playing. How can i get this current song playing? thanks
torels Posted January 28, 2009 Posted January 28, 2009 http://www.autoitscript.com/forum/index.ph...st&p=320381here is how you set ittry reversing it... (I sincerely haven't got a clue on how to do that!) Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org
Gillboss Posted January 28, 2009 Author Posted January 28, 2009 torels said: http://www.autoitscript.com/forum/index.ph...st&p=320381here is how you set ittry reversing it... (I sincerely haven't got a clue on how to do that!)its not answer my quetion.. its just change personal message, i need get the track name and artist name not trought MSN
Inverted Posted January 28, 2009 Posted January 28, 2009 There has to be a "normal" way to do it, maybe search the winamp forum.
Gillboss Posted January 29, 2009 Author Posted January 29, 2009 Inverted said: There has to be a "normal" way to do it, maybe search the winamp forum.not found :S
Inverted Posted January 29, 2009 Posted January 29, 2009 I have an idea : (With some option enabled) Winamp puts the corrent playing song in the taskbar, right ? So read it from there every few seconds :-)
syko Posted January 29, 2009 Posted January 29, 2009 I think maybe reading from the control of the media player should work =].
Gillboss Posted January 29, 2009 Author Posted January 29, 2009 lol how do all that? example can help me
Inverted Posted January 29, 2009 Posted January 29, 2009 (edited) Try this : $ProgName = "Winamp song reader" Opt("WinTitleMatchMode",2) $text = WinGetTitle (" - Winamp", "") if $text = "" Then MsgBox (0, $ProgName , "Winamp window or title couldn't be found") exit endif $text = StringReplace ( $text, " - Winamp", "") MsgBox (0, $ProgName , $text) You can also search/remove/use the [stopped] and [Paused] ... Also, in the General Preferences of Winamp you may want to uncheck the option that adds the playlist number to the taskbar title. Edited January 30, 2009 by Inverted
Gillboss Posted January 30, 2009 Author Posted January 30, 2009 Inverted said: Try this : $ProgName = "Winamp song reader" Opt("WinTitleMatchMode",2) $text = WinGetTitle (" - Winamp", "") if $text = "" Then MsgBox (0, $ProgName , "Winamp window or title couldn't be found") exit endif $text = StringReplace ( $text, " - Winamp", "") MsgBox (0, $ProgName , $text) You can also search/remove/use the [stopped] and [Paused] ... Also, in the General Preferences of Winamp you may want to uncheck the option that adds the playlist number to the taskbar title. yes i know this script, and i have one for itunes, but what about WMP?
Gillboss Posted January 30, 2009 Author Posted January 30, 2009 oh little quetion, if Winamp running on hiding mode, can i get track info? i guess not..
Inverted Posted January 30, 2009 Posted January 30, 2009 (edited) If WinExists("Windows Media Player") Then $songname = ControlListView ("Windows Media Player", "", "SysListView321", "GetText", 0,0) MsgBox(0, "", $songname) EndIf The above will return the first item in the playlist, I don't know how to see which one is playing :-( Edited January 30, 2009 by Inverted
Gillboss Posted January 30, 2009 Author Posted January 30, 2009 (edited) Inverted said: If WinExists("Windows Media Player") Then $songname = ControlListView ("Windows Media Player", "", "SysListView321", "GetText", 0,0) MsgBox(0, "", $songname) EndIf The above will return the first item in the playlist, I don't know how to see which one is playing :-( not working to me :S i get $songname = 0 can u test it on your pc? thx Edited January 30, 2009 by Gillboss
Inverted Posted January 30, 2009 Posted January 30, 2009 Of course I tested Maybe your playlist is empty, drap a couple of mp3s in there. WMP 11 here by the way.
Gillboss Posted January 30, 2009 Author Posted January 30, 2009 Inverted said: Of course I tested Maybe your playlist is empty, drap a couple of mp3s in there.WMP 11 here by the way.what about this?http://www.xtremevbtalk.com/showthread.php?t=265768there is solution in autoit?
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