ActionScript 2.0 :: Mx2004 Multiple HitTests

Sep 14, 2004

I have 9 static movieclips arranged in a 3 by 3 grid, and 1 movieclip that moves using keypresses (invisible_mc)[code]when a hitTest is registered between the invisible_mc and any of the icon_mc's, The icon_mc goes to and stops on frame 2..else it goes to and stops on frame 1. I have constructed the hitTest as follows.is there anyway to reduce the endless repetition of code? [coe]

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Having Multiple HitTests With Same Movieclip?

Apr 29, 2010

I'm currently programming in AS 2.0, and I'm trying to get a piece of code to work. I have a movieclip that is deployed when the user clicks a mouse button, sort of like a bombshell being dropped on an area.

However, when I run it, it's quite obviously only registering one of the hitTests, because _parent.sprite_counter only decrements by one, regardless of how many enemies are destroyed. That's the other weird thing; no matter what, even if the counter never decrements, the movieclip still is removed.

Is it because you've got several movieclips simultaneously trying to decrement the same variable?

View 2 Replies

ActionScript 2.0 :: Looping Through Multiple Hittests

Dec 5, 2009

I have many, potentially hundreds, of objects that are floating around the screen. These objects are named "Object1", "Object2", "Object3" and so on. Another object is moving around the screen and if it hits any of the other objects, it destroys them. The thing is, if I have a loop like:

Code:
for(var i = 0; i < ObjectCount; i++)

where ObjectCount is subtracted off each time an Object is destroyed. Now say Object1 is removed, then the loop will fall short and not check for a collision for the Object with the highest number. The way I am dealing with this at the moment is I am looping through the initial number of objects and not subtracting off ObjectCount, so when there is only say 10 of an inital 100 objects left, it is still looping through all 100.

Here is what the principle of it is:

Code:
for(var i = 0; i < ObjectCount; i++)
{
CurrentObject = GameArea["Object"+i];

[Code]......

And as you can see, if Object1 is removed, then the Object with the highest number on it will not be checked.

View 3 Replies

ActionScript 2.0 :: HitTests On Multiple Objects?

Apr 9, 2005

I have a bullet movieclip and it moves. I've put a hitTest on its onEnterFrame so that it checks if it hits its target, whose instance name is mmbug and the target flies around. That's easy and works cool.[URL]there's only one wasp present at a time and it works)Now what I want to do is duplicate the wasps so there are more flying around at one time, but how would I do the hitTest on the bullet then, because you have to specify it an exact instance name. If I make all the wasps have the same instance names it doesn't work.So obviously I'd have to give them names of mmbug1, mmbug2, mmbug3 etc. But how would I check on the hitTest if it hits any of them, since you have to put in an exact instance name in the hitTest?

View 5 Replies

ActionScript 3.0 :: How To Handle Multiple Hittests

May 24, 2009

I've been reading up and looking at examples of how to handle multiple hittests. So far in my example I have failed.

[Code].....

Basically I want to be able to check for a hitTest against all the bullets on stage against all atoms created. I attempted to do this with two for loops and it didn't work

View 4 Replies

ActionScript 2.0 :: HitTests On Multiple Objects

Apr 9, 2005

For instance, I have a bullet movieclip and it moves. I've put a hitTest on its onEnterFrame so that it checks if it hits its target, whose instance name is mmbug and the target flies around. That's easy and works cool. ( see [URL] , there's only one wasp present at a time and it works) Now what I want to do is duplicate the wasps so there are more flying around at one time, but how would I do the hitTest on the bullet then, because you have to specify it an exact instance name. If I make all the wasps have the same instance names it doesn't work. So obviously I'd have to give them names of mmbug1, mmbug2, mmbug3 etc. But how would I check on the hitTest if it hits any of them, since you have to put in an exact instance name in the hitTest?

View 5 Replies

Professional :: Create Multiple Enemies And Be Able To Do HitTests Against Them?

Oct 12, 2010

i got this flash with duplicated mc's say...enemy1, enemy2, enemy3. now we all know we can do something such as..
 
if {_root.blah.hitTests(_root.enemy)){_root.enemy.nextFrame();}}
 
because the enemy is duplicated and its no longer "enemy" but enemy12 or ****.is there any way to ...create multiple enemies and be able to do hitTests against them somehow.Also im not really a fan of attachMC

View 5 Replies

ActionScript 1/2 :: If Multiple Hittests Equal True, Go To And Play Next Frame?

Dec 7, 2009

I am trying to finish up a project and run into this problem, right now I am trying to create a drag and drop game and on the last game you can dropparts into the others, what I want to happen is that when all are in the correct spot gotoandplay next frame. This is my current code,

if(one_mc._droptarget=="/onedef_mc" && two_mc._droptarget=="/twodef_mc" && three_mc._droptarget=="/threedef_mc" && four_mc._droptarget=="/fourdef_mc" && five_mc._droptarget=="/fivedef_mc" && six_mc._droptarget=="/sixdef_mc" &&

[code]....

View 9 Replies

ActionScript 2.0 :: [MX2004] Creating Multiple Empty Movie Clips?

Jul 20, 2006

I tried it and it just doesnt work, it creates the first one but the other five dont work and createTextField wont work after the first createmovieclip.

View 12 Replies

ActionScript 1/2 :: Hittests For Mcs Inside Other Mcs?

Aug 5, 2010

I have a hittest code that's supposed to prevent an mc from moving into a space occupied by another mc. The thing is, the first mc is inside another mc and for some reason the hittest isn't registering. The code I'm using is below. Is it wrong somehow, or is there another code I should be using?
 
Key.addListener(keyListener);
this.onEnterFrame=loopF;
function loopF() {

[code]...

View 3 Replies

ActionScript 1/2 :: HitTests Dont Work ?

Aug 7, 2011

Ive got this script. when u press a button u can create a movie clip called man. when u press another button u can create one called enemy. thay both create at different sides of the seane and thay walk past each other.but when thay touch each other thay should go to frames inside them. ect Attack,Die.

var mans = 0;
function addman() {
if (Gold>=10) { [code]....

View 4 Replies

ActionScript 2.0 :: Curved HitTests For Flash 2004 MX?

Aug 16, 2006

how do you make a curved/slanted hitTest?

View 1 Replies

ActionScript 2.0 :: Movie Clip Hittests Anything On The Screen?

Jun 15, 2007

Is it possible to check if a movie clip hittests anything on the screen?

View 1 Replies

ActionScript 2.0 :: [flash Cs4] Arrays And Hittests Not Working?

Sep 2, 2010

My fish is swimming along and needs to catch the food and avoid the poison. I've attempted to create arrays for the food and the poison so they are randomly dropping down. I've also added a hittest but can't get it to work.

I'm not really happy with the randomisation of the array, there are too many instances appearing on screen and I'm not sure how to fix this. Is there an easier way to animate the food dropping down without using as2 and arrays? There is also something wrong with my score, each food should be +10 to score and poison should be -10, but that doesn't seem to be working either. I also don't know what script to type to end the game to either a congratualtions screen or game over screen. Basically I have no idea what I'm doing and haven't had much help from my teacher, he may as well be speaking another language.

View 2 Replies

ActionScript 2.0 :: Duplicating Movie Clips, Loops And HitTests?

Mar 18, 2010

I'm creating a simple game called shape wars. The game is shooting game where a blue cube(the player) fires blue shapes at the enemy(the red cube). The red cube also fires red shapes at the blue cube.Here is my code for duplicating the red shapes (this code is contained within the enemy)

onClipEvent (enterFrame) {
//attack
att = random(6);
if (att == 1 && dead == false) {
_root.redBullets++;

[code]....

View 2 Replies

IDE :: Convert MX2004 To CS4?

Feb 1, 2009

I have the attached .fla file that was created in MX2004 but I only have CS4 to work with. Is there a way to convert this so I can use it?

View 2 Replies

ActionScript 2.0 :: Convert From MX To MX2004?

Jan 10, 2006

I have a piece of code that works fine using flash player 6 and AS2 but soon I as try to use flash player 7 and AS2 it stops working..

This is my code:

Code:
var cgiThing=new loadVars();
cgiThing.onLoad=function(ok){

[Code]....

View 2 Replies

ActionScript 2.0 :: Duplicating MCs (yet Another One) (MX2004)?

Apr 9, 2006

Whenever I make a code to duplicate anything in a reaction to an action, i get the problem of having my initial duplicated mc destroyed upon re-duplicating (you fire bullets and the one shot before the last always disappears and so).The thing is, if you take kirupa's "How to Fire"-tutorial, download the source and run it, the thing works like a charm. However, even if i copy every last single bit of code and content to a new document, the duplication process acts as described above.In addition, here's a quote from the tutorial "How to Fire" [url]

explain how on earth one would get "_level0.bullet" from something the likes of "trace(this._name)", which, of course, returns the instance name. Which would, in the aforementioned tutorial's case, be, in fact, "bullet". Not "_level0.bullet". He states "It's not the instance name"... Well, what the heck is it then? The result of the trace in question varies relying COMPLETELY upon the given instance name. If you write "Bratwurst" as the instance name, you get "Bratwurst" from the trace, as god is my wittness.

Even if i remove EVERYTHING from the code that even COULD, by the user's will, remove the duped mc, the initial problem remains. You can only fire one bullet at any given time, other(s) disappear.It's most propable that there's just something i've missed completely, and end up making myself looking like an ***, but still.For those who want a code, just take a look at the tutorial (the URL above). Everything's basically the same. I would also appreciate if someone were to try what i've described, which is to copy everything from the tutorial .fla and placing the stuff on a fresh document.

View 1 Replies

IDE :: Making The Leap - MX2004 To CS4?

Mar 29, 2010

I've been using MX 2004 pro for a few years now at a fairly superficial level just for website updates/enhancements, little educational things, and little personal animated birthday cards, etc. I have just recently started learning action script, which I'm getting, slowly but surely.

Anyway, my question is: how much different is CS4 from MX 2004? i.e., am I looking at a huge learning curve? I don't mind huge learning curves when I have lots of time on my hands, but I don't. But I would like to keep my software up-to-date, since I just got a new computer with Windows 7 on it.

View 1 Replies

ActionScript 2.0 :: OnRelease On Dynamic Mc [MX2004]

Feb 12, 2004

The problem is that I can't get the subItems to work with the onRelease function.

View 1 Replies

ActionScript 2.0 :: [MX2004] Referencing One Movie To Another?

Apr 5, 2005

Main.swf has a button which loads Movie.swf into a movie clip 'contents' (as shown in the tutorials). 'contents' is directly over the button, so when you move your mouse in Movie.swf, it still detects the button in Main.swf.I need to know how to make Movie.swf use Main.swf button so that I can disable it while Movie.swf is open, and enable it when Movie.swf is closed.So far my code is 'blank'.MyButton.enable=false;with 'blank' being main.swf. I tried _root, _parent, etc.., but nothing worked.

View 2 Replies

ActionScript 2.0 :: Use The Envelope Transform In MX2004?

Aug 31, 2005

Is there a way to use the envelope transform through actionscript in MX2004?

View 1 Replies

ActionScript 2.0 :: Tweens And OnMotionFinished In MX2004

Feb 15, 2006

I created some code in Flash 8 for a client using MX2004. I used Tween and made a onMotionFinished function. I saved it as a MX2004 file, but when he tries to compile it he gets.[code]

View 2 Replies

ActionScript 2.0 :: Pausing A Slideshow [MX2004]

Mar 31, 2006

I set up a slideshow using this tut' [URL] Awesome by the way, as someone who is an out and out fine/digital artist no matter how hard she tries desperately struggles with scripting, it's really cool to find tutorials like this which show me how things can be done in such a small file size and with such efficiency, I have a lot to learn. Anyhow, sorry I digress, I'll get to the point. XML seems extremely versatile and I'm going to look into it more.

I did both tutorials the one hat lets you step through (photo gallery) and the slideshow one, what I would like is to be able to pause the slideshow if I see an image I would like to look at for a while longer and start again when I am ready to move on.

View 1 Replies

ActionScript 2.0 :: Random Letters In MX2004?

Mar 31, 2007

I'm trying to make 4 movie clips/cycling letters for the lowercase alphabet. 3 random letters and one to stop on an indicated letter, i.e. "a" . I'm trying to make a letter recognition game for a class project, the aim is to have 3 random letters as well as the letter that was in an earlier screen pointed out.

View 1 Replies

ActionScript 2.0 :: Zooming Content In And Out - MX2004?

Apr 28, 2005

I'm working on a personal project and I want to use this type of effect on the content. I want the finished product to have one "zoom()" function defined that will be able to be used on whichever "content" clip that is clicked on. Does that make sense?Here's the code I have that I want to "globalize" to reuse on 9 different "content" clips.

Code:
//ATTACHED TO BUTTON MOVIE CLIP
onClipEvent (load) {
_x = 50;
_y = 50;

[code]....

I forgot to mention that I am going to be loading external SWFs for all nine content panels... if that makes a difference in the coding.

View 1 Replies

IDE :: MX2004 Looping Different Movieclips In One Animations?

Apr 7, 2011

l am trying to finish banner for my daughters web...l am just a mummy and dont have time to take classes etc but l am trying...this is a bannerone animation with few movieclips (already converted to movieclips)l need two of them to continue loopingl have put STOP action but then everything goes to a stilll tried entering layers on top vith actions like continue but its not working

View 1 Replies

ActionScript 1/2 :: Flash Mx2004 But Dosent Flash8 Or New

Jan 5, 2011

i done script its work in flash mx 2004 but not in flash8 why it like this... i am posting that script below hey have look at this & for the script i use two input text with variable input1 & input2 respectively..& one dynamic text with variable display..... & one button, i use script on button..

[Code]...

View 14 Replies

ActionScript 2.0 :: [MX2004] Progressbar And Loader Components?

Jan 5, 2004

This is wierd. My AS for frame 1:

[AS]
loader.autoLoad = false;
loader.contentPath = "anmalning.swf";
pBar.source = _root.loader;[code].....

now, it works when I run it on my computer, but when I upload it to my webserver, the progressbar doesn't move and it doesn't disapper after the swf is loaded either.The two swf's is in the same catalog, both on my computer and on the webserver...

View 12 Replies

ActionScript 2.0 :: [MX2004] Levels In Dynamic Xml-menu

Jan 7, 2004

I'm creating a dynamic menu with XML, and this is part of my code. I've written in the code what the problem is:

[Code]...

View 2 Replies







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