Reply to thread

Ok, I think I found the way to control the actions.


MediaPortal.GUI.Library.Action action = new MediaPortal.GUI.Library.Action(MediaPortal.GUI.Library.Action.ActionType.ACTION_MOVE_LEFT, 0, 0);

            GUIGraphicsContext.OnAction(action);


I have to test the functions but everything should work.

However I'm still interessed in getting the Class to use to get the feedback.

I noticed that it's possible to get the play state thru the Player class :


MediaPortal.Player.IPlayer IP = new IPlayer();

with IP.Playing, IP.Paused, ...

But I would like to use more functions.

Do I have to use Playlists.PlaylistPlayer, Playlists.Playlist, Playlists.PlaylistItem or others?


Thx,


Kevin


Top Bottom