Attachmovie for a symbol, it loops continuously

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vpmurdan
    New Member
    • Feb 2007
    • 25

    Attachmovie for a symbol, it loops continuously

    Hi.
    I have a symbol with some animation in it.
    Proble is when I load it with attachmovie, the symbol plays continuously.

    I would want the symbol to play till the end and stay on the screen.

    could anyone pls help me.

    The code I used is shown below:
    Code:
    	anim1_mc = this.attachMovie("correctAnswer", "anim1_mc" , this.getNextHighestDepth());
    Thank you in advance for help

    Prakash
  • rsdev
    New Member
    • Jul 2007
    • 149

    #2
    On the last frame of your symbol movie.

    Code:
    stop();

    Comment

    Working...