ActionScript 2.0 :: [FMX] Game - Hittest With Movie Clips In The Centre Of The Stage And Distance

Apr 26, 2005

i am working on a game called "virus". you click somewhere on the screen and the virus goes to where you click. you have to dodge random moving white blood cells, and if you hit them you lose. everything is working. except for one thing. scoring.

i have made a movieclip with a dynamic textbox in (score), and in the movie clip there is a section where the number in the score textbox goes up really quickly, a section where is goes up medium, and a section where it goes up slowly. i want to make it so that when you get closer to the center of the movie, for the score to go up quicly, and slower as you get further out. i have tried hittest with movie clips in the centre of the stage, but it doesnt seem to work.

View 3 Replies


Similar Posts:


AS3 :: Auto-Centre - MovieClip Always Stays In The Centre Of The Stage On Resize?

Jul 22, 2009

Just a quick one. Using AS3, how would I ensure that a movieClip always stays in the centre of the stage on resize?

View 1 Replies

ActionScript 1/2 :: Calculating A Distance Between 2 Movie Clips?

Sep 28, 2011

I have two movie clips. One is simply on the screen, meaning it can be referred to as _root.movieclip1. The other is within another movie clip, like _root.movieclip2.movieclip3. How do I calculate the distance between the movieclips 1 and 3? The third's coordinates are shown not as they would be on stage, but from inside the second movie clip. I'm using Macromedia Flash Professional 8.

View 1 Replies

ActionScript 3.0 :: Find Distance Between 2 Movie Clips?

Jun 28, 2011

How does Flash use Math.sqrt to get the distance between 2 movieclips? In the example the only givens are 2 points along a triangle:

function getDistance(x1:Number,y1:Number,x2:Number,y2:Numbe r):Number {
var dx:Number=x1-x2;
var dy:Number=y1-y2;
return Math.sqrt(dx*dx+dy*dy);
}

dx is the difference between the x coordinates of 2 points/2 mc's
dy is the difference between the y coordinates of the same 2 points
the Math.sqrt is the Pythagorean theorum

If the Pythagorean theorum is a^2+b^2=c^2 for the sides of a triangle how do 2 points achieve the same result if the lengths of the sides aren't given?

View 1 Replies

ActionScript 2.0 :: HitTest With Scripted Movie Clips?

Aug 9, 2010

Ive created a project that creates random movies clips with text in them, everything works fine except that movie clips will overlap each other due to the random nature of the project.I've looked everywhere tips on hitTest methods but I cant seem to get it right, the major problem is that the clips have similiar names, if I try a hit test the movie clip will just detect itself and not look for the other clips.

View 3 Replies

ActionScript 2.0 :: Hittest On Duplicated Movie Clips?

Apr 21, 2004

i am currently making a game , and for some reason the hittest on my duplicated movie clips isnt working i know how to do them , and know it should be working , because it works on one of the movie clips but none of the others so im guessing it something to do with depth?

View 2 Replies

ActionScript 2.0 :: HitTest Through A Group Of Movie Clips?

Nov 20, 2005

I have this "point" movie clip that starts on a random hitpoint. I can drag around, on the stage and there are more than 10 small invisible movie clip.How do i create any sort of algorithm where it can somehow "loop" thru all the movie clips to test if it hits any?If so, it will snap to it, else it will revert back to the previous hit point?

View 2 Replies

ActionScript 2.0 :: Make A Hittest Between Two Duplicated Movie Clips?

Mar 21, 2007

I am making a small game in which you are a little shooty spaceship type thing, and there are duplicated mines falling around you. When you press space, the shooty spaceship type thing fires duplicated bullets. How do I check a hittest between any bullet

View 3 Replies

ActionScript 2.0 :: Hittest On Duplicated Movie Clips Isn't Working

Apr 21, 2004

i am currently making a game, and for some reason the hittest on my duplicated movie clips isnt working i know how to do them , and know it should be working , because it works on one of the movie clips but none of the others so im guessing it something to do with depth? i will give the code if any1 replys

View 2 Replies

Multiple Movie Clips On Stage - Buttons Not Working In Movie Clips?

Jul 15, 2009

I have multiple movie clips on stage (all in separate layers, of course) as well as buttons on stage to play each movie clip. There are buttons inside each movie clip. The problem is that the buttons inside the top layered movie clip work, but the others in the movie clips below don't.

View 2 Replies

ActionScript 2.0 :: HitTest - Detect Collisions Between Movie Clips And A Line

Nov 26, 2004

How do I detect collisions between movie clips and a line created through actionscript (with the lineStyle, lineTo, etc. commands). I tried making the line inside a movie clip and doing a hitTest with that movie clip, but it did nto work.

View 1 Replies

ActionScript 3.0 :: Read Hittest From Distance?

Jun 4, 2010

is there a way to detect a hittest with two objects colliding from a distance? For example if I move an object like 5 pixels to the right, then it will touch the other object; is there a way to see this?I used my imagination to create the following code ofr this:

Code:
if(block1.x + 2 == block1.hitTestObject(block2)) { //this is when he's 2 pixels away from Block2 } else {
//Or else?}

As you can see I want Flash to do something when he's 2 pixels away from block 2.

Unfortunately this code didn't work. But I hope you understand what I try to do.

View 7 Replies

ActionScript 1/2 :: HitTest Of A Movie On Main Stage With A MC Inside A MC

Aug 24, 2009

as the title says i am having two movie clips on main stage one called "land" and other called "char" inside "char" MC i have another MC called "ht1" i want to make hitTest between "ht1" and "land" but everything seems to fail, i've tried using _root, _parent?

View 3 Replies

ActionScript 3.0 :: Flash - All Movie Clips To Be Placed On Stage With Equal Gap Between Each Movie Clip?

Sep 19, 2011

I have some (Eg. 10) Movie Clips on bottom of the Stage (aligned horizontally) with different sizes (different width & height). I want them to align vertically on middle of the stage with same gap (irrespective of their sizes) in between 2 Movie Clips. Is it possible using AS3 code?

View 3 Replies

ActionScript 2.0 :: CS3 Use Stage Centre Not Top Left?

Sep 13, 2010

i am struggling to work something out here and am hoping that someone on here can put me right...i have a flash movie that uses a liquid type layout (ie all from top left to fill the stage) - part of the movie is a navigation that when clicked slides around the stage to set positions.the problem is that the nav co-ordinates (points it travels to) are all based around top left of the stage, and i need to make it work from the centre of the stage.this is an example of one slide actions on one of the buttons named CLEAR:

PHP Code:
panel.CLEAR.onRelease = function(){
yTargetMC = 325;

[code].....

View 2 Replies

ActionScript 2.0 :: Stage Centre Not Top Left?

Sep 13, 2010

i am struggling to work something out here and am hoping that someone on here can put me right...i have a flash movie that uses a liquid type layout (ie all from top left to fill the stage) - part of the movie is a navigation that when clicked slides around the stage to set positions. the problem is that the nav co-ordinates (points it travels to) are all based around top left of the stage, and i need to make it work from the centre of the stage.this is an example of one slide actions on one of the buttons named CLEAR:

PHP Code:
panel.CLEAR.onReleasefunction(){
yTargetMC 325;

[code]....

View 2 Replies

Alignment - Centre The Two Rows Of Buttons On The Stage

Sep 29, 2009

I've ceated 18 buttons 1-18 on two rows and using the alignment tool made then all gapped the same and in line etc. I now want to centre the two rows of buttons on the stage. I've shift clicked to select all the buttons but no matter what option I pick in window alignment I can't get it to work.

View 2 Replies

ActionScript 2.0 :: Animation Returning To Centre Of Stage When Resized

Jul 7, 2010

I am having a small drama with an animation by actionscript. I want a box (that has been externally loaded into a holder mc) to come from the bottom left of the screen and then stop in the centre of the screen. So far so good with the code below

[Code]...

But this is a fullscreen website, if you change the size of the stage and then load the swf with the box in it, the box no longer stops in the middle but flies to the opposite corner of the stage.

View 0 Replies

ActionScript 1/2 ::got 2 Movie Clips On The Stage?

May 27, 2009

Suppose I've got 2 movie clips on the stage. box_mc and triangle_mc. I want to set up a way so that whenever I trigger the event, such as pressing a key (like

if(Key.isDown(Key.SPACE)){
//stuff that activates it
}

[Code]...

if I push the Space key again, it would start from the top (1) and repeat the sequence. The sequence would otherwise stop at 4. Previously I've been using counters inside an onEnterFrame such as counter = counter +1; if counter > n, counter = n; etc. This seems tedious and I'm hoping there's a better way to do this. I do not understand watch and timer functions of actionscript (they never seem to work for whatever project I'm occupied with).

View 7 Replies

Flash :: Movie Clips On Stage?

Aug 20, 2009

I have used Flash on and off over the years but I've decided to hunker down and learn it in earnest. We have cs4 at work and I am having this problem.I checked out the differences between a graphic symbol and a movie clip, and it seems that the movie clip has some distinct advantages. But the main disadvantage is not being able to see what happens on the stage as it plays. How can I get around this limitation? Why does it even exist in the first place? I understand that scripting can complicate how it plays, but for example if I am making a straightforward animation, but parts of it depend on other parts that are in separate symbols, how can I see what is going on at a specific frame on the stage overall?

View 3 Replies

Professional :: Movie Clips On The Stage?

Feb 8, 2011

If I create a 2000 frame Movie Clip and then drag it onto the stage of my main scene... shouldn't it work/play through  it's entirety from within one frame of the main scene timeline? IOW I'm having to make the layer on the scene stage that i drag the movie clip onto 2000 frames long in order to see the nested 2000 frame movie clip play.Seems like in the past I could get Movie Clips to play and loop and what not from the main scene/stage without doing this.

View 12 Replies

ActionScript 2.0 :: Centre (on Stage) A Loaded Image Inside A CreateEmptyMovieClip ??

Mar 17, 2008

How do I center (on stage) a loaded image inside a createEmptyMovieClip ?I've read so many threads...can't make it work

here's my script:
button1.onPress = function(){
_root.createEmptyMovieClip("imagecontainer", _root.imagecontainer.getNextHighestDepth());

[code].....

View 7 Replies

Attaching Movie Clips And Moving Them On Stage

Jul 25, 2010

Firstly, I want to be able to push the space bar on my keyboard during a swf, and for a movie clip to appear on the stage. This is what I have so far:
Code:
onClipEvent(enterFrame){
if(Key.isDown(Key.SPACE)){
_root.attachMovie("Explosion", "Explosion"+i, _root.getNextHighestDepth());
_root["Explosion"+i]._x = _x;
_root["Explosion"+i]._y = _y-20;
}}
but its not working....

Secondly, I want A movie clip to spawn in the middle of the stage, then randomly travel outwards to the edge of the stage, then dissapear. And this needs to happen over and over, with the same movie clip travelling to a different place each time. This is what I have so far :
Code:
onClipEvent(load){
timer = 0;
i = 0;
a = 0;
b = 0;
[Code] .....

View 4 Replies

ActionScript 3.0 :: Remove Some Movie Clips Off The Stage?

Nov 21, 2010

I am creating a game called Piggy Attack.I am trying to remove some movie clips off the stage.I also tried it by adding them to the stage using as3 but neither are successful.They all come up with the error code:

[Code]...

View 12 Replies

ActionScript 3.0 :: Use A Loop To Add Some Movie Clips To The Stage

Mar 20, 2011

I'm trying to use a loop to add some movie clips to the stage, but I want to give each one a different name so I can refer to them in another function, but I don't know how that is done. I'm trying to learn how to do this so I can create an Isometric game. Here's my code....

[Code]...

View 3 Replies

ActionScript 3.0 :: Can't Center Movie Clips On Stage

Jan 19, 2009

Im having trouble centering my movie clips on the stage.

I have postioned movie clip holders on the stage and and coded them to be invisible (10 of them). If the images loaded are less than 10, the extra movie clip holders stay invisible and the loaded ones become visible.I am struggling to center the visible movie clip holders.[code]...

View 1 Replies

ActionScript 2.0 :: AttachMovie - Add Movie Clips To The Stage

Nov 1, 2009

I want to add 5 movie clips to the stage. The movie clip at this point is just a red box and called testMovie. Ultimately i want to have 5 red boxes displayed on screen tiled vertically one under the other. Here's the code i have so far:

[Code]...

View 7 Replies

ActionScript 3.0 :: Moving Movie Clips Across The Stage?

Dec 17, 2009

I have a question that's been bugging me for a LONG time now. I'm still pretty new to ActionScript, I'm trying to have a series of movie clips move from right to left along the stage, but after about 3 seconds they stop! Here's the code...

ActionScript Code:
public function thingTimer () {
nextThing = new Timer (1000 + Math.random()*5000,1);

[code]......

View 2 Replies

ActionScript 2.0 :: Refer To All Movie Clips On Stage At Once?

Oct 25, 2011

Way of referring to all the movie clips on the stage at once, and of putting that information into a variable for use with hit detection.

View 3 Replies

ActionScript 2.0 :: Classes And Movie Clips On Stage?

Feb 10, 2012

Im trying to create a class which can access a movie clip on stage. I've searched many forums/google cant seem to find the solution im after. If i have a movie clip on stage with instance name 'mc1' for example. how can i access this movie clip from a class im creating. Eventually id be able to access the movieclip via a dynamic name but need to get past this simple stage first.

View 1 Replies







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