Tagged Questions

2
votes
0answers
34 views

Can you use iPod objects through iTunes COM SDK?

I am currently trying to use the tracks located in an iPod (not synchronised with the computer I use), in order to create a specific playlist. Is it possible to have a playlist/source that ...
1
vote
2answers
70 views

Get subscribed podcasts using ITunes SDK

How can I get a list of all subscribed podcasts using the Itunes SDK?
1
vote
2answers
269 views

C# iTuneslib COM only showing collection classes

After adding a reference to iTunes1.13typelibrary, and adding the using ituneslib; In the program, I created the itunesApp class, but in the iTunesLib namespace, there are no options for classes such ...
1
vote
2answers
201 views

accessing enums in a COM object [jscript]

How do I access an enum that is defined within a COM interface? Specifically, I've created a new instance of an iTunes.Application: var iTunesApp = WScript.CreateObject("iTunes.Application"); ...
1
vote
2answers
658 views

Need an explanation on iTunes COM persistent ID. Is the ID for a track same when its transferred to an iPod?

I am writing a JScript script with iTunes COM api for updating ratings and played count from the iPod database back into iTunes Library. In order to do so, the script should be able to recognize the ...
1
vote
3answers
946 views

how do i catch itunes events?

i have added this code iTunes.OnPlayerPlayingTrackChangedEvent += new _IiTunesEvents_OnPlayerPlayingTrackChangedEventEventHandler(iTunes_OnPlayerPlayingTrackChangedEvent); and this code ...