Class ViewManager : showProgrammeInfoPopup Method


void showProgrammeInfoPopup( Programme programme, Point point )

Summary

Show the programme info popup window for the specified programme


Parameters

ParameterDescription
Programme programme The programme you wish to display
Point point The point where you want the top left of the popup to to appear.


Examples

The code below shows all programmes in the info popup.

WARNING: If you run this it's likely you'll run out of memory and will have to End Task digiguide.

var point = new Point;
point.x = point.y = 100;

var listings = app.getListingsManager();

var channels = listings.getChannels();
for( nChannel in channels )
{
var channel = channels[ nChannel ];
var arrProgs = channel.getProgrammes();

for( i in arrProgs )
{
app.getViewManager().showProgrammeInfoPopup( arrProgs[ i ], point );
}
listings.clearProgrammeCache();
}


Requirements

Build 1100