ActionScript 2.0 :: Using [i] To Access Part Of An Array?
Jun 16, 2010
I am trying to play movie clips from an array. I can do this using randObj[1] but would like to use a variable randObj[i] to play the movie clips. I do not want to use root. I think something is wrong with the syntax i am using because randObj[i] comes back undefined when i trace it. Here is the code i am using
Code:
i=0;
var randObj:Array = new Array("obj1", "obj2", "obj3");
[code]......
View 3 Replies
Similar Posts:
Feb 15, 2011
I have used a method to shuffle a part of a Array, but i noticed that it does not work very well.When i run this method I sometimes get empty array values.So if you would try the example below and test it out some times you would get a right result but sometimes a wrong result.For example when i run this i get in my trace output:
a,b,c,d,g,,e,f (here after the g it goes wrong)
a,b,c,f,g,d,e (here it goes right)
a,b,c,d,,g,f,e (here it goes wrong)[code]...
View 8 Replies
Mar 21, 2011
I have an array named "lagers1" when I trace lagers1[0] I get: lagers1[0]= _level0.firth_l0
Now I want to decide if "firth" is in the name of "_level0.firth_l0". I have tried with slice but all the time it shows undefined. Is there a way to get a part of an arraymname in a variable?
View 9 Replies
May 4, 2010
I want to create one array based on another, but only using part of the data. Here's my first array:
Code:
var dropzoneArray = new Array();
dropzoneArray.push("disease0", "image0.jpg");
[code].....
View 9 Replies
Jan 23, 2007
I am currently storing the items of this array as a variable. thats cool, but what I want to do is remove the b so I get 1 2 3 4 5 6 7 8 9 10 instead of b1 b2 b3 b4 etc.
Code:
buttonArray = [Enter_me.b1, Enter_me.b2, Enter_me.b3, Enter_me.b4, Enter_me.b5, Enter_me.
View 1 Replies
Jan 28, 2008
[code]Well, how do I edit ONLY the number in myArray[2,1]?Like, I thought it would be something like myArray[2,1]=2419, but weird stuff happens then and I think it overwrites my old myArray
View 5 Replies
Jul 3, 2009
in a flash template i found several buttons with almost the same action script code. on pressing the button a window popup with different text (for each button a unique text). the following code is in the code section of the buttons, only the two last codelines are different for each button.
[Code]...
so i think that the input of the unique text for each button is handled in the last line "_root.READ = 22". i also found in the bibliothek the belonging text parts. my problem now is that i dont know where the connection is set between the text part and the array/variable READ. in this case the connection is 22, but i dont found any property in the text part or in the property of the button where the connection is set to 22. i use flash cs4.
View 3 Replies
Jul 3, 2009
I had to check a text input from a user to se if is inside an array, the array contains single words with possible answers. What I need to know is; if somebody for example type the "sky is blue" and the array contains "blue", I want it to recognize it even is there's more words in the given string that are not in the array.
View 8 Replies
Sep 1, 2006
i am trying to make a custom class that has a small number of variables but I can't seem to get the array part to work.[code]I can't seem to get it to work. I can set and access the other variables OK its just the array thats giving me problems.
View 2 Replies
Aug 24, 2010
I have this code to try to acess the values of the array in the arraycollection but it does not work it actually creates a value to the end of the arraycollection. can anyone tell me what im doing wrong i basically whant to modifys the individual arrays in the arraycollection and add Login_user.
Code:
for(var i:int = 0; i< dispArray.length; ++i){
dispArray.addItemAt({"login_user":"XXX"},i);
}
View 1 Replies
Aug 5, 2009
how I can access array data inside of an mc from the main timeline.. I am hoping to get into an array called children, which is inside of an mc, which itself is inside of an array called mcs.
Here is what I am trying to get to: mcs[m].children[0];
View 1 Replies
Nov 19, 2010
Can I use the indexes of an array that is a child of another array?
View 2 Replies
Aug 4, 2009
I created an array in the var declarations with Code: var private eDrag:Array In a function that adds imported mcs to the stage, I also added code to push each to the array. Here is an example of a block of code loading the object with the part pushing the object to the array at the end:
[Code]....
View 4 Replies
Mar 14, 2011
I have a List, and I have an ArrayCollection.
The ArrayCollection is something like:
<mx:ArrayCollection id="arrColl">
<mx:source>
<mx:Array>
[Code]....
I need the List to only display the scores of the student.
Something like:
<s:List dataprovider="arrColl[Student A]"/>
or:
<s:List dataprovider="arrColl.Student A."/>
View 2 Replies
Mar 9, 2011
Ok perhaps ive bitten off too much here...I know you are not supposed to parse xml/html to regex but the thing is there just arent many other options.Im using AS3.im parsing the source of textflowlayout text to a different format.
string to parse :
< fontFamily=Verdana encoding=unicode fontWeight="bold"> some text < fontFamily=Verdana encoding=unicode > some text < fontFamily=Arial encoding=unicode fontStyle="italic"> some text < fontFamily=Arial encoding=unicode fontWeight="bold" fontStyle="italic"> some text
what i really need is:
< fontname=Verdanabold encoding=unicode> some text < fontname=Verdana encoding=unicode > some text < fontname=Arialitalic encoding=unicode > some text < fontname=Arialbolditalic encoding=unicode > some text
logically i think of it as taking apart the string into substrings
checking if there are fontWeight or fontStyle in the substring
if there is then appending the font name with the weight or style so so that the font name becomes font NameWeightStyle.then rebuilding the string.The font could be any font with variouse styles or weights..so far:
pattern = /<(.*?)>/gixsm;
var matches:Object = pattern.exec(str);
var finalstring:String = "";[code]...........
View 1 Replies
Mar 11, 2012
I'am looking for a flv/video player which allow to seek for not loaded part of the video,just like on youtube.
View 1 Replies
May 10, 2009
I've been having a few problems with accessing an array from a different function.
The array I want to use is from the makeFly function, which generates instances of the Fly MovieClip. I want to access the array from the paperSwing function, which should test for a collision between the mouse cursor and the fly movieclip, and then if true remove the instance. This is the part where I'm having a bit of trouble, I'm not sure of how to access the array "name[i]".
This is from the "Main" Document class:
Code:
package {
import flash.display.*;
import flash.events.*;
[Code]......
View 2 Replies
Sep 13, 2011
I'm having trouble accessing the turnQueue array which is being updated in the first function and accessed in the second, no idea what the rules are between functions for actionscript. Heres the code, I want the turnQueue to be growing as keys are pressed, and at the moment its not updating from the first function.
public function keyListener(e:KeyboardEvent):void {
trace("Key Entered");
if (e.keyCode > 36 && e.keyCode < 41) {
[code]....
View 2 Replies
Jun 2, 2009
I need to access an array that's on the maintimeline from with in a movie clip im having issues with it.
The variable has all its info on the maintimeline but doesnt show up when i reference it in the movie clip So i tried referencing to the array var thumbURL:String =parent.thumbs ; and var thumbURL:String =root.thumbs ; but got an empty variable.
View 7 Replies
May 10, 2009
I am fairly new to actionscript, I've been having a few problems with accessing an array from a different function.
The array I want to use is from the makeFly function, which generates instances of the Fly MovieClip. I want to access the array from the paperSwing function, which should test for a collision between the mouse cursor and the fly movieclip, and then if true remove the instance. This is the part where I'm having a bit of trouble, I'm not sure of how to access the array "name[i]".[code]...
View 2 Replies
Jul 16, 2009
I've successfully access a web service in as3 and pulled the xml from it into a large array of objects
ie
Code:
array
object
array
[Code].....
This has to be accessed at a later point by the UI in order to build itself. I can't figure out how to create a loop or method or whatever to access this array.
I need several ways of accessing it, so maybe I'm thinking of a method called accessSpecificItem(propertyName:String); <- to set up each UI item traceOutAllItems(arrayName:Array); <- for testing countNumberOfItems(arrayName:Array); <- for the UI to figure out how many items it needs to build
View 3 Replies
Aug 12, 2010
In AS2, you used to be able to access an array using a string variable by putting it in [].[code]...
Is there a way to do this in AS3 without having to create pointers and references?
View 3 Replies
Sep 13, 2011
I'm having trouble accessing the turnQueue array which is being updated in the first function and accessed in the second, no idea what the rules are between functions for actionscript. Heres the code, I wanted the turnQueue to be growing as keys are pressed, and at the moment its not updating from the first function.
[Code]...
View 1 Replies
Feb 21, 2010
I need some kind of command to access everything inside an array, mabe something like: myarray["everything"]._x=3
View 1 Replies
Jul 9, 2011
I need to access the elements of an array that is declared in the main swf(_level0). But I need to change it from another swf.How can I do it??So far I have this:
MAIN SWF:
var vector1:Array = [biblio_vid1, biblio_vid2, biblio_vid3, btn_1_4, biblio_vid4];
OTHER SWF:
var vector2:Array = _level0.vector1.slice();
trace(vector2); // undefined,undefined,undefined,undefined,undefined
View 2 Replies
Oct 27, 2010
var count:uint = 0;
var textInputs:Array /* of TextInputs */ = [];
for(var i:String in columnsData){
[Code]....
here how can i access the first, second of Array of textinputs in the form of string or any thing to further proceed
View 2 Replies
Jan 24, 2010
this is my code:
var arr:Array = new Array("ABCD","BCDA");
for(var i:int =0; i < arr.length; i++)
[code].....
View 3 Replies
Jul 19, 2011
I'm learning a lot by reading the questions and answers that are asked in the Forum. Now it is my turn to ask a question that is probably a rookie, but I have spend 3 days breaking my head to try to find a solution and have not found it yet.
I am trying that the program responds to each click of the player in a box that is white and turns red, with a random click in another box. Something similar to Tic Tac Toe.
My problem is that I can't make te program to access the boxes in the array by programming. When I try the program to access the box with p.ex.: "this.newBox.boxplus30.gotoAndStop (2);" I always get the error "object null or undefined". I have tried everything you can imagine to formulate that line of code, but without success.[code]...
View 9 Replies
Sep 22, 2011
I have 3 extenal flv files that can be loaded into the main movie when pressing a button.I am using seek and cuePoints to provide a DVD 'chapter-type' navigation.The cue points (in seconds) for each flv are stored as separate arrayshen I click to load a flv, I want to change the array that is being used to seek the playhead.I thought I could do that by using a 'current movie' variable and use an expression to access the relevant array. The essential code (for brevity) is like this:
//
var flv1cuePoint:Array = new Array(10,30,50);
var flv2cuePoint:Array = new Array(30,50,60);
[code].......
View 2 Replies
Dec 30, 2003
I've done the following [code]trace gives me a,b,c. am i missing out something? i cant seem to access the array from outside onLoad() ...
View 5 Replies