-- Lingo syntax _movie.score // JavaScript syntax _movie.score;
Movie property; determines which Score is associated with the current movie. Read/write.
This property can be useful for storing the current contents of the Score before wiping out and generating a new one or for assigning the current Score contents to a film loop.
This statement assigns the film loop cast member Waterfall to the Score of the current movie:
-- Lingo syntax
_movie.score = member("Waterfall").media
// JavaScript syntax
_movie.score = member("Waterfall").media;