Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Dim o
  2. Set o = CreateObject("MSXML2.XMLHTTP")
  3. o.open "GET", "http://air.radiotime.com/Playing.ashx?partnerId=<ID>&partnerKey=<key>&id=<station>&title=blank&artist=blank", False
  4. o.send
  5.  
  6. Function HandleLine(sLine)
  7. divisao = (sline)
  8. divisao = split(divisao,"-")
  9.  
  10. SongInfo.Value("artist") = (Trim(divisao(0)))
  11. SongInfo.Value("title") = (Trim(divisao(1)))
  12. SongInfo.Value("songtype") = "S"
  13.  
  14. SongInfo.DoSongChange
  15. End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement