Media Summary: Make a ball (movie clip) move across the stage following a sine wave path. NO TWEENS. The motion is done by action script. This video covers: -Translation -Vanishing Point Change -Rotation -Perspective Angle Change. Use action script to have a movie clip (star) move in a circle. Change the direction of the rotation.
Flash Tutorial 31 Object Follows - Detailed Analysis & Overview
Make a ball (movie clip) move across the stage following a sine wave path. NO TWEENS. The motion is done by action script. This video covers: -Translation -Vanishing Point Change -Rotation -Perspective Angle Change. Use action script to have a movie clip (star) move in a circle. Change the direction of the rotation. Hello today I want to show you how to instantiate You will be shown how to use AS3 to allow the ball to bounce off the wall and reverse directions. It will then bounce off a second ... Topics covered in this video: -Displaying the ruler -Showing and editing grids -Adding and editing guides -Using Align and ...
Here is the code: onClipEvent(enterFrame) { x=_root._xmouse y=_root._ymouse _x+=(x-_x)/10 _y+=(y-_y)/10 }