Hello, I am in search of a person with a good understanding of action script.
I have a fairly good knowledge of it myself, but I am in a position where I just don’t know what to do.
Here is my code:(I don’t know if BB code works here.)
onClipEvent (enterFrame) {
if (Key.isDown(Key.UP)) {
speed += 5;
}
if (Key.isDown(Key.DOWN)) {
speed -= 5;
}
if (Math.abs(speed)>20) {
speed = .7;
}
if (Key.isDown(Key.LEFT)) {
_rotation -= 15;
}
if (Key.isDown(Key.RIGHT)) {
_rotation += 15;
}
speed *= .60;
x = Math.sin(_rotation
y = Math.cos(_rotation
if (!_root.land.hitTest(_x+x, _y+y, true)) {
_x += x;
_y += y;
} else {
speed *= -.8;
}
}
This makes my symbol move around using the arrow keys, I need to someone to show me how to make a symbol that if touched by the other symbol (the one controlled by the arrows), will disappear. And one more thing, I would also like to know how to make walls that will send you to a position, like the starting spot.
You could tell me over these forums, or email me.
Any help is appreciated, thanks in advance,
YourTimeHasCome