ActionScript 2.0 :: When The Character Collides With The Coin The Following Happens:1. The Coin Disappears?
Mar 26, 2011
My problem is with score counting, i have a score field, a main character and 5 coins.When the character collides with the coin the following happens:1. The coin disappears (Supposed to happen)2. Adds 1 point to the score (doesn't work the way it should)What happens is (i have set the score field to start at 0 with (_root.score = 0 this for some reason doesn't have any affect.Only the first coin to be hit adds (1) to the score, after hitting a second it completely disappears. Also have it set so that if the score goes to 5, the door in the top left will open. (NOTE: for some reason this seems to work, if you "collect" all the coins the door will open, but the SCORE field doesn't show the number)
View 1 Replies
Similar Posts:
Jul 5, 2011
I'm currently making a flash game and to insert sound. The sound effect has to play everytime the character touches the coin yet the coin still has to be able to unload. I never used sound before in flash.
View 1 Replies
Apr 20, 2010
What's the better way to make a coin rotation? I tried Math.random, but the coin doesn't wobble correctly.
starter code
//ROTATION
addEventListener(Event.ENTER_FRAME, enterFrameHandler);
function enterFrameHandler(event:Event):void
[Code].....
View 1 Replies
Mar 24, 2010
I'm using this falling snoweffect but I exhanged the snow with a coin so what I wanna do is have money falling but when they reach bottom I want them to stop. Instead they are looping and I dont know where to change it in the code.
init = function () {
width = 200;
// pixels
height = 400;
[code].....
View 1 Replies
Jan 15, 2010
Finished with coin toss gameWhat done good, what wrong..? what need change? what method better?And now in this user can be winner just 50% ?Attached files.Also code here:
import fl.controls.RadioButtonGroup;
coinToss_btn.label="Coin Toss";
coinToss_btn.useHandCursor=true;
[code].....
View 3 Replies
Jan 9, 2012
i am trying to create a flash ticket machine where i want the user to simply insert coins into a box as a way of paying for a ticket.i have created two objects a "coin" movie clip and a "target" movie clip.what i want essentially do is, be able to drag the coin onto the target.Then for the system to determine whether it has been recognised by outputting a value in a dynamic text box(this i know how to do)Also i have given it a go and tried to drag the coin on top of the target but for some reason it keeps hiding beneath the target:[code]
View 3 Replies
May 17, 2011
I have been approached regarding building a touch screen app for a client, but as it will be for use on kiosk machine it needs to interface with a bill/coin acceptor and a printer. What are the common the ways of accomplishing this?
View 1 Replies
Jan 30, 2011
I am creating a flash money game in which you have to drag coins onto an area to add upto a certain amount and then you click a button to see if you are correct.
I'm really confused on how to assign values to each coin, a value to the area you are dragging the coins onto and how to add these up when they enter the area. Then once the button is clicked for it to check that the value matches that of the value you are adding up the coins to.
View 1 Replies
Feb 9, 2010
I have a project I'm working on and I am really stumped on making a seemingly simple animation work.The animation is of a coin scratching off a layer to reveal the layer beneath. I have the coin animated, and the layers in place. I am wanting to know if there is a way to erase/delete every place the coin passes over the stage, revealing the layer beneath. I've seen animations where ActionScript is used to allow a user to control the coin/pointer and activate the "scratch-off" effect. However, I am trying to come up with a method that is not a user-initiated animation since I want the effect to repeat in several places in the timeline.For the life of me I cannot figure out how to make this work. I am a moderately skilled Flash user and an ActionScript novice.
View 1 Replies
Apr 11, 2011
I had to use a setter...how would I implement that into my code, On my external AS file for the coin I have the following:
package
{
import flash.display.MovieClip
import flash.events.*;[code]....
And in the main movie I made a dynamic text box gave it an instance name of "score" and in my action script I wrote:
score.text = String(coin.coinsCollected);
View 5 Replies
Apr 10, 2005
I have a simple money script [for my game] and I want to say, ok when I walk over a coin, I want it to add $5 to the total amount of money, but the problem is, is that my code doesn't work, in the frame actions I have:
Code:
money = 0;
and in the hitTest for the coin I have:
Code:
if (_root.dude.hitTest(_root.coin) {
_root.money +1
}
View 4 Replies
Apr 12, 2007
I`m trying to flip a square. The coin flip as works fine with round shapes, but with a square it just doesn`t do it.
View 4 Replies
Dec 3, 2009
[url] i first thought they were using a socket server for this but if they were using socket server, i can only login one per ip address right? but if i open up two different browser, i can log in with two different character interacting each other.what i really dont understand is, how the character dispears right after the browser closed, without using a socket server.
View 2 Replies
Jan 12, 2010
I have a particle generator class and I want to create a hitTestObject function on another object to check for any collisions with the particles produced.I bascially have a character already on the stage called character_mc and I want to be able to collect the particles, that means when the character touches a particle, the particle disappears.
View 1 Replies
Mar 31, 2009
I've been messing around with hittest and I can't figure out how to detect when the actual content of the MC collides with the other's, rather than just detecting when the bounding boxes collide.
View 3 Replies
Mar 15, 2011
I have a dynamic TextField set as input field. I listen for the FOCUS_IN and FOCUS_OUT events to enable black border and grey background when the user clicks on that text field and remove them when the text field loses its focus - when the user clicks on the stage or any other element.
That works perfect until I drag any of the Flash components on the stage. In order to lose the focus from the text filed I need to click on a component otherwise it won't work. It looks like components "steal" focus out event...
ActionScript Code:
import flash.events.FocusEvent;
inputField_txt.addEventListener(FocusEvent.FOCUS_IN, onFocusIn);
[Code].....
View 0 Replies
Mar 4, 2010
_root.createEmptyMovieClip("vsound",_root.getNextHighestDepth())vSound.attachAudio(ns);[code]....
Before i had the volume slider, the mute button was fine. but now, it doesn't work anymore.
View 1 Replies
Nov 9, 2011
I am developing a game with Flixel as a base, and part of what I need is a way to check for collisions along a line (a line from point A to point B, specifically). Best way to explain this is I have a laser beam shooting from one ship to another object (or to a point in space if nothing is overlapping the line). I want the line to reach only until it hits an object. How can I determine mathematically / programatically where along a line the line is running into an object?
I could try measuring the length of the line and checking points for collision until one does, but that seems like way too much overhead to do every frame when I'm sure there is a mathematical way to determine it.
Edit: Before checking an object for collision with the line itself, I would first eliminate any objects not within the line's bounding box - defined by the x of the left-most point, the y of the top-most point, the x of the right-most point, and the y of the bottom-most point. This will limit line-collision checks to a few objects.
Edit again: My question seems to still not be fully clear, sorry. Some of the solutions would probably work, but I'm looking for a simple, preferably mathematical solution. And when I say "rectangle" I mean one whose sides are locked to the x and y axis, not a rotatable rectangle. So a line is not a rectangle of width 0 unless it's at 90 or -90 degrees (assuming 0 degrees points to the right of the screen).
View 4 Replies
Jun 8, 2010
hi does anybody know how to make gravity invert or flip when a mc collides with a box?
View 1 Replies
Dec 5, 2010
i want to use a DisplayObject to determine collides with hitTestObject function how to create a DisplayObject for BitmapData? so it knows totally transparent pixels are not collidable
View 2 Replies
Sep 24, 2010
I have a 9 frames image of a character.In other language generally i used to make character animation by looping the array consisting of different frames and drawing each frame when pressing key.What i want to do is when i press left or right key, i want to draw each frame that makes character movement and update x coordinates of frames, and it will appear as character is moving.
View 4 Replies
Nov 27, 2010
Does anyone know the regular expression to test if a single string character has both upper and lower case character?
eg. All A-Z and a-z.
View 0 Replies
Aug 11, 2009
i was wondering if any of you out there could tell me how it is possible to make a movieclip of a character and when the character is dragged about the screen by the curser, how do you make the characters arms and legs swing about in a realistic fashion.
View 2 Replies
Mar 26, 2011
Alright, I've looked online at a bunch of different collision tutorials but they don't explain what I'm looking for. I want object A to hit object B and then execute a function via to a Event listener.
View 1 Replies
Jan 13, 2004
I would like my character to move as if he was drunk I am unsure how to do that I am using the keyboard for his movement. I also have a character that moves at random I would like the drunk moving character to be able to catch this character and play a scene from within the drunk characters movie clip but I want this character to try and escape the idea is the drunk character gets points for how long he is able to hang on to this character
View 2 Replies
Jun 22, 2005
i am making a pacman game, and i need to know how to make it go to a certain scence when a movie clip collides with another movie clip.
View 2 Replies
Nov 13, 2002
When my Movie Clip "Fire" collides with the MC "Wall" i want the variable "Points" to increase by one. And not as in
if (_root.fire._y == _root.wall._y && _root.fire._x == _root.wall._x) {
_root.points++
}
Because then they have to be on the exact same coordinates. Wall, however, is a pretty long Mc and i want the same thing to happen no matter where the fire hits it
View 2 Replies
Dec 16, 2009
I am trying to build a fireplace in flash where the mantles, surround type and face plates are changable when a value from a drop down menu is selected.I put each of the objects(mantles, surround types and face plates) in a seperate layer and am making them visible/invisible by controlling the alpha property of each of the objects. It worked fine till i had about 30 layers/images on the flash file, but as i try to add new layers/ images the new layer sort of covers the first layer making it invisible.
View 5 Replies
Oct 1, 2010
I am new to CS4 and I have an issue with writing text on frames. I am using the text tool to write a paragraph of text which I type in to word to do spell check etc. Then I transfer to Flash and using the text tool paste it in. Now as soon as I let go of the mouse the text disappears but when I click on the text again it reappears why?
View 1 Replies
Mar 16, 2009
I have a brand new Mac Pro (8-core "nehalem") and I'm having a very frustrating problem. While testing a movie within Flash, the Test Movie window will randomly go completely blank, showing the Stage color. The movie is still running, there's no error, it's just blank. When I resize the Test Movie window, everything reappears. Until a few seconds later, it snaps back to blank.I resize, it reappears, it disappears,I resize,it reappears, it disappears... over and over. Today is my first day really using this machine for Flash. The FLA worked perfectly fine on my old Quad G5 and on my Intel iMac at home, so I don't think it's an issue with my file. The graphics card is an NVIDIA GeForce GT 120 with 512MB VRAM. (the standard card that comes in the 8-cores.)
View 1 Replies