-- Lingo syntax _movie.mergeDisplayTemplate(propList) // JavaScript syntax _movie.mergeDisplayTemplate(propList);
Movie method; merges an arbitrary number of display template properties into the existing set of display template properties all at once.
propList Required. A property list that contains the display template properties to merge into the existing set of display template properties. In Lingo, propList can be either a comma-separated list of name/value pairs or a comma-separated list of symbol/value pairs. In JavaScript syntax, propList can only be a comma-separated list of name/value pairs.
This statement merges a value for the title property into the displayTemplate:
-- Lingo syntax
_movie.mergeDisplayTemplate(propList(#title, "Welcome!"))
// JavaScript syntax
_movie.mergeDisplayTemplate(propList("title", "Welcome!"))
appearanceOptions, displayTemplate, Movie, propList(), titlebarOptions