ActionScript 3.0 :: Moving Multiple Bullets?

Jan 31, 2010

I'm working on a simple top-down zombie shooter to teach me better AS3 practices. There's one player, can shoot multiple bullets, and a certain number of zombies on screen at once, that increment by one when all of the previous ones are dead.

So, I have everything working great except for one thing: even though I'm spawning multiple bullets, and they go in the correct direction at the right speed, only one moves at a time.

Here's the code for spawning bullets:

Code:
// shoot - check to see if the gun can shoot, then shoot it
private function shoot():void
{

[code]....

I have a similarly structured pair of functions for the zombies, and they chase after the player just fine. If I trace a bullet's name when it collides with a zombie, it always returns 0. I've tried changing the number of bullets that can be spawned, but it remains the same.

Also, the moveBullets function is called from gameLoop(), which is itself called from an event listener for ENTER_FRAME. The movePlayer and moveZombies functions I have are also called from gameLoop.

View 6 Replies


Similar Posts:


ActionScript 3.0 :: Firing The Multiple Bullets?

Jun 18, 2007

I have written the code below which restricts the number of bullets fired, but each bullet fired travels at a different speed to the last and when another bullet is fired the previous one disappears from the screen. Please can anyone give any guidance ?
 
import flash.display.MovieClip;import flash.events.KeyboardEvent;import flash.events.Event;import flashx.textLayout.formats.BackgroundColor;
var speed:Number;speed = 10;var shootLimiter:Number=0;

[code]....

View 5 Replies

ActionScript 3.0 :: Shooting Multiple Bullets - Press The Space Bar The First Bullet Disappears And The Bullet Animation Starts Again

Nov 24, 2008

I'm trying to make my platform game character shoot a gun, my character and gun are one movieclip and the bullet is another. The bullet mc starts on a blank frame with a stop() function, when I press the space bar the bullet mc plays from frame 2 which is a motion tween of the bullet quickly moving across the page. I've set the bullet's y and x values relative to the character mc so that the bullet always comes from the gun.

My issue is that if I press the space bar a bullet will fly out of the gun (great!) but if I press the space bar again, the first bullet disappears and the bullet animation starts again. I want to be able to shoot a new bullet every time I press the space bar without effecting the bullets that have already been shot.

[Code]....

View 3 Replies

Moving An Object In Multiple Frames

Jun 12, 2010

I'm new to Flash and just started working on an animated short. In one of the sequences, I realized too late that an object was too far left in the frame and needed to be moved back. Is there a way to do that in all of the keyframes at once rather than doing it one at a time? The thing that needs to be moved is a .png file, not a symbol.

View 1 Replies

Moving Multiple Layers To Top Of The Stage?

Aug 13, 2009

I purchased a flash home page template that had menu buttons at the top that I decided not to use. I removed the buttons, but now there is a 125 pixel blank horixontal space at the top of the stage. I tried resizing the horizontal size of the stage hoping the artwork would move up and eliminate the blank area, but the stage sizes from the bottom up. The layers get cutoff at the bottom and the blank space is still at the top.

The movie is quite complex with many layers and 450+ frames. Have attached the swf file to illustrate how the top of the stage is empty after I removed the menu buttons. Is there any way to get all of the layers to move up by 125 pixels so that they fill in the blank space without having to do each layer one at a time?

View 2 Replies

Moving Multiple Scenes In To One Timeline?

Nov 18, 2009

Is there a way to do this? I am just now hearing of (and experiencing) all the downfalls of using scenes to create an interactive website. I may have to start the whole thing over at the mid point if there isn't a way to convert it into one It will save a week's worth of work!

View 1 Replies

ActionScript 3.0 :: Moving Multiple Moviclips At Once ?

Sep 3, 2009

I'm trying to alter the registration point of a movieclip that has multiple movieclips within it.

I've entered edit mode of the movieclip using the 'to Stage' alignment option and am trying to align all the display objects within the movieclip at once. I've packed all the objects into a group and am trying to align the left most edge of the group to the registration point.

My problem is that every object's left edge is snapping to the registration point, not just the left most edge of the group.

I thought the whole purpose of grouping objects together was so you could move them as though they are one object.

View 1 Replies

ActionScript 2.0 :: Generate Multiple Moving Barriers?

Apr 1, 2010

I have a simple game going now with a character running forward and I have to jump and duck under barriers. I was able to make it all work so that one of my three random barriers I made comes at a random time at you. However, I don't know how to make it so that multiple barriers come at you. I feel I need some sort of loop. How should I alter the code I have already? This is on one of the barrier moveclips, the first part sets the platform and position to come at you and the second part moves that part towards you. P.s. this is in cs4.

[Code]...

View 0 Replies

ActionScript 2.0 :: Flash MX : Attaching & Moving Multiple Mc's

Dec 7, 2004

Making a random motion "node Nav" where the square nodes attach by a line to another square. I have the first one made and working good so now i need to add the others and I would like to do this without 'onEnter'

[Code]...

but I am stuck 'cause I cant access the movieclips ._x and ._y positions in the same manner (makes me think the method for attaching the movie is not the best route)

[Code]...

View 2 Replies

ActionScript 2.0 :: Moving Multiple Items Using OnEnterFrame?

Jul 19, 2007

I am trying create to move objects (boxes, named box_1, box_2 etc) to positions on the stage (xPos_1, xPos_2 etc) using onEnterFrames. I can make all the boxes move individually, but I cant get them to move together. I am using the following code in an attempt to move 3 boxes.

[Code]....

View 2 Replies

ActionScript 2.0 :: Flash MX : Attaching & Moving Multiple Mc's?

Dec 7, 2004

Making a random motion "node Nav" where the square nodes attach by a line to another square.I have the first one made and working good so now i need to add the others and I would like to do this without 'onEnter' i have:

this.attachMovie("squareNode", sNode, this.getNextHighestDepth());

i know i can attach as many as i want by looping:

this.attachMovie("squareNode", "sNode"+x, this.getNextHighestDepth()); x++

but I am stuck 'cause I cant access the movieclips ._x and ._y positions in the same manner (makes me think the method for attaching the movie is not the best route)

View 1 Replies

ActionScript 2.0 :: Code To Generate Multiple Moving Barriers?

Mar 31, 2010

So I have a simple game going now with a character running forward and I have to jump and duck under barriers. I was able to make it all work so that one of my three random barriers I made comes at a random time at you. However, I don't know how to make it so that multiple barriers come at you. I feel I need some sort of loop. How should I alter the code I have already? This is on one of the barrier moveclips, the first part sets the platform and position to come at you and the second part moves that part towards you. P.s. this is in cs4.

[Code]...

View 1 Replies

ActionScript 3.0 :: How To Create Bullets

Mar 8, 2010

how to create bullets in as3? I have a main character = hero.mc Basically I need to store the bullets in an array and have them firing from the hero. It sounds simple enough, but for some reason I can't get it to work.

So far I have this:

Quote:

private var bullets:Array;
public function createBullets() {
bullets = new Array();

[code]....

View 15 Replies

MX Shooting Bullets In Any Direction?

Jun 28, 2011

I need a code in AS2 that launches a bullet ("bullet") from the character ("hero") towards wherever you clicked the mouse.For example, if I click somewhere, I want the bullet to launch straight towards where I clicked.

View 10 Replies

How Add Bullets To Flash Text

Jan 11, 2007

How do I add a bullet to Flash text? I know that alt0149 isthe html code. In the Flash text box and before the first textcharacter, I tried pressing the ALT key and simultaneously typingin 0149. Nothing happened.A similar question was asked on this forum... the answer wago to the Character Map (where is that) or use dynamic text (Itried putting alt0149 in the dynamic text box ??? but it didn'tork).My work-around so far is to copy a similar bullet and add itto the text box. But there must be a quicker way.

View 7 Replies

ActionScript 1/2 :: Bullets Only Shoot 1 Way?

Mar 4, 2012

this is in my bullet movie clip on the timeline.[code]It all works but when i turn around it still shoots the same way im sure its something simple but i just cant work it out.

View 7 Replies

Flex :: List Bullets In 4.5?

Jul 27, 2011

Is it possible to add bullets to a Label in Flex 4.5 mobile development?something like this:

.Item
.Item
.Item

View 3 Replies

ActionScript 3.0 :: Add Bullets To A Text?

Apr 25, 2011

is there any way to add bullets to a text?(ul or li are not working..)

View 1 Replies

ActionScript 2.0 :: Getting Bullets To Work Properly?

Mar 19, 2005

I've got a mouse controlled person who fires circle bullets up towards oncoming enemies. but since i duplicated them, only the first bullet fired works as it is the only one that has the right instance name.What I mean is :The bullet is instanced bullet When it is duplicated to be fired, it changes to bullet1,bullet2 ect etc The hittest script on the enemies only reconize bullet, and therefore ignores all other shots except the first is there anyway of making it so it reconises all shots?

View 1 Replies

IDE :: Textformat Tabstops And Bullets In Xml File?

Jan 4, 2008

According to the search there's never been a post that contains the word "tabstops" in the history of . I am honored to be the FIRST!Anyway, I am converting an application so that text content that was once trapped in the authoring environment will now reside in an external XML file.The problem i'm running into is that my "textformat tabstops" tags and bullets no longer work.In the content I had:

Code:
<textformat tabstops='[10]'><br><br><b><u>Blah blah blah</u></b><br> Blah blah blah<br> lah blah blah etc.</textformat>

[code]....

View 2 Replies

ActionScript 3.0 :: Adding Speed To Bullets?

Feb 6, 2009

I have finally got the movieclip to show up when i hit the ctrl key. but it just sits there because i have not yet added a speed. what would be the simplest way of doing this? what i want to move is a bullet.

View 2 Replies

ActionScript 3.0 :: Option For Creating Bullets?

May 7, 2009

I could create a movie clip for a bullet and create a new instance of one every time a bullet is fired. Then, I could have 100 little bullets all flying around checking collision detection...

There must be a better, more efficient way to do bullets. Anyone know of anything already out there?Otherwise, I could create a collision detection queue for the bullets, or predict where the bullet will fly (since it is usually always linear), but if the bullets become larger, the actual movie clip of the bullet may be wide enough to hit something, but the line the bullet is traveling does not necessarily hit that other object.

But is there a fast, efficient system or way of handling things already out there?

View 2 Replies

ActionScript 2.0 :: How To Get Bullets To Work Properly

Mar 19, 2005

I've got a mouse controlled person who fires circle bullets up towards oncoming enemies. but since I duplicated them, only the first bullet fired works as it is the only one that has the right instance name. What I mean is: The bullet is instanced bullet. When it is duplicated to be fired, it changes to bullet1, bullet2 etc. The hittest script on the enemies only recognize bullet, and therefore ignores all other shots except the first. Is there anyway of making it so it recognizes all shots?

View 1 Replies

ActionScript 2.0 :: Gettining Bullets To Work Properly?

Oct 21, 2011

I've got a mouse controlled person who fires circle bullets up towards oncoming enemies. but since i duplicated them, only the first bullet fired works as it is the only one that has the right instance name.What I mean is :The bullet is instanced bullet When it is duplicated to be fired, it changes to bullet1,bullet2 ect etc The hittest script on the enemies only reconize bullet, and therefore ignores all other shots except the first is there anyway of making it so it reconises all shots?

View 4 Replies

ActionScript 3.0 :: Removing Bullets From Stage After Game Over

Apr 7, 2012

in my game enemy Planes shoot at my plane and everything is working fine enemy bullets are inside an array the problem is when my plane gets destroyed by enemy Planes ,the last bullets shot by the enemyPlanes still shows on the screen eventhough i called a removelistener function and added a game over screen enemy planes use timer which i have a listener for it how can i remove the last bullets that still shows on the screen?

View 5 Replies

Flex :: RichText Doesn't Work With Bullets?

Jul 25, 2011

See the simple application created below. I have a RichTextEditor and a RichText component.The idea is to display whatever typed in the RichTextEditor in the RichText component. Everything else (I think) works except for Bullets! The conversion works as if bullets doesn't exists!

<?xml version="1.0" encoding="utf-8"?>
<s:Application width="100%"
height="100%"

[code]......

View 1 Replies

Flash :: Bullets In List Following Mouse Movement?

Feb 1, 2012

I've been having a problem I've been working on for multiple hours now with no luck. I have movement bound to arrow keys and the user looks around via the mouse. When I shoot I want it to continue off in the direction it initially started, but what happens is if the user moves the mouse the bullets change directions with it.[code]...I think what is causing the problem is that when I push the bullets into the array they're all sharing the effects of the user moving the mouse instead of keeping their initial value.

View 2 Replies

ActionScript 3.0 :: Placing And Duplicating Projectile Bullets

Feb 6, 2009

Need to make it so when you hit <control> it will place the bullet but if you hit <control> again it will duplicate it instead of moving the bullet from where it was before. I am trying to find a code that I can look at for research but there arent any AS 3.0 scripts or fla files to DL. The bullet does not need to move or anything, just places the bullet.

View 0 Replies

ActionScript 3.0 :: Create Text Bullets In Flash?

Aug 26, 2011

I am trying to make text bullets in Flash CS 5.5, and I noticed there is no way to do that using the text options in Flash, so I decided, I would just make a small circle shape, and place it where I needed. However, even though I place the shape in front of the text I want it to be in front of, when I test the movie, for some reason this shape, gets moved down about 5 pixels or so. (or the text is moving) I am using classic text.

Is there any reason for this shifting around?

And/or is there a way to just create text bullets in Flash?

View 9 Replies

ActionScript 3.0 :: Swap The Players Bullets Upon Pressing 'x'

Aug 19, 2011

My problem is that I want to swap the players bullets upon pressing 'x'. I have implemented senoculars keyobject class and followed a tutorial from asgamers. this is the code...public function loop(e:Event) : void

[Code]...

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved