Class Programme : getPeople Method


Array getPeople( Integer typeID )

Summary

returns an array of Strings for the people type used.


Parameters

ParameterDescription
Integer typeID Can be one of the following:

knGuests

knStars

knDirectors

knProducers

knWriters


Returns


An array of Strings for the people type used.


Examples

var arr = programme.getPeople( knStars );
if( arr.length )
{
for( i in arr )
{
menu.addItem( "Stars|" + arr[ i ], "onDoNothing" );
}
}


Requirements

Build 1059