Actionscript 3 :: Collision And Movements Not Working?
Apr 12, 2012
I am trying to do an example of collision in Action Script 3. It's a character that should stop when it hits a platform. It works well when I move only to the right, left, up or down directions, but if I try to move in the diagonals, if the characteris colliding with the platform, the object goes to a different area of the screen.
var level:Array = new Array();
for (var i = 0; i < numChildren; i++) {
if (getChildAt(i) is Platform) {
level.push(getChildAt(i).getBounds(this));
[code]....
View 1 Replies
Similar Posts:
Mar 19, 2009
I am trying to get some collision detection working. What I have is a ball moving around the stage. There is a box in the middle which when the ball hits, I would like it to bounce off the box. I can get the x axis working fine using hitTestObject but when I detect for collisions on the y axis, the two axis conflict. Does anyone have a way of doing this properly?[code]
View 4 Replies
May 10, 2011
I'm making a game and ran into a problem I've been unable to figure out. The player is a boat, the boat can drop mines (via space key). I've created a Mine() Array in the init():
[Code]...
View 1 Replies
Apr 4, 2003
I can't seem to get hitTest to work for the plane in my little game. The code I'm using in the plane MC is:
[AS]if (_root.player.hitTest("_root.badguy"))
playerhealth -= 20;
}
[code]....
I want to the badguy plane to hit the player's plane and take a subtraction from the player's heath. I've fiddled around with using "this" instead of the full path of the playerMC - no success. My hitTest is working fine for the bullets!
View 3 Replies
May 17, 2010
Collision detection is not working for me. My objects are planes in 3D space.
1) I have tried hitTestObject function.
2) I have also read [URL] and tried it. With no success in both cases.
View 6 Replies
May 27, 2007
how can I make the collision detection working in my game?I find it really difficult because I have no idea where to start...What I want to do is, when the spaceship hit the asteroid, the game will over (jump to the "end" scene)
View 5 Replies
Oct 16, 2009
In my file (AS2), I have a small square at the middle of the page. Diagonally to the right, I have a vertical wall which is a rectangle. Pasted inside my small square, I have the code:
onClipEvent(enterFrame) {
if (Key.isDown(Key.RIGHT)) {
if (this.hitTest(Wall._x, Wall._y, false)) _x =
[code]......
View 1 Replies
Sep 13, 2009
It lets you move a Cube, with the arrow keys on the keyboard. This is the code.
Code:
function hearKey(yourEvent:KeyboardEvent):void{
if (yourEvent.keyCode==Keyboard.RIGHT){
cube_mc.x+=5
[Code]....
I keep pressing the down key down and also press the left key down...
now it moves left...(not so good, i want it to move both left and down, how do i do that?)
now i release the left key but am still on the down key....
View 1 Replies
May 13, 2010
Is it possible to copy the mouse movements, but rather than making a movieclip follow it exactly, to make up with the mouse move the movieclip up and left at a certain angle?
View 17 Replies
Mar 1, 2012
recording movements while dragging an object and when the object is dropped the record event will stop and the recorded movement will be animated by Play button.
View 1 Replies
Feb 23, 2004
I was wondering if there was a way to make movements confined to a certain order. I saw a DNA effect, and it was quite awesome.
View 5 Replies
Jan 24, 2009
I am working on an interactive guide with some sort of different maps that are supposed to move together depending on where you are if that makes any sense...well no it doesn't. ok the main clip pans side ways on mouse move using a tutorial from this website. And when this clip slides along x up to a certain point, I need to get two other clips to also slide to a precise point depending on the first one position, one only along x and the other one on both x and y. OF course i also have to set several key position on the mainclip to mave the two clip at a different place each time the main clip reaches a different point. For now I have been trying things using mc_tween2 like that:
[Code]...
View 2 Replies
May 22, 2002
i've got a little actionscript that makes a shape follow my mouse about the screen. it works fine when i place it in a layer. however, when the code is in a mc and i place the mc in my layer, then i get no joy.i expect i need a line like tellTarget when using buttons within a mc to target places outside the mc?
View 4 Replies
Aug 16, 2010
I have a credits button for a game. I want it when clicked to bring together two movie clips called top and bottom, then go to a frame labeled 2. I tried this code but it just freezes:
credits_button.addEventListener(MouseEvent.CLICK, CreditClick);
function CreditClick(event:MouseEvent):void {
while(top.y < 113) {
[code].....
View 2 Replies
Mar 11, 2009
i already made a working tooltip.now i want the tooltip to be dragged by the mousepointer movements....but the tooltip should always keep the same y-axis position....something like maybe:
Code:
startDrag("_root.tooltip", true);
y_mouse = 20;
View 1 Replies
May 26, 2011
So I'm designing a game for my flash class final, and I want to have my character spin based on mouse movements. So if I move the mouse to the left, character spins counterclockwise, to the right, clockwise. But I also need to have things spin with the character, like the gun he's holding. And if the gun shoots projectiles, how would I keep the direction of the projectiles constant with the character's direction? Also, I'm using wasd for walking, then the mouse for directional control, so how do I make it so W doesn't make the character go down in Y value, but it makes the character travel at a velocity in whatever direction it's facing (so if the character is facing like northeast, pressing W will make him walk northeast. Then pressing A facing the same direction would make him strafe northwest)?
View 1 Replies
May 18, 2011
I am working on a game in which I want a movie clip to move from one random location to another, with a pause in between each movement. I have written some code with thtutorials, but I can't get it to work the way I want it to. I am extremely new to ActionScript, so I'm probably doing everything wrong. Right now all my game does is pause for a certain amount of time, and then the object just jumps from one location to another extremely quickly and doesn't stop.
//movement of searchlight
var i:int;
for (i = 0; i < 5; i++)
[code]......
View 3 Replies
May 26, 2011
In ActionScript 3, I need to detect a sequence of movements made by the mouse when the button is down.I've read this question, and it seems a bit overkill. I only need to detect the 8 basic directions (up/down/left/right/diagonals), so that I can detect a "Z".
View 2 Replies
Feb 23, 2004
I was wondering if there was a way to make movements confined to a certain order. I saw a DNA effect, and it was quite awesome.
View 5 Replies
Nov 7, 2009
this is what i've managed to do so far:
[URL]
But as you can see it isnt smooth at all! Does anyone have any better code i can use?
This is the code i have written to do it:
Code:
var px = mouseX;
var py = mouseY;
this.addEventListener(MouseEvent.MOUSE_MOVE,moveMouse);
[Code].....
FLA: [URL] (you might have to right click on that and click "Save target as"
View 6 Replies
Nov 2, 2011
I am currently working on a interactive map that I am building in flash. I need to figure out if there is a way to code something so that we can have our map zoomed in, so it is only showing a section of the map in the veiwport at a time, but when the mouse reaches the edge of the screen I want it to automatically scroll with it, up, down, over, etc.
View 1 Replies
Feb 3, 2010
how can i give random movements for a movieclip on the stage.When i am trying this movieclip stopped after 3 or 4 movements.How can i do this
View 5 Replies
May 14, 2010
I have two different movieclips on my stage, one with a number of buttons and one with a moving object that I want to control with my buttons. The reason for having the buttons in their own movieclip is that I want to be able to move them as well. Let's say I have an object in "myMovieClip" that moves between three different positions when I press three different buttons, the buttons might say "up", "left" and "right".
[Code]....
How do I get my movements to start where it last stoped? If my object starts out at the "Up"-position and I press "Left", I want it to move from Up to Left and if I then press "Right" I want it to move from Left to Right. If my object is at Left and I press Left I want it to stay where it is.
View 1 Replies
Aug 5, 2008
i wanted to create scrolling gallery which loop continously without mouse movements
i have used oman3d.com dynamic scrolling gallery codei only wanted to scroll the dynamic gallery continously
ActionScript Code:
import mx.transitions.Tween;
import mx.transitions.easing.*;
[code].....
View 9 Replies
Feb 14, 2009
can you suggest me a tutorial for handling sidebar cursor movements according to the menu sliding? I need to update the position of the cursor, depending on the menu sliding position.
View 0 Replies
Jul 12, 2009
Does anybody know an easy way to duplicate a display object (placed with addChild() to stage, containing a square which moves and scales and rotates randomly around), and make the duplicate mirror vertically 'everything'. As if it's a water reflection?
I'm only simplifying my case, in reality the display object has complex and multiple moving objects with filters.
View 4 Replies
Jan 12, 2011
I am creating mouse scroller and when I insert actionscript my images wont move depending on the mouse movements..I am using Flash cs5 and Actionscript 2.0...this is my actionscript:
[Code]...
View 9 Replies
Sep 14, 2009
I worked on a new Flash project, but I cant seem to find a good solution for how I want my objects to collide. In my project I have: a Ball(moving object) and a Floor(not moving).
The ball is positioned over the floor and drops onto the floor through the gravity that is applied with the code.
[Code]...
Is there a way to have a global gravity in flash AS3. In which you could choose what objects you want to be affected by it? Is there a way to have a block of code that separates moving from still objects and will not let any objects collide(not overlap)?
View 1 Replies
Sep 14, 2009
In my project I have: a Ball(moving object) and a Floor(not moving).The ball is positioned over the floor and drops onto the floor through the gravity that is applied with the code.
[code]....
First: the -23 in the code is what I don't like. Second: every single object that deals with collisions would need to be put into the if statement.Is there a way to have a global gravity in flash AS3. In which you could choose what objects you want to be affected by it?Is there a way to have a block of code that separates moving from still objects and will not let any objects collide(not overlap)?
View 2 Replies
Jan 7, 2010
What kind of code would one need to check for collisions between two symbols? I am hoping to become a game designer so this is important for future references.
View 8 Replies