ActionScript 2.0 :: How To Remove Element From (Special) Array
Dec 28, 2004
I am trying to remove elements form an array. The array is kind of special: content depends on what you have clicked or not:
Code:
pArr = [];
for(var i =0;i<max;i++){
johndoe[i].pressed = false;
johndoe[i].onPress = function(){
this.pressed = !this.pressed;
if(this.pressed){
pArr.push(this.obj)
}else{
pArr.remove(this.obj);
}}}
Of course the remove function is my pb, not done yet. How can I remove the same object from the array, knowing that the array can contain several times the same object, so I do not want to delete it many times but just the good one? So the trick is to remove only the object associated with the johndoe button. Maybe the pb comes from the way I push the elements?
View 5 Replies
Similar Posts:
Jun 16, 2009
I have an array used to track shots fired from a cannon, and when they hit the ground they are removed.
I would like to know what is the most efficient way of finding and removing a certain element from an array. I heard that using pop() instead of splice() was faster, is it ?
Also, the big question I have is that the only way I see of actually finding the element in the array is using
Code:
for(i=0;i<array.length;i++){
if(array[i] == movieClipToRemove){
//i == movieClip index in the array
}
}
Then I would use either splice() or pop() to remove it from the array before deleting the MC. Is there a better way than scanning through the whole array comparing each element to the triggering MC ?
View 2 Replies
Jul 31, 2009
how to remove a particular element from array
View 1 Replies
May 26, 2010
I have an array of objects. Each object has a property called name. I want to efficiently remove an object with a particular name from the array. Is this the BEST way?
private function RemoveSpoke(Name:String):void {
var Temp:Array=new Array;
for each (var S:Object in Spokes) {
[Code]....
View 9 Replies
May 8, 2010
First of all, how should I remove an element from an array?Now I am using arrays this way (just an example):
array["red"] = 0xff0000;
array["black"] = 0x000000;
How do I remove "red" for example from the array?
View 6 Replies
Mar 3, 2009
i have items drawn my stage dynamically and information regarding them in arrays.when i remove an item from the display list:Code:a.target.graphics.clear(); then use the spliceď and index of method to locate chosen MC remove their values from specific array :Code:mcName.splice(mcName.indexOf(+mcRef.boxCount),1);Now when i remove any item which isnt the lastitem of the array, then trace all the data of the array using a loop the values appear to have corrupt? like they have lost the order in the array since one was removed?
View 21 Replies
May 3, 2010
Using a for-loop I made a grid of movieclips. But I wanted it so every second row had one less than the one above it. I thought I had that sorted when I placed an if statement in the method. However, flash still "sees" the missing movieclip. I've tried to splice the array element from it, but instead of removing it, it seems to have copied it.
Here's the code:
Code:
package
{
import flash.display.MovieClip;
[Code]....
View 3 Replies
May 8, 2010
First of all, how should I remove an element from an array? Now I am using arrays this way (just an example):
[Code]...
View 8 Replies
Jun 1, 2004
How can i remove the element from array in actionscript? i have this array: myArray = new Array ("1","2", "3", "4", "5"); i want to remove the element "3" when i press button.
View 3 Replies
Mar 11, 2009
I am trying to remove an element from an array by using splice like:
Code:
myArray[1].splice(2,1);
This works & finds the element I am looking for but it doesn't really remove the element but it will just insert a blank object instead. Am I doing something wrong here. How would I "really" remove the element, meaning that the Array would become shorter?
View 8 Replies
Oct 1, 2010
Is there a way to generically remove an object from an array? (maybe not using array.filter or creating a new array)
Example:
var arr:Array= new Array();
//create dummy objs
for (var i:uint=0; i < 10; i++){
var someObject:SomeClassObject = new SomeClassObject();
[Code]....
View 3 Replies
Mar 24, 2011
Here's what I'm currently doing/trying to do to accomplish my goal. But it is not removing the "row" the way I would like it too.
So, I'm making an object, then pushing it into an array. And the adding to the array part works fine and just as I expect.
var nearProfileInfoObj:Object = new Object();
nearProfileInfoObj.type = "userInfo";
nearProfileInfoObj.dowhat = "add";
[Code].....
But this doesnt seem to be deleting the whole row like it implies.
View 3 Replies
Sep 17, 2009
So I have a flashobject which I need to pass a formatted DateTime string to.
My code:
string date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
which outputs as: 2009-09-16 22:26:45
However when it is actually output to HTML and swfobject it renders it as:
so.addVariable("inNowDate","2009-09-16+22%3a25%3a13");
I think this is messing up a calculation that the flash object does based off the current time. Do I need to encode or decode this?
View 2 Replies
May 13, 2011
I'm looking for a regular expression that can remove all the following characters from a string (and Whitespace too): ~ % & ; : " ' , < > ? #
View 3 Replies
Mar 19, 2010
so I have a string "bla dla dla vre bla 54312" I want to turn it into "bla dla dla " by saying something like
function(string, "vre");
how to do such thing?
View 3 Replies
Jun 28, 2009
Is it possible to, if you have an array of class names like ActionScript Code: var city01names:Array = ["pic_01", "pic_02", "pic_03" ...] make a new array which would read these names, instantiate them, and push them into a new array containing the instances of all these pictures, which I could then use for a slideshow?
[Code]...
View 7 Replies
Oct 4, 2006
I have an array called dropTarg1 which stores dropped-in items.I want to loop through this array and in a textfield, display each array item on a new line of this text fieldI think I need to use something like Array.join("/n") but I can't get it working properly. I hope that the /n would create a new line of the text field called reviewBoxContentText.
for(var i:Number = 0; i<dropTarg.length; i++){
with(reviewBoxContent.reviewBoxContentText){
autoSize = true;
[code].....
View 2 Replies
Aug 19, 2010
How do I remove the last element in a arrow?
I have an arrow called lagers.
When I press a button I want the last element in the arrow to be removed.
I heve tried this code, but I cant figure it out.
removeMovieClip(lagers[lagers.length]);
View 4 Replies
Mar 14, 2005
I have 4 buttons and an empty array. When a button is clicked,I'm adding a element to an array with array.push. However, I want to check the array 1st to see if that element exists. If so, then don't add it. Here's what I have thus far
[Code]...
Now I'm taking it I'd have a conditional statement to see if the element already exists. Unfortunatly I cannot just disable the button. I searched the AS dictionary but oddly enough it doesn't have an easy way to search an array. And IndexOf seems to only work for a string.
View 3 Replies
Jun 2, 2011
I am wondering how to remove a specific element from a vector.[code]...
So from the code example above I was using Element.pop() but thats wrong -I think -as it removes the LAST element. I need to remove the element at the location of the match.
View 7 Replies
Aug 29, 2011
I have this array:
[Code]...
I want another array which takes the values of the price from the 1st Array. Can we do something like this? private var another_price_array:Array = [all_array.price]; This second array will be used to populate a ComboBox, or can I populate the combo directly from the first array itself?
View 2 Replies
Nov 25, 2010
I'm trying to do a game in as3, but i get a problem, i got an array :var movieClipArray:Array = new Array(new monClip1(),new monClip2(),new monClip3(),new monClip4(),new monClip5())that each clip appears randomly and for a random time, but for special buttons, you can suppress some clips, the problem is that with monClip1, and monClip5, its quiet easy with shift() and pop(), because they will always be the first and last of the array, but for the rest, s they wont be the same order, we cant only use a splice(), so I tried with indexOf, but it doesnt work ...
if(blablabla ...)
{
movieClipArray.splice(movieClipArray.indexOf(new monClip2()), 1);
}
View 7 Replies
Jan 8, 2010
i need to split a large text file into an array at line breaks so one array element = one line.i have tried the using "" in both match() and in RegExp but it doesnt work.i had the g and m flags on. tried the $ sign too.
View 8 Replies
Dec 28, 2011
I know how to get one element from the array. But I don't know let's say how to take 3 elements ( position 0,1,2). I don't know how to trace all the three together. I am getting errors all the time.
var myArray:Array = [1,2,3,4,5];
trace(myArray[0]);
trace(myArray[0], ?,?);
View 3 Replies
Aug 18, 2009
I have an array like this
public var dataAL:Array=[
{Kiv:"cash", jan:26,janTarget:28,feb:27,febTarget:26,mar:30,marTarget:32,apr:31,aprTarget:32,may:28,mayTarget:29,jun:46,junTarget:32,jul:37,julTarget:39,aug:40,augTarget:42,sep:41,sepTarget:42,oct:48,octTarget:49,nov:40,novTarget:41,dec:38,decTarget:40},
[code]....
Now if i want to access febTarget for cash how will i do it?
View 1 Replies
Jul 10, 2011
How can add element to array in ActionScript3
If i have an array: var myArray:Array;
How can add element to this array "myArray", something like this:
myArray[] = value;
My second question is: How can compare if variable value exist in array element value?
Something like in_array function in php
View 3 Replies
Apr 14, 2009
I'm trying to make a memory like game. It might be called Simon or Simple Simon or something. Basically something is shown for a second and then gone, then the user clicks that something. Then two or three things are shown in order and then gone and the user clicks the order.
I'm stuck at the very beginning, just showing something from an array for half a second or so then stopping and then starting over and adding one more element.
View 4 Replies
Jun 22, 2010
This is for a small RTS prototype I'm working on for some fun, but I've hit a snag.
For examples sake, I've got two arrays, activeAgents and houseArray. A number of movieclips (player controled units/agents) are stored in activeAgents and houseArray is used to store any agent that is "inside" the house.
If an agent in activeAgents hitTests the house that houseArray belongs to and the agent ISN'T already in the houseArray, then I want to add the agent from activeAgents INTO the houseArray.[code]...
View 1 Replies
Jun 19, 2011
Code:
arrayA[i] = arrayB[j];
This results in:
1:[object #7, class 'Array'],
I'm would like to set arrayA[i] to the value of arrayB[j], not set arrayA[i] to the object arrayB[j].
I can't use .toString() as I'm trying to pass on an array inside an array.
View 1 Replies
Oct 8, 2009
I'm using the .unshift method therefore the newest values go into [0] and the rest are pushed down.
What is a good method to remove a value from an array once it has passed a certain length? For example i only want my array to hold 5 values.
Also, is there a method for clearing the entire array, ie removing all values? Or will i have to manually change all the values with a loop?
View 2 Replies