We'll be learning how to use code to control the playback of our timeline. NOTES ARE VERY IMPORTANT TODAY!
Table of contents title: Introduction to Actionscript
What is Actionscript? It's a programming language inside flash that we can use to make flash projects interactive.
Steps for controlling playback
1. Create stop actions by placing
stop();
on the timeline
2. add frame labels on the properties menu
3. Create a button and add a statement to send the playback to a frame label.
on(release){
gotoAndPlay("start");
}
No comments:
Post a Comment