Hi there,
I have got the following code (striped down to the main parts)
WindowsMediaPlayer _windowsMediaPlayer = "initialized for the current session"
IWMPMedia item = "a valid track within the current playlist";
// set the current track
_windowsMediaPlayer.controls.currentItem = item;
// play it..
_windowsMediaPlayer.controls.play();
while this is working at a pc, it won't at the XBox. The "play()" throws an exception "hardware not available".
Is there another way to play a specific track within the current playlist?
Kind regards,
Sörnt