Flash: Creating a Play ButtonIn this tutorial I show you how to make a play button in Flash. The quality is a bit harsh (what did you expect from youtube :) ).
If you want a higher quality video or a description of the code I use for the button, go to this page: http://www.poopnsuch.com/creating-a-p...
You might have to register to view the page.
Here's the code used in this video (in case you couldn't read it):
this.stop();
play_button.addEventListener(MouseEvent. MOUSE_DOWN, playMovie);
function playMovie(event:MouseEvent):void { this.play();
}