I’m new to this forum so please forgive my lack of knowlege with flash. I have a question, I imported an avi file into flash and now I want it to play whenever I press a button. How would I go about doing so? thanks in advance
Place your avi movie inside a movie clip and give it an instance name like “myMC” and for you button, place this action in it:
on(release) {
myMC.play();
}