REVIEW FOR LESSON 1

Click here to load reader

download REVIEW FOR LESSON  1

of 6

description

REVIEW FOR LESSON 1. Timeline Control. 1. When you encounter a problem, what’s the first thing you should do ?. If you get a compile error, go to the line that contains the error and fix it yourself. LOOK AT YOUR NOTES AND TRY TO SOLVE IT YOURSELF Ask a neighbor for help. - PowerPoint PPT Presentation

Transcript of REVIEW FOR LESSON 1

REVIEW FOR LESSON 1

Timeline ControlREVIEW FOR LESSON 1

11. When you encounter a problem, whats the first thing you should do?If you get a compile error, go to the line that contains the error and fix it yourself.LOOK AT YOUR NOTES AND TRY TO SOLVE IT YOURSELFAsk a neighbor for help.Raise your hand and ask the teacher for help.

22. Where should you write your code?On a new layer named actions that is locked. Double click on an object and write it thereOn the stageI dont know

33. What is ActionScript 3.0?

A panel in FlashA web siteA software program like Microsoft WordAn Object-Oriented Programming Language 44. You make a Flash animation that has 10 frames. How can you make it only play once?You cant, it always loopsGo to frame 10 and write STOP! on the stage Go to frame 10 and write stop(); in your actions panelGo to frame 10 and write Stop(); in your actions panel55. A Flash animation has 100 frames. How can you make it skip from frame 50 to frame 100 and stop?You cant, it always plays from the beginning to endOn frame 1 write skipToFrom(100,50);Go to frame 50 and write gotoAndPlay(100); in your actions panelGo to frame 50 and write gotoAndStop(100); in your actions panel

6