Recipe 10.2. Preventing the Movie from LoopingProblemYou want to prevent a movie from looping back to the beginning when it reaches the last frame. SolutionAdd a stop( ) action to a keyframe in the final frame, or set the HTML loop parameter/attribute to false. DiscussionYou can prevent a movie from looping by using a stop( ) action or by using HTML attributes to control the movie. To use a stop( ) action, complete the following steps:
To use HTML to prevent looping, create/change the loop parameter in the <object> tag, so that its value is false (e.g., <param name (exp 3pod.com)="loop" value="false">). Likewise, set the <embed> tag's loop attribute to false. As noted in Recipe 10.1, generally, using a stop( ) action is preferred over relying on HTML attributes. See AlsoRecipe 10.1, Recipe 21.1 |
Tripod >> 3pod Tips & Learning and manuals for educations