Skip to main content
brianc30160325
Participant
September 27, 2015
Question

How do you create a play button in ActionScript 3.0/Flash CC Profesional

  • September 27, 2015
  • 1 reply
  • 515 views

How do you create a play button? I don't know how to. All the other tutorials are outdated or some crap.

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
September 27, 2015

play what?  a movieclip timeline:

play_btn.addEventListener(MouseEvent.CLICK,playF();

function playF(e:MouseEvent):void{

a_mc.play();

}