ActionScript 3.0 :: No Collision When Cursor Not Moving?
Mar 28, 2011
With AS3 I managed to resolve the problem I said in the thread, but now I face a new problem.If you hit the wall, it will register a collision as it should. Goes the same for the exit. But if you look to the upper left, there's a rotating rectangle. If you hit the rotating rectangle, it will register a collision IF YOUR CURSOR MOVED.That's right, if you freeze the cursor in place as the rectangle comes sweeping in, it WILL NOT register a collision, meaning if it were a maze game, people could cheat by just staying still.I forgot, here's the code:
Code:
stop();
stage.addEventListener(MouseEvent.MOUSE_MOVE, detectHits);
[code]......
View 2 Replies
Similar Posts:
Jan 16, 2012
I'm having a little problem with collision detection. I'm currently with very simple game, where the only thing that is off is the collision.I tried with hittestobject and (as I found) it checks for the outer layer (my objects are a circle, and a weird star), so this method was of no use to me. Then I tried with hittestpoint, and I found that it checks for the center of the objects, so game over happens only where the center of an enemy touch the center of my character.I know that I must have something missing and I found a lot of guides but all of them were with squares or with static objects
View 3 Replies
Jan 2, 2010
I have three objects in the main scene (so far), one of them is draggable (up and down only), then the animated one that moves downwards and the start button (activates the animation). So I've been trying to figure out how to script the collision detection for the first two? The collision should take place not because I dragged the slider onto the animated block, but because the falling piece hits the slider after I pressed the start button.
View 4 Replies
May 10, 2011
I am creating a scheduling application that shows projects (wrapped within a canvas) on a 2 week calendar timeline.If the user decides to move a project over by a day, i need to check and see if the moving project would then overlap with any other existing projects. If it does, one of the two projects would need to move down the screen along the y axis until the two projects no longer overlap.I've created a function that loops through a repeater item which is used to create the projects... the end result of this function is an arrayCollection that holds:
0. the id number within the repeater
1. the project title
2. x coordinate
3. y coordinate
4. the width of the project
5. the height of the project
I have also created a function that takes the two objects within the array collection and determines if they're overlapping.I can not, however, figure out a working loop that goes through the array collection, compares each item within it, checks to see if they overlap, moves the project if they do overlap, and then continues onto the next project.
Also, I need to make sure that moving one project will not make it overlap with another.I ended up having to reset each elements y value to 0 each time any project is moved and then re-evaluating whether or not they collide.
View 1 Replies
Feb 22, 2010
As the title says: Stop object from moving further when collision occurs.
Right now I'm trying to make a sliding puzzle. So far I have a block which I can click and drag around, and a few walls which are the boundaries. What I'm trying to do is make an area where the block can slide within the boundaries. So when you try to drag the block into an direction it will stop, whether you got mouse_down or mouse_up. My script so far
Code:
stop();
//Sliding Blocks
MCBlock1.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
[Code]....
Also I need to use a lot of boundaries, so if there's a way to apply this script easily to several objects
View 1 Replies
Feb 7, 2010
has anyone found an AS3 source/Maths-lib etc that covers not just simple collision tests but swept collision tests (at least swept AABB/circle tests) for fast moving objects? I had a quick look at flixel but even that does not seem to have sweep tests for fast moving objects.
View 2 Replies
Feb 24, 2012
I'm trying to implement a aabb to circle collision.
[Code]...
Somehow the collision does work as expected. Either they never move at all and "collided" was traced, or they'll continue moving and never collide when I tried swapping values around. Is there something i'm missing in my logic??? My box-box and circle-circle collision are working fine.
View 2 Replies
Aug 7, 2009
crate a moving eye along cursor.
View 2 Replies
Sep 10, 2009
I want to made a navigation system works like that [URL] when cursor move to witch side a movieclip moving. I made something like that
Code:
var iks = scena._x;
s1.onDragOver = function() {
if (iks /= 0) {
scena._x += +10;
}
}
It,s works but like onPress - i need to dragOver then dragOut and again dragOver to move. i want to loop it but how?
View 1 Replies
Apr 21, 2005
I have a fill-in-the-gaps exercise and I have added a hint button which checks to see which part of the word a student has entered is correct and then adds the next (correct) letter to the end of the string. My problem is that the cursor stays just in front of the added letter instead of going to the end of the string. I've tried selecting the letter that has just been added and for a second the last letter is highlighted but then the cursor goes back to its original place. Here's the code I'm using:
function showLetter() {
hints++;
//get the text the student has entered
currentWord = eval("gap"+currentGap).gap_txt.text;
[Code].....
View 3 Replies
Apr 21, 2005
I have a fill-in-the-gaps exercise and I have added a hint button which checks to see which part of the word a student has entered is correct and then adds the next (correct) letter to the end of the string. My problem is that the cursor stays just in front of the added letter instead of going to the end of the string. I've tried selecting the letter that has just been added and for a second the last letter is highlighted but then the cursor goes back to its original place. Here's the code I'm using:
[Code]...
View 2 Replies
May 22, 2009
I am using a magnifying glass as part of my portfolio but when I click on another section and this loads an external swf above the main movie, because you can still see the main movie below, you can see the magify glass still moving as you move the cursor above?any ideas how I can stop the magnify glass moving while i am on the external swf above?
View 29 Replies
Apr 25, 2003
I have 2 input text boxes. On entering the data in 1st input text and pressing "ENTER" key, the focus should move to the 2nd input text box. I tried this by method Selection.sefocus(<variable>), but the focus does not move to the 2nd input text. This in flash5.
View 4 Replies
Sep 8, 2009
so i have a project where i will be making a website. I will be using flash to make it interactive and visually appealing. I found a website with a really cool entrance page,please view it he mouse moves, the background looks like its moving.
View 3 Replies
Feb 14, 2009
Is there some way that I can disable the little cursor that comes when moving over an input field?
View 2 Replies
Nov 15, 2009
I'm making a text box where the user can type in whatever they want, but they can press "Enter" to make a new line. I am using the following code to do this:
PHP Code:
[Code]...
View 1 Replies
Jan 2, 2010
I'm working on a Curling game and have a broom moving back and forth based on the mouseX position. Although I thought it would be as simple as recording the current broom position vs. the previous broom position that's not the case. This is because when you move back and forth the current and last postion may be at the very same point, like the center of the screen, depending on when exactly the mouse position is recorded. So, moving the mouse very slowly may give the same result and moving the mouse super fast where the x coordinate just happens to be recorded at or near the same point.
I tried using both an enterFrame event and a timer. Both yielded essentially the same results. I can't think of a way around this off the top of my head. Is there another way to record how fast the user is moving the mouse back and forth?
View 2 Replies
Jun 25, 2009
Here is what I am working on. [URL]
I am creating an interactive map. It has little bullets that, when you hover over them, display a short description of the room and a link to another page. What I am trying to do is make it so that the user can hover off of the bullet, and onto the link to the seperate page, without the link and description disappearing because of leaving the bullet's "hit" area.
Do I have to define another hit area for the description and link somehow?
View 18 Replies
Mar 5, 2006
I need to make the background image move opposite the cursor to make it seem like the camera is moving.[URL]
View 1 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
Mar 18, 2010
I am making use of a custom cursor on itemRenderers in a List component. The custom cursor works just fine except when I mouse over the Text component which is a child of the itemRenderer at which point I get two cursors, the custom and an iBar one on top of the other.Here's the code:
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
[code].....
View 2 Replies
Apr 27, 2010
so the custom cursor I'm using works on the main timeline of my project. However, there are buttons in the application that load in movie clip pop-up windows and when this happens the cursor stays on the main timeline behind the movie clip resluting in the cursor not being seen. This is the code I'm currently using:
[Code]...
View 2 Replies
Jul 10, 2011
In as3, how do you change the cursor to the systems default busy/wait cursor (e.g. the spinning wheel on a mac)?
View 2 Replies
Aug 31, 2010
Working on a small kiosk app that runs in Firefox for Ubuntu. Mouse.hide() works for everything else, but the cursor is showing up in Firefox for Ubuntu
View 2 Replies
Jan 25, 2006
Is it possible to make a custom cursor with restraints (meaning you only see the cursor when you put your mouse in a certain spot, by defining both the max and min of the x & y), that is placed inside a movie clip; then make the movie clip move on the stage when you click certain buttons.
[Code]...
View 1 Replies
Jan 2, 2004
If I have a movie clip that has an onRollOver event, how do I turn the back into a pointing cursor from the gloved button cursor?
View 2 Replies
Jan 31, 2004
I am trying to make a simple game in flash it is a target shooting game i would like to make it so that the mouse cursor dissapears and a crosshair is shown as the cursor (if you get what i mean). I have created the crosshair and made it into a graphic symbol called: "crosshair" so what is the script i need to make it the cursor for the game
View 3 Replies
Jun 5, 2010
in the swf, when my mouse reaches a dynamic text box, the cursor always changes to the 'I' cursor and the text can be highlighted.how to prevent this from occurring?
View 1 Replies
Dec 19, 2009
For some strange reason, i cant get the precise cursor to work on the pencil tool. I prefer to use the pencil tool when drawing things. I usually use the brush tool for painting in the lines , or sketching something out. I did went to preferences, but even so, the pencil still doesnt turn into a precise cursor.
View 1 Replies
Oct 24, 2011
I'm working on an AS3 flash animation where I am using a custom cursor. At the end of the animation I want to default back to the regular arrow/hand cursor
View 7 Replies