In an attempt at starting to code a scraper for TheMovieDB.vbs I'm having nice progress, however it seems that the 'Artist' and 'Album' are unavailable for video types, and 'Series' and 'Director' (their equivalents) are not yet available through the scripting interface.
Code: Select all
Sub Scrape(but)
Dim movies, movie, url, xml, i, searchText
Set movies = SDB.SelectedSongList
Msgbox(movies.Count)
For i = 0 To movies.Count-1
Set movie = movies.Item(i)
searchText = movie.Title
searchText = searchText & "+" & movie.Series
searchText = searchText & "+" & movie.Album
Set xml = LoadXMLWebsite(TMDBurl&searchText)
Msgbox(xml.xml)
Next
End Sub
MM 4.0.0.1358
Win7 x64
Script is running from a right click context menu.