Motion path in Actionscript

Alright I’m trying to make a circular motion path using Senocular’s tutorial here.

What I want is a box to move around a circle motion path that is created in AS when the user presses a button. However I’m having trouble decifering all of Sencular’s code because there is a lot of advanced stuff that he puts in that I don’t want and I’m having trouble getting started. If anybody could set me down the right path I would be very grateful.

um…do you want a walkthrough of the whole tutorial or is there one part in partular you dont get. The math isn’t bad and once you get that its pretty straightforward

Check out the [U]Circular Movement[/U] tutorial, it might be easier for you. :slight_smile:

Kode- I don’t think that would really work for what I’m doing since I want it to move a certain direction depending on what key is pressed. And with that code you can really minipulate it so that it will find what place it is its route around the circle and move the other way if the user pressed the key to move it in the other direction. I don’t know maybe you could get it to work but I think Senocular’s method would be more reasonable for what I’m trying to do.

grandsp5- the main part I don’t get is the part with all the prototypes. I’m not sure what those do. I understand the other part of the code but what is it he is doing with all the prototypes.

so what is it you are trying to do exactly?

I want to do something similar to your race car game except the track is a perfect circle and the car (or movieclip) moves along it to the left or the right depending on whether I push the left or right button on my keyboard.

Oh yes, and I don’t need the easing thing you have where you let go of the button and it keeps moving a little bit.

[AS]var radius = 80;
var radians = 0;
var x = 100;
var y = 100;
this.createEmptyMovieClip(“car”, 0);
car.lineStyle(5, 0xCC0000, 100);
car.moveTo(0, -5);
car.lineTo(0, 5);
car.onEnterFrame = function() {
radians += (Key.isDown(39)-Key.isDown(37))*.1;
this._x = Math.cos(radians)*radius+x;
this._y = Math.sin(radians)radius+y;
this._rotation = radians
180/Math.PI;
};[/AS]
Like that?

Ahhh…thanks that is exactly what I wanted. Even though you didn’t use the motion path method I’m sure this is probably better.

Now I just have to get it edited to fit my game…thanks.

No problem, Digigamer.

I told you it would be easier… :wink:

hmm can you please explain how these three lines work?

[AS]
radians += (Key.isDown(39)-Key.isDown(37))*.1;
this._x = Math.cos(radians)*radius+x;
this._y = Math.sin(radians)*radius+y;
[/AS]

mainly just the first line and the +x and +y part on the end of the second two lines.

Thanks

These lines are explained in the tutorial (see link above).
[AS]this._x = Math.cos(radians)*radius+x;
this._y = Math.sin(radians)radius+y;[/AS]
As for this line…
[AS]radians += (Key.isDown(39)-Key.isDown(37))
.1;[/AS]
The Key.isDown method returns true if the specified key is pressed, false if not; which in numbers would be 1 or 0. That is:
[AS]// if the right arrow is pressed
1-0 = 1;
// if the left arrow is pressed
0-1 = -1;
// if both arrows are pressed
1-1 = 0;
// this number multiplied by .1 and we get .1, -.1, or 0.[/AS]
Bah… I suck, I can’t explain it. Could you help me here, senocular? :beam:

ok it makes more sense now. And I knew those lines where in the tutorial but they didn’t have the +x or +y on the end so I wasn’t sure what that was doing.

Also I want another line to be in the movieclip so I made another movie clip and dublicated the code and changed it to the new movie clip’s instance name but I want this one to move on “a” and “d” instead and I tried tracing getAscii() but when I plugged in the numbers it returned it didn’t work and it still moved when I pressed the left and right buttons. Here is the code:

[AS]var radius = 225;
var radians = 0;
var x = 225;
var y = 225;
var redxPos = redPaddle._x;
var redyPos = redPaddle._y = 225;
bluePaddle.onEnterFrame = function() {
radians += (Key.isDown(39)-Key.isDown(37))*.1;
bluePaddle._x = Math.cos(radians)radius+x;
bluePaddle._y = Math.sin(radians)radius+y;
this._rotation = radians
180/Math.PI;
};
redPaddle.onEnterFrame = function() {
radians += (Key.isDown(97)-Key.isDown(100))
.1;
redPaddle._x = Math.cos(radians)*radius+x;
redPaddle._y = Math.sin(radians)radius+y;
this._rotation = radians
180/Math.PI;
};
[/AS]

As you can see I’m trying to put the red one on the opposite side of the circle.

You need to define a variable for each object. :wink:
[AS]var radius = 225;
var x = 225;
var y = 225;
this.createEmptyMovieClip(“blue”, 0);
blue.lineStyle(5, 0x0000CC, 100);
blue.moveTo(0, -5);
blue.lineTo(0, 5);
blue.radians = 0;
blue.onEnterFrame = function() {
this.radians += (Key.isDown(39)-Key.isDown(37))*.1;
this._x = Math.cos(this.radians)radius+x;
this._y = Math.sin(this.radians)radius+y;
this._rotation = this.radians
180/Math.PI;
};
this.createEmptyMovieClip(“red”, 1);
red.lineStyle(5, 0xCC0000, 100);
red.moveTo(0, -5);
red.lineTo(0, 5);
red.radians = Math.PI;
red.onEnterFrame = function() {
this.radians += (Key.isDown(68)-Key.isDown(65))
.1;
this._x = Math.cos(this.radians)*radius+x;
this._y = Math.sin(this.radians)radius+y;
this._rotation = this.radians
180/Math.PI;
};[/AS]

thanks man. Your my new god. Btw, what was I doing wrong with the key thing. how did you come up with 68 and 65 when I got like 100 and 97?

You’re welcome. :wink:

And you can see the key code values in the Flash help files, but I usually throw this code in the movie, and press the key to see the code value:
[AS]this.onKeyDown = function() {
trace(Key.getCode());
};
Key.addListener(this);[/AS]