ActionScript 3.0 :: Stop Bullet To Move With Character Body In Shooter?

May 28, 2009

I'm making a shooter. Whenever my bullet starts flying and I move my character the bullet keeps moving with it. The rotating gun is in the body movieclip layer so it follows the body around and I can move the gun is there anyway to disconnect the bullet from also moving around with the body ?

Code:
stage.frameRate = 30;
var angle:Number = 0;
var radiansToDegrees:Number = 180/Math.PI;
var degreesToRadians:Number = Math.PI/180;
var currentGeweer_mcRotation:Number;
var Bullet_mcHolder:MovieClip = new MovieClip();
addChild(Bullet_mcHolder);
[Code] .....

View 18 Replies


Similar Posts:


Make An Enemy Bullet Go Towards The Main Character?

Oct 12, 2008

How would i make an enemy bullet go towards the main character?

View 7 Replies

ActionScript 3.0 :: Enemy Character To Fire A Bullet Every Second?

Jul 21, 2010

I am trying to program a game and I want the enemy character to fire a bullet every second, but instead he is firing an infinite amount of bullets right after the other. Here's the code with the timer:
 
if (k == 0){
var shootRight1 = new Timer(1000,1);
shootRight1.addEventListener(TimerEvent.TIMER_COMPLETE, enemy1shoot);
shootRight1.start();

[code]....

View 5 Replies

ActionScript 3 :: Initiating A Bullet Changes Direction With Character

Mar 2, 2012

I'm working on a side scroller that has a character that fires a bullet every time you hit spacebar, the problem I'm having is moving the bullet in the direction the character is facing (left or right).

I have a few of boolean variables to tell me which direction my character is facing: walkingRight | walkingLeft, so if my walkingRight == true, I want the bullet to travel +=10, and walkingLeft == true, bullet -= 10.

The problem is, when I fire facing left, the bullet moves left, but as soon as I turn right, that same bullets starts moving right.

Here is a snippet of AS3 code (Every Frame):

if(gamepad.fire2.isPressed){
// initiate bullet
var bullet = new Bullet();

[Code]....

View 1 Replies

ActionScript 3.0 :: Random Character Instead Of Bullet With Embedded Font?

Jul 10, 2011

I have a text field (old-style, non-TLF) with the following HTML text:[code].....

The font Optima is embedded, and I've selected embed all glyphs.What I'm getting rendered to the screen is as the image below, with a random i + umlaut character in place of the bullet.Is this a problem with Flash or is the font file somehow missing the bullet character, and does anyone know how I can fix this issue, preferably without having to move across to TLF text.?

View 1 Replies

ActionScript 2.0 :: Mailto: - % Character Not Showing In Message Body?

Jul 28, 2010

I have a contact form in flash and when user clicks on a button after filling the form, I want to draft an email. When I am trying to push a '%' character in the message body its not appearing. Either it replaces % with some junk values OR no message body s passed altogather. I have attached my FLA here for reference.

View 4 Replies

ActionScript 2.0 :: Making An Arrow/bullet Move Where The Mouse Was?

Oct 13, 2008

i want to make a game where u shoot arrows at the mouse direction, i have everything exept for that, i think is trigonometry, i have seen it on many games but i cant seem to figure it

im planning to make the arrow something like this

onClipEvent(enterFrame)
{
if(Key.isDown(Key.SPACE) && _root.readytoshoot == 1)
{

[Code]....

View 4 Replies

ActionScript 3.0 :: Working On A Basic, Horizontal Shooter Platform Game - Make Enemies Move Smart, Towards The Player?

Oct 3, 2011

i am an newbie as3 developer, and i am working on a basic, horizontal shooter platform game.and my question is: how can i make enemies move smart, towards the player? ( but ofcours you are in able to dodge)so like, an enemy is moving to me so when i am not dodging, it will hit the player.

View 2 Replies

Actionscript 3.0 :: Make The Arrow2, Body And Target Move To The Left Of The Stage

Sep 28, 2009

i have a loop error where it times out

Code: Select allstage.addEventListener(MouseEvent.MOUSE_DOWN, shootArrow);
function shootArrow(event:MouseEvent):void
{
do
{

[code]...

So what im trying to do is make the arrow2, body and target move to the left of the stage and make the actual arrow (flyingArrow) to move down to give the effect of a flying arrow?

View 3 Replies

Actionscript :: Move A Body From VecA To VecB, Instantly, But Properly Affect Other Bodies?

Mar 15, 2012

I'm using the box2dflash library to create a game, and so far I've been using "SetPosition" to instantly move a body from one place to another... the problem is that it obviously skips affecting other bodies when I do this. I have the body set to bullet... now I just need to know how I calculate the force(?) to get the body to the exact coordinates that I need to move it to... preferably after only a single frame.How would I go about doing this in box2d properly?

View 1 Replies

ActionScript 3.0 :: Setup Bullet Factory/bullet Switch For The Same Player Object?

Mar 25, 2011

I'm currently making my own shoot'em up game where the player can switch  between two player types which will fire their own bullet type in this  case, squares and circles. I've setup the player switch function via  pressing "space" button (switching between the two player types) and the  default bullet type is "squares" and I'm not sure to approach the  coding with changing the bullet type to "circles".I've written 2 classes for the bullet and player setup:Player Class: Creates instance of bullet on screen and enables the switch player type function

Bullet Class: Enables bullet properies and bullet types Player Class: Code:function onKeyDown(event:KeyboardEvent):void {if (event.keyCode == 32) //// pressing/holding "space bar" to function

[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

ActionScript 3.0 :: Set The Bullet.x To Ship.x In The Bullet Class?

Oct 4, 2009

i have 2 classes, one for ship one for bullet.i was trying to set the bullet.x to ship.x in the bullet class but it keeps telling me undefined. but clearly it is in my ship class.

View 10 Replies

ActionScript 3.0 :: Screen To Move With The Character?

Nov 3, 2009

I have my character movement down, and now I want the create a map. I want the screen to move with the character, and eventually I will have it so that at certain spots on the map, the screen will not let you move and stop and enemies will come out.

View 0 Replies

Make Character Move Across Screen?

May 12, 2010

I've created a walk cycle using bone tool on a character but i don't know how to make it move from one part of the screen to the other. The character is made up of 6 layers, 4 of which are armatures and 2 have motion tweens.

View 1 Replies

ActionScript 3.0 :: How To Move Object With Character

May 2, 2010

I have found a ton of tutorials with code that teaches you how to move a character, or move objects with arrow keys.... but I have found nothing that teaches you the code that allows the character in a video game to move an object around. like for example a character needs to slide a block across the ground so he can jump on it to reach platform that higher up.In my platformer game, I have figured out how to jump and move the character back and forth among the platforms with gravity, and thats as far as I have got.

View 8 Replies

Screen To Move In Time With The Players Character?

Jan 20, 2010

How exactly do I cause the screen to move in time with the players character?

View 5 Replies

When Hit UP Key To Jump The Character Continues To Move Up As Hold The Key Down

Feb 3, 2010

A) When I hit the UP key to jump the character continues to move up as I hold the key down.

B) When I stop moving forward the frame of the stickman symbol for walking keeps playing and I want it so the frame labeled "idle" will play when I release right or left.

C) Is it possible to have an action for holding 2 keys at once? I want to have it so i can hold SPACE and RIGHT/LEFT to run.

[Code]...

View 2 Replies

ActionScript 3.0 :: Character Won't Move With Arrow Keys In It

Jun 8, 2010

My character's name is character. When left and right are pressed it tells me what's being pressed when I run it - it says there's no errors with the code. My character doesn't do anything though! [code]...

View 5 Replies

Move Text From One Column To Another Depending On Character Count?

Oct 26, 2009

I am trying to find a way to have text start in a specific column depending on the character count.

Basically our site will have 3 columns. For example if the text only has about 300 Characters - it would start in the right column. If it had between 301 & 600 characters - it would start in the middle column and run to the right column. If it had more than 601 characters - it would start in the left column and run to the middle then right column.

View 1 Replies

ActionScript 3.0 :: Make A Character Move Its Legs When It Walks?

Mar 18, 2012

I want to make a character move its legs when it walks but I don't know how to do this.

Not necessarily just move this character, but general movement in general.

View 4 Replies

ActionScript 2.0 :: Move The Character To A Button Then Press Spacebar On It?

Feb 1, 2004

I got a character to move. I want the player to be able to move the character to a button then press spacebar on it. Which will take them to another frame.

This is the code I got for the button but the trouble is u can press spacebar anywhere to go to the next frame.

on (keyPress "<Space>") {
_root.gotoAndPlay(23);
}

View 2 Replies

ActionScript 3.0 :: Unable To Assign Buttons To Move Character?

May 12, 2010

I am trying to assign buttons my on my 'gameScreen' to move my character. though I am receiving an error msg saying: Error #1010: A term is undefined and has no properties.at Mainas()

package{
import flash.display.MovieClip;
import flash.events.MouseEvent;[code]....

View 3 Replies

ActionScript 3.0 :: Press Buttons On Screen To Move Character Left Or Right?

Nov 3, 2010

i am doing this: press buttons on screen to move character left or right, "swipe" elsewhere on screen to do other stuff.

This is how i have handled it:

Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
stage.addEventListener(TouchEvent.TOUCH_BEGIN, onTouchBegin);
stage.addEventListener(TouchEvent.TOUCH_END, onTouchEnd);
buttonContainer.addEventListener(TouchEvent.TOUCH_ OVER, tOver);
buttonContainer.addEventListener(TouchEvent.TOUCH_ OUT, tOut);

this works fine, just wondering if anyone has another way to handle it. it seems excessive to have 4 handlers for touch input, but i cant figure out any other way.

TOUCH_OVER and TOUCH_OUT check a switch statement to enable/disable buttons within buttonContainer.

TOUCH_BEGIN and TOUCH_END are used to store points and get a "swipe angle" (only if TOUCH_END is not over a button)

my only problem is i started having glitch's i think becuase so many listeners including: ORIENTATION_CHANGE, KeyboardEvents, Event.DEACTIVATE

this is why i ask if perhaps im missing someway to simplify the touch input listeners

View 1 Replies

ActionScript 3.0 :: Deflection Velocity - Use That Angle To Move The Character Away From The Object?

Apr 17, 2012

I am trying to make a little game its just a project to help me get my head around the maths,I receive an angle and I want to use that angle to move the character away from the object are there any good tutorials for understanding this principle, or even what the term is for this?

View 7 Replies

ActionScript 3.0 :: Enemy Animation Sequence - Rotate + Move, Then Stop Then Shoot Then Rotate Back And Move Off Screen

Aug 10, 2009

I am having some dificulty making a path for this enemy i'm trying to create... cause i want him to rotate + move, then stop, then shoot, then rotate back and move off screen... Its easier if you see it.. you can download the swf file in the zipped archive to demonstrate what i mean. I did it there with tweens. Anyway.. i tried and make it but i'm a little stuck on the stopping part... you can also see what i did in the fla file attatched...

View 1 Replies

ActionScript 3.0 :: Projectile - Get The Missile To Actual Move In The Direction The Character Is Facing

Sep 17, 2010

I have this code to add my missile to the screen PHP Code:

[Code]...

it adds right where my character is but I cant seem to figure out how to get the missile to actual move in the direction the character is facing. heres how it looks [URL]

View 1 Replies

Professional :: Character Amimation- Stop(); Not Working?

Apr 2, 2011

I am trying to write code for my char animation. in the scene I have 4 layers: character, sky, ground and actions. all are to symbols(except actions of course) .For my character symbol(movieclip) I have one still frame as default, 2 walk cycles, and a jump. all done on a timeline. the main problem im having is that it doesnt stop, as it is supposed to, on the first default frame.

i put stop(); in the first frame of the movieclip and wanted to do my code in the actions layers in my scene but this stubborn character will not stop and I dont know what to do.....

View 3 Replies

AS3 :: Flash - Stop Character From Moving Through Walls?

Oct 9, 2011

I want to stop the movieclips movement when it hits a wall (another movieclip). The example below works, but after the collision the movieclip 'blocks' all movement to the left...

For now the example with the leftArrow key;

variables to check the key, if it's hitting the walls and if it's moving or not:

var leftArrow:Boolean;
var speed:int = 10;
var hitting:Boolean;

[Code]....

View 2 Replies

ActionScript 2.0 :: Stop Playable Character From Moving

Jun 6, 2011

I am trying to limit the area in which the character (mcMain) can move I want to be able to keep it in an area (mcBuilding) I also have another area (inwhich the character is not supposed to get to) (mcBackground). (Also I want to be able to to make a dynamic text box that starts at 100 then decreases by 5 when the enemy (mcEnemy) hits mcBuilding and also that it gets removed)

View 1 Replies







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