ActionScript 3.0 :: Box2D Collision Categories - How To Work
Jan 13, 2011
I still have problem understanding how the collision category works. I'm only able to make it work by experimenting which is not good.
[Code]...
this works the way I wanted but only because I experimented around and found the right values (or at least values that work). I would prefer to know how the whole system works
View 6 Replies
Similar Posts:
Apr 12, 2011
i am listening contact between dynamic bodies. But cannot listen contact between dynamic and static bodies .
I can handle collision detection on my b2contactListener class with this metod.
public override function BeginContact(contact:b2Contact):void {
// getting the fixtures that collided
var fixtureA:b2Fixture=contact.GetFixtureA();
[Code].....
View 1 Replies
Jan 29, 2011
I'm making a Flash game where the player throws balls of mud at objects in the sky. I'm using Box2D to model the physics. I don't want the ball to bounce off of objects (apply a normal force); instead I want it to impart its momentum on the object it is striking (like a movie-style shotgun blast).
View 1 Replies
Mar 8, 2012
I am trying to test the collisions between a bullet and an array of enemies in Actionscript 2. However it is not sensing a collision.This is the code in the bullet.
onClipEvent(load)
{
facing = _root.player.facing;
speed = 1;
[code]....
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
Aug 15, 2011
how to create categories that can be updated via xml in flash? Categories can be shown in ComboBoxes..
View 1 Replies
Mar 7, 2007
i'm trying to sort out some xml entries based on an attribute when you click a button. an example of my xml is below.
Code:
<list>
<entries cat="all">
[code].....
View 14 Replies
Mar 14, 2003
I was wondering if there is a way to jump to a specific frame name when loading a new .swf file? For example, I have my Main.swf which holds the navigation. Then I created 5 other .swfs to hold the content.Depending what button is pushed, I will load the correct movie into a placeholder MC on the main screen.However, I want to jump to a specific point within the new movie, can I do that? I am loading by levels in which I am using the level 0 each time so the new page takes over and the previous page is not transparent seeing through. So, on the buttons, I am using the basic:
on (release) {
loadMovieNum ("content1.swf", 0);
}[code]....
I tried that, but could not get it to work. Also, since I am loading by level, does that sort of over ride my loading into placehold or what is the major difference?
View 3 Replies
Jan 21, 2010
I found a multiple drag to a single drop example here on the forums that works wonderful for the dragging and dropping part of my project. I am now trying to add in a sort of category detection. I have 45 movieclips located on the stage. They get set up with a loop, giving them a drag/drop functionality. The movieclips belong to one of 7 categories. The user can drag only 5 movieclips to a designated area. Once the 5 have been selected, I need to then figure out which category had the most selected. What would be the best way to set this up? Here is what I'm working with so far
PHP Code:
#include "mc_tween2.as"
stop();
[code].....
View 2 Replies
Sep 4, 2008
I have a cfc that returns categories from the database. Is there a way to dynamically create buttons for all the categories?
View 1 Replies
Mar 14, 2011
I am trying but I want to create Flash & XML Photo Gallery with Different Categories.
View 1 Replies
Dec 12, 2011
I am a designer trying to modify some ActionScript for a web project. When defining the variables, I would like for some of them to have multiple parameters/categories[code]...
View 2 Replies
Sep 9, 2010
I'm trying to populate a sub menu with categories from an xml file. There are many items each with different categories but some with the same, what im trying to do is get all the categories in the menu but not duplicate them.
View 1 Replies
Oct 14, 2004
are there any good examples on how to create a menu which gets the menu points from an external source? i'm not a native english speaker - hope you understand what i mean.preferably with submenu points... (drop down or hierarchial)
View 1 Replies
Feb 22, 2005
I have created an xml navigation and there are some differen categories in it.But now I want that the button will have a color that is his categorie.I used this code:
Code:
if( menuItem[i].attributes.cat == "Vector work"){
var myColor:Color = new Color();
this.myColor.setRGB(0xff0000);
}
But that won't do nothing.
[Code]...
View 1 Replies
Oct 14, 2004
are there any good examples on how to create a menu which gets the menu points from an external source? i'm not a native english speaker - hope you understand what i mean.
View 1 Replies
Feb 22, 2005
I have created an xml navigation and there are some differen categories in it. But now I want that the button will have a color that is his categorie. I used this code:
[Code]...
View 1 Replies
Oct 18, 2010
how to use Box2d?
View 4 Replies
Feb 18, 2009
I have xml video player. In the xml playlists i can different categories. Which video category i want to play i chose that from the drop down menu. Is there a way to somehow get the code so instead of dropdown menu in playlist for the playlist categories i would like to have two separate buttons for categories insted of drop down menu?
View 1 Replies
Sep 22, 2010
I have an xml that's looks like this:
Code:
<?xml version="1.0" encoding="utf-8"?>
<pics><category name="categoria1">
<image NAME="1" PATH="images/1.jpg" DESCRIPTION="SALAM"/>
<image NAME="2" PATH="images/2.jpg" DESCRIPTION="SALAM2"/>
<image NAME="9" PATH="images/3.jpg" DESCRIPTION="SALAM3"/>
[Code] .....
As you can see i have categories and inside the categories I have the pictures. What I want to do is every category to be displayed with a lower y position than the previous category. And in every category the picture to be arrange in the way presented in the picture below (x position for images = 0, the picture is just to make an idea).[URL]
My as3 code looks like this:
import fl.transitions.Tween;
import fl.transitions.easing.*;
var _total:int = 0;
var _categories:XMLList = null;
var _subCategories:XMLList = null;
[Code] .....
View 1 Replies
Apr 7, 2009
I've been working on Todd's Image grid viewer that can be seen here viewtopic.php?f=9&t=16158&p=82039
I wanted to add some category buttons so far its going well with the new xml.
Only I can't figure out the switch between the category button.
When i click on cat 1 Btn everything loads fine then when i click on cat btn 2 instead of reloading and "throwing" cat1 content away cat 2 content loads behind cat1 content...I hope that made sense.....
I have added the files, it's basically the same just a different XML and some tweaking on the XML load function. I didn't add the images since the file was to big, you can get the images from Todd's post. viewtopic.php?f=9&t=16158&p=82039
View 2 Replies
Aug 13, 2009
I'm trying to make a slideshow holding 3 images with 3 different categories. The images is loaded through an XML-file.
My xml looks like this: (the number after IMAGE[] indicates the category)
Code:
<?xml version="1.0" encoding="utf-8"?>
<SLIDESHOW SPEED="2">
<IMAGE1 URL="images/1.jpg"/>
<IMAGE1 URL="images/2.jpg"/>
[Code]....
View 8 Replies
May 25, 2007
[URL]
Basically i want to have Album categories the same way the thumbnails work so their is a mask limiting 4 categories on screen and when you click < or > arrows next to the categories it shows the next 4 categories that you would be able to choose from.
Then I would want it to load whatever category you selected into the thumbnails and the larger pic.
Does anyone know how to do this ? Or if their is another tutorial that would show me how to add categories into something like a gallery with thumbnails?
Apologies for being stupid and the poor grammar I've been searching everywhere to find out how i can add in some categories and still have it linked to the thumbnail scroller and larger images, but i haven't found any luck at all I just want it so you could add in as many thumbs and categories as you wanted and have those masked and scrollable rather then a dropdown.
I paid for some silly pdfs to explain it better to me but they did it in a way that I didn't like and turned out just to be a waste of money. Learnt my lesson and signed up here to ask the pros! I want to create something that can be updated from just an xml file.
View 4 Replies
Aug 20, 2010
I recently did a quick demo on my site of Box2D (Box2DFlashAS3) with source code. Its basically just the HelloWorld example from the v2.1a distribution, but with a few tweaks. The most notable is that my version does not require a Flash FLA file to compile and run, its pure AS3. Simple and a good base to build on:
http:[url]........
View 3 Replies
Dec 17, 2011
Anyone know how to get BOX2D physics engine working on iOS? It seems to work on the adl tester but not when I actually test it on the device.
View 1 Replies
Jan 3, 2011
I'm making a game like Arkanoid and to move the ship with mouse, I'm using the following code :
var mousex:int = costume.stage.mouseX;
if (mousex < paddleWidth/2)
mousex = paddleWidth/2;
else if (mousex > PhysiVals.STAGE_WIDTH - paddleWidth/2)
[code]....
Everything's going fine there! The paddle is moving the way it should! The problem is I want a little inclination towards the direction its moving and when it stops moving the angle of inclination should become zero.
View 1 Replies
Mar 2, 2011
Here: Flash game
There is a flash game called garbage separator. In this game, there is a conveyor belt.
With 2 Circles you can move the conveyor and I think you can use boxes with joint for belt but i dont know how to give it the form:
Circular Form
How to do this with Box2d?
View 1 Replies
Apr 14, 2011
I'm using sensors in a Box2D project. On a collision with a sensor, I'd like to know the sensor's position in the world. I'm detecting the collision with a contact listener, but the sensor's position is always 0 0.
From my code: (edit, added the whole class)
public class MyContactListener extends b2ContactListener {
public var onSensorEvent:Function;
override public function BeginContact(contact:b2Contact):void {
if(contact.GetFixtureA().IsSensor()) {
var ud1:GameEntity = contact.GetFixtureA().GetBody().GetUserData();
[Code] .....
View 1 Replies
May 17, 2011
I have one question for your.This code I took from the site
ActionScript Code:
package {
import flash.display.Sprite;
[code]......
View 6 Replies
Nov 30, 2010
I need to click over an object in Box2D. Need to know which object i have clicked, and to delete that object. How could i know, which object i have clicked?..
View 1 Replies