2008-07-27, 05:25 AM
Is there a way to play live tv (or switch channels) in an inset. So far, when I've tried, the .StartLiveTV() call opens full screen even if I immediately follow it with a ShowInsetAtLocation call as follows:
I am trying to have the inset switch channels as they move thru SearchWiz entries that are currently playing on live tv (ie channel preview).
Code:
public bool ShowOnLiveTVWithInset(RectangleF rect)
{[INDENT]try
{ PluginHelperFactory.getPluginHelper().StartLiveTV(this.ChannelInfo);
PluginHelperFactory.getPluginHelper().ShowInsetAtLocation(rect);
return true;
}
catch (Exception e)
{
Logger.Error("ShowInfo: ShowOnLiveTV- EXCEPTION- " + e.Message);
Logger.Error(" " + Title);
}
return false;
[/INDENT]}
I am trying to have the inset switch channels as they move thru SearchWiz entries that are currently playing on live tv (ie channel preview).