Hi
The use of addTarget function in ActiveX V1 doesn't produce the same result in 0.8.x and 0.9.x.
In
0.8.x, theses lines were correct :
- activex.addtarget (
Adress1, Params, VLCPlayListReplaceAndGo, -666) >> the video 1 starts
- activex.stop
- activex.addtarget (
Adress2, Params, VLCPlayListReplaceAndGo, -666) >> the video 2 starts
- activex.stop
In
0.9.x, theses lines are not correct :
- activex.addtarget (Adress1, Params, VLCPlayListReplaceAndGo, -666) >>
the video 1 doesn't start
- activex.play >> you have to do a "play" for video 1 to start
- activex.stop
- activex.addtarget (Adress2, Params, VLCPlayListReplaceAndGo, -666)
- activex.play >> the video 1 starts instead of the video 2
- activex.stop
It isn't fixed by inserting delay between activex's calls. It isn't fixed by clearing the playlist with activex.playlistClear between the two addtarget calls (playlistCount is always set to 1). It was OK in the 0.8.x releases and in the very first 0.9.0 beta releases. It seems to be perhaps as in this bug ticket #1910 (
http://trac.videolan.org/vlc/ticket/1910) but it isn't fixed up to now.
Thanks for your great job !
Bye