Could anyone advise the best way to trigger a functiont when a movieclip animation finishes? I figure an eventlistener could handle this, but not sure the best way to go about it. Thanks Paul
feedback
|
|
There are a few ways to go about this:
In reference to point 3, I would create a base class for your object. This way you can apply the same logic to multiple elements being animated. Something like this:
Now we can listen for "animation_complete" and do stuff accordingly.
| |||
|
feedback
|
|
It's been awhile since I played with flash. I mostly do flex now, but this should work.
And in your code on your "root"
| |||
feedback
|
|
I do not believe there is an event broadcast at the end of a movieclip, you could always run a script on the last frame of an animation to execute what you want. If you really want to use events, the last frame of the movieclip could execute a script that utilizes dispatchEvent() to send a custom even which can be picked up. I'm not sure from your post if you have used eventhandlers before, so here's a tutorial on that (I'm not good at explaining, sorry!): http://edutechwiki.unige.ch/en/ActionScript_3_event_handling_tutorial and for dispatchEvent(): http://www.actionscript.org/resources/articles/204/1/Using-EventDispatcher/Page1.html | |||
|
feedback
|
|
You could use an enterframe listener that checks to see if the movieclip's currentFrame == totalFrames, and if they are equal, dispatch a custom event that you make (like TimelineComplete). Another option would be to create a small component that dispatches your custom TimelineComplete event, and place that component on the final frame of any animation you'd like to monitor. This would allow you to get more creative in the future and add things like a delay before the event is triggered. You've got a few options, none of which are ideal in my opinion, however they do work, and if done well they won't become unwieldy. The one thing I wouldn't do is add a little bit of code on the last frame. That gets rather hard to keep track of over time. | |||
|
feedback
|
|
By making use of an ENTER_FRAME listener, you can tell if a MovieClip has readed the end of playback; you can then take this one step further by wrapping it up in a Wrapper class that will perform the monitoring for you:
Usage is pretty straight forward; the call to destroy() is optional thanks to the weak event listener; but recommended if you are finished :)
| |||
|
feedback
|
|
You can create a custom CustomMovieClip.as:
TimelineEvent.as:
Main.as(document class):
| ||||
|
feedback
|
|
if looking for shortest solution i think it would be :
| |||
|
feedback
|