2007-11-12, 07:04 PM
I am using version 1.1.5
here is the snippit of code I'm having trouble with. I have queued a playlist using AddAudioFileToQueue, and all seems to be fine.
int a, b, c;
IList l = myPluginHelper.GetAudioPlayList(out a, out b, out c);
log ("File Count: " + l.Count.ToString()); // accurate count of items
PluginHelperFactory.getPluginHelper().NextPlaylistTrack();
IList j = myPluginHelper.GetAudioPlayList(out a, out b, out c);
log("File Count: " + j.Count.ToString()); // 1, the currently playing track
Is it me?
Thanks
here is the snippit of code I'm having trouble with. I have queued a playlist using AddAudioFileToQueue, and all seems to be fine.
int a, b, c;
IList l = myPluginHelper.GetAudioPlayList(out a, out b, out c);
log ("File Count: " + l.Count.ToString()); // accurate count of items
PluginHelperFactory.getPluginHelper().NextPlaylistTrack();
IList j = myPluginHelper.GetAudioPlayList(out a, out b, out c);
log("File Count: " + j.Count.ToString()); // 1, the currently playing track
Is it me?
Thanks