Search tutorials
Let's add the scripts.
1. Create a layer on top of the motion guide and name it actions. 2. Put the following: _root.createEmptyMovieClip("cardioid",1); _root.cardioid.moveTo (225, 65.3); //The first line creates an empty movie clip that where we will trace our cardioid curve. //The second line initializes the starting position of our curve. 3.Right click on your moving circle and place the following script onClipEvent(enterFrame) { point = new object(); point.x = this.point_to_trace._x; point.y = this.point_to_trace._y; localToGlobal(point); _root.x=point.x _root.y=point.y //The above script changes the local coordinates of point_to_trace to the global (stage) coordinates //and stores them to the variable x and y on _root.» Level Intermediate |
Added: 2005-08-17 Rating: 4.83 Votes: 24 |
» Author |
A flash designer specializing in simulation of math and scientific concepts. |
» Download |
Download the files used in this tutorial. |
Download (0 kb) |
» Forums |
More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.
Comments
There are no comments yet. Be the first to comment!