What Movie function tells the object to run it's play method? a movie.whenKeyUp(); b movie.whenKeyDown(); c movie.whenMouseClicked(); d movie.play();

Answered on

d) movie.play();

This function, when executed, will start the playback of the movie if it's a multimedia object designed with a play method. This is a direct command telling the `movie` object to begin playing.

Related Questions