Actionscript :: Remove Children As The HitTest Them But The Index Seem To Be Off?
Dec 11, 2011
when my lasers hit the enemies I want to remove the laser and the enemy but my loop somehow searches outside the index and crash the program.
package
{
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;
[code]....
View 1 Replies
Similar Posts:
Oct 9, 2009
Just wondered if I remove a parent movieclip and then set it to null, will it remove all the child movieclips within it from the Display list and also from memory, or do I need to iterate through the parent movieclip removing all its children before removing the parent?
View 8 Replies
Sep 6, 2011
In my experiment memory usage keeps growing a little (more, and more RAM usage after GC) when I use repeatedly:
Code:
removeChild(picContainer);
addChild(picContainer);
[code].....
View 5 Replies
Feb 8, 2010
i am controlling a tractor mc with right and left keyboard keys and let the user move the tractor till it reach a certain point where it touch a mc i want to go to a certain frame and stop the keyboard event listener and also the hit test listenerso finally the tractor is moved by user till it touches the mc then we will jump to a certain framethis certain frame will not have both of the tractor and the mcPHP Code:
import fl.transitions.Tween;
import fl.transitions.easing.*;
import flash.display.MovieClip;
[code].....
View 1 Replies
Feb 27, 2012
I have a problem with the getChildIndex() method. I have an array that stores multiple children and I want to perform a hitTest that only works on children with a certain depth, with one that is lower than the other hitTest "partner". Therefore I want to check the depth of that certain child.I tried to trace the depth, but I get crazy errors doing that. No matter if I do it from the child itself, or from the Document Class.
trace(getChildIndex(foes[7][1][1]))
[7] is the current level, [1] is the type of child and the second [1] is the child itself called [Object EnGob]. I put it there by the push() command.
View 3 Replies
Feb 19, 2009
I have a feeling I might be going about this all wrong. I have 3 objects (mask_cat, mask_dog, mask_sea_monster)on the stage and I want the user to be able to move them independently with the ol' click and drag. This is what I have:
[Code]...
View 4 Replies
Apr 10, 2012
I have an array 'cat', 'dog', 'budgie'
and want to remove the item by index.
At the moment I have
function removeit(myindex) {
animals[myindex] = animals.pop()
}
View 1 Replies
Mar 12, 2010
adding all the bricks of another movie clip into an array in my controlling mc (GameScreen). Except, when I try to remove them from the display list by accessing them from their array, I get
Quote:
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller at flash.display:isplayObjectContainer/removeChild()...and so on
I'm guessing it's something to do with adding another movie clip's children into an array in a movieclip that isn't the stored clips' direct parent, but it's parent's parent.
Code:
private function checkBrickHit():void{
for(var i:int=0;i<brickArray.length;i++){
[code]....
View 3 Replies
May 14, 2007
how to remove a numbered index of an array such as [3] since all other removal functions use either the first or last.
View 7 Replies
Sep 7, 2009
i am trying to remove a .swf once you leave the index page. unsure of the method "contains" and how to remove the banner var or unload the var
the page variable code is
Code:
var sights:URLRequest=new URLRequest("sights.swf");
this defines the page loader
[Code].....
View 5 Replies
Oct 2, 2008
Well I'm starting to really enjoy AS3, my next question then is this: In AS2 I'd often remove all movieclips with something like this:
PHP Code:
for(var i: String in container) {
container[i].removeMovieClip();
}
Is there something similar in AS3 that I can do without resorting to maintaining an array of references to each child of my container?
View 4 Replies
May 18, 2011
I have a menu that is a type of wave, thus I'm using Flash, not HTML. My issue is that I have a bevel on that wave, but that bevel extends onto the text that is a child of the MC that has the bevel. Is there any way that I can remove the bevel from the text (Or technically shapes since they were imported from IL) without removing it from the entire element?
And yes, I've tried this.filters=[];
Also, I can't keep everything one shape in the MC, because I have hover attributes.
View 4 Replies
Oct 19, 2011
I was just wondering whether it would be possible to remove an object from an array without referencing its index, for example when the index is unknown, or when you want to splice it from within the class itself, like ina die function for an enemy in an array. I have a project due on Friday morning, GMT.
View 6 Replies
Nov 13, 2009
trying to remove instances of child/children. I have a function (btFnc) that creates a child (bT) and then the function is called several times to add instances to the stage - btFnc(264,3.6); btFnc(304,4.6); btFnc(344,5.6); btFnc(384,6.6); btFnc(424,7.6);Yet i cannot for the life of me remove all of the children, only 1.
Code:
public class screen18 extends MovieClip {
private var scrnXMLLoader:XMLLoader;//XML Loading class
private var screenTxt:Array;
[code]....
This then repeats for screens 2, 3 & 4.
View 3 Replies
Nov 3, 2009
i have an ary contain a numbers of information as below
var ary:Array = new Array();var temp:Array;
var box_mc:Box; // this is a movieclip which contain dynamic text box inside.
// assume inside the array have 9 itemName
on the stage i got an empty empty movieclip and i add child from the array on it..
[Code]...
Problem:I could delete the item everytime i clicked on the remove button but it appears a gap/space between it. I want to push all remaining box_mc at the bottom up after i remove 1. It only push up when i come back to this page after i navigate to some other page. Does anyone know how to implement this ? P.S. i tried using enterframe and i failed, probally the way i did was wrong or watever.
View 3 Replies
Feb 22, 2011
Isn't there a simple "remove all children" function in flash? I don't understand why this code isn't working. I add children via:
for (var i in project_array[cp].project_type_clips){
container.header.type_loader.addChildAt(project_array[cp].project_type_clips[i],i);
loadCount++
}
And then remove them via:
for (var i in project_array[cp].project_type_clips){
container.header.type_loader.removeChildAt(i);
}
But I get an error that the supplied index is out of bounds, and yet one clip is still left on stage. Likewise, if I try to add them without levels, like this:
for (var i in project_array[cp].project_type_clips){
container.header.type_loader.addChild(project_array[cp].project_type_clips[i]);
loadCount++
}
And remove:
for (var i in project_array[cp].project_type_clips){
container.header.type_loader.removeChild(project_array[cp].project_type_clips[i]);
}
I get the same error.
View 3 Replies
Sep 12, 2011
How do I remove all children of a movieclip?
I tried
while(radar.numChildren > 0){
radar.removeChildAt(0);
}
but this causes the movieclip graphic itself to be removed.
View 3 Replies
Aug 25, 2009
I want to destroy/remove all the children of an object including grandchildren of those children and so on.
I was thinking of using a recursive loop along the lines "if you have children, check if they have children, if they do, check if THEY have children and so on until they have no children and if so removeChildAt(0) of the parent you last checked.
ActionScript Code:
obj0
|-obj1
|-obj2
[Code]......
A quick second question, we all know that event listeners should be removed when no longer needed but I was wondering about the event.COMPLETE listener for loading say XML or a video file or any loader object. Is there any point removing that listener of is it in effect dead anyway because it has triggered when "COMPLETE" and won't ever trigger again? Isn't it still "listening"?
View 5 Replies
Nov 30, 2009
I have a set of swfs that open one on top of the previous as buttons are pressed. Thing is, once you've pressed buttons so many times that there are a ton of swfs on top of one another, the browser begins to run slower.
Is there anyway to remove all the swfs under the current swf in the code without disrupting the running of the current swf?
View 3 Replies
Jan 2, 2010
i want to do is to remove all the children (ninge) added with Timer when the user rolls out the mouse. The ideea is when the user moves his mouse over the movieclip it begins to snow and when it moves away i want all the snow to disappear.
ActionScript Code:
rama2_mc.addEventListener(MouseEvent.MOUSE_OVER, rama2);
function rama2(event:MouseEvent):void
{
[Code]....
View 3 Replies
Dec 2, 2010
I want to remove all of the textfields for a movieclip, only textfields. Does anyone know how to do this?
Code:
if(this.mcContentOnStage.getChildAt(i) is TextField){
"This must be a textfield! I need to remove it!"
//this.mcContentOnStage.getChildAt(i).text
}
View 1 Replies
Feb 28, 2008
is there a way to remove all children mcs from a movie clip in a way similar to
if (mc.numChildren) mc.removeChildAt(0);
(which is AS3 by the way) but for AS2? I need to "empty" a container movie clip from movie clips duplicated in it through attachMovie, so i can load other stuff AFTER its emptied
View 1 Replies
Jan 8, 2010
I have series of frames with stuff on them. Normally you can go through, and flash automatically removes them each time.
But if I setChildIndex, it remains on the stage permenantly and won't clean up. Is there anyway to tell flash to be able to remove it again?
View 3 Replies
Sep 28, 2009
I created a loop that adds the same movie clip 22 times inside of another movie clip and pushed it into an array in order to control it later. But i can't seem to find away to remove those children from the movie clip... is there a way to remove all children of a specific movie clip? I tried to create another loop but i cant remove the children using removeChild(arr[i]);
View 3 Replies
Mar 21, 2012
So i have a calculator and converter on two different scenes. I have two arrays which i stored for my number and operator buttons. I am using a button function to switch between scenes and would like to remove the children for all the buttons inside that array however it only removes one button inside the array. This is the code i have so far: My buttons:
[Code]...
View 1 Replies
Feb 3, 2009
how to remove children and Enterframe function from my carousel ? See code below:
ActionScript Code:
function createGallery(voteImagesArray:Array,voteNamesArray:Array,gallery:MovieClip):void {
[Code]....
I want to navigate to the next frame without the images playing in the bg.
View 0 Replies
Jun 22, 2009
How do I remove all children from a display object container? I want to make sure that when I re-enter a particular frame that there are no imageLoaders loaded into my photoGallery.
View 2 Replies
Nov 9, 2009
I have created a flash file to serve as an image gallery with several different chapters. Each individual chapter is represented by a different frame on the timeline. On each chapter/frame, there is a thumbnail gallery at the bottom of the screen. When you click on the thumbnail, I have loaders set up to load and display the full size image. Then I have a loaderX.addEventListener set up so that when you click on the loaded image, it disappears. The problem occurs when you leave a full-size picture open, and then you navigate to another frame. Then when you try and click on it, you can't remove it anymore.
Now, I can't remove the loader(s) when the next chapter button is clicked because unless the user has clicked on the thumbnail, the loader has not been added to the stage, so there won't be anything to remove. I tried adding the following 'if' statement into the function that navigates to the next frame,
'if(stage.NumChildren >0){stage.removeChildAt(0)}
but the problem with that is that then it just removes all the children and either doesn't advance to the next frame or is just removing all children on the next frame as well, so i end up with an empty stage.
I've been dealing with this problem for close to two weeks now, and I can't even find a bulky way around it, never mind finding a tight clean fix.
View 3 Replies
Mar 21, 2012
So i have a calculator and converter on two different scenes. I have two arrays which i stored for my number and operator buttons. I am using a button function to switch between scenes and would like to remove the children for all the buttons inside that array however it only removes one button inside the array. This is the code i have so far: My buttons:
[Code]...
View 2 Replies
Nov 5, 2011
I'm using for loop to display 3lifes on stage using:
[Code]...
and I have already create a hitTestObject on the character, once the character comes in contact with a movieclip, removeChild(Life); is triggered. The first child removed successfully but when it comes to the second one, an error appear:
[Code]...
What should I do to solve this? and how do I trigger an event after no more life is left?
View 9 Replies