Difference between revisions of "MovieClip:setStopAction"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Sets a *stop* action to the specified frame. When the movie clip reaches a frame <br /> with st...")
 
Line 8: Line 8:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
= MovieClip:setStopAction(frame,)
+
MovieClip:setStopAction(frame)
 
</source>
 
</source>
'''frame:''' (int) the frame number ''''''<br/>
+
'''frame''': (int) the frame number ''''''<br/>

Revision as of 11:17, 23 August 2018

Available since: Gideros 2011.6

Description


Sets a *stop* action to the specified frame. When the movie clip reaches a frame
with stop action, it stops playing. This function is usually used to divide
the animation into independent parts.

 MovieClip:setStopAction(frame)

'frame: (int) the frame number '