Dynamic Processes

From MySLife DAS Wiki

Jump to: navigation, search

Contents

Topic Summary: In this topic you will develop ActionScript skills to demonstrate change through time. It will also help to control MovieClip properties through ActionScript.


Topic Assignments

Basic Motion Tips

Complete the Flash Tips for Basic Motion tutorial.

Suggestion: Create several versions with different behaviors.

Download and study the Dynamic Process Flash Skeleton (media:Dynamicprocess_skeleton.fla) and see if you can create a compelling simulation as part of your final project.

Suggestion: Create several versions with different behaviors.

Dynamic Process Flash Skeleton(requires Flash Player 8 or higher)


Notes and Comments

  • Animating a movie clip position code sample

onEnterFrame = function() {

   asteroid_mc._x = asteroid_mc._x + 5;
   if (asteroid_mc._x > 500) {
      asteroid_mc._x = 0;
   }
}

Update the Wiki:

  • Upload the assets (.SWF and .FLA) you create to your Wiki project page.


Update the Blog:

  • Write a Blog post about this topic, share your learning experience!


Related Links and Tutorials


Image:Icons-mini-icon_user.gifImage:Icons-mini-icon_user.gifImage:Icons-mini-icon_user.gif Students Contributions

Personal tools