ActionScript 2.0 :: Get A Part Of An Array-name In A Variable

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


Similar Posts:


Where The Connection Is Set Between The Text Part And The Array / Variable READ

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

ActionScript 3.0 :: Array, Shuffle A Part Of An Array Using Start And End Index Is Not Working Properly?

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

ActionScript 2.0 :: Grabbing Part Of An Instance Name And Using As A Variable

Jun 11, 2005

I have 36 buttons on my stage that are named [thumbBut0, thumbBut1, thumbBut2,..., thumbBut35]. Each button is a thumbnail image. I want to have it so that when the user clicks on a given thumbnail, the full-sized image corresponding to the thumbnail gets loaded and viewed...yada, yada, yada... So, if the user clicks on thumbBut25, the 25th image gets viewed...

My question: is there some cool way that I could avoid writing 36 different (although they would be similar) "_level0.thumbButXX.onRelease = function()..." type things for each of the 36 buttons. In other words, when the user clicks the instance "thumbBut25" something grabs the "25" part out of the instance name, converts it to an integer, and passes it on to a function that loads up the image that corresponds to "25"?

View 3 Replies

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

ActionScript 2.0 :: Assigning Part Of An Array To Another One?

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

ActionScript 2.0 :: Remove Part Of Any Array Item?

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

ActionScript 2.0 :: Setting A Single Part In A 2d Array

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

ActionScript 3.0 :: Possible To Check If A Complete String Or Part Of It Is In An Array?

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

ActionScript 2.0 :: Setting An Array As Part Of Custom Class

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

Actionscript 3 :: After Shuffling Array - Variable = Array[index] Gives 0, Trace(array[index]) Gives Correct Number

Aug 16, 2011

I think it would be simplest to explain it like this:

[Code]...

View 1 Replies

ActionScript 2.0 :: Calling A Function With An Array Variable As Arguments Is Resetting Array?

Oct 12, 2006

I'm going to post the full code of the two functions, disregard the "fluff" unrelated to the two functions as it is all working flawless, I've tested this HEAVILY and cannot understand why it keeps setting the entire array to undefined!

Code:
// processReplace Function
function processReplace(transferFiles) {
var processArray:Array = transferFiles.slice();

[Code]....

Basically it's supposed to check to see if the file exists and return as true if it does and add it to a replace array, then the replace array is processed into a single string and put into a dialog box through the flash wrapper prompting them to "replace the files or not".

It makes the replace array just fine, it actually even has the right "count" in it but it's setting all the "filenames" to undefined because of the exists = processSearch function.

I even tried to make a new array and run the search just from that one and set the values from the old one and it's still failing.

Is it because of the "break" or can anyone figure it out? Iknow it's hard because you can't use the code

View 1 Replies

Flash :: "Variable * Is Not Defined" In An Unfindable Part Of Code?

Dec 8, 2010

I am fairly new to Flash. I have a stage up with a simple button; the Instance Name is init. My .as script (MainTimeline) is accessed externally from the stage:

[Code]...

View 1 Replies

ActionScript 2.0 :: Change The Value Of A Variable Listed In An Array Using The Array?

Aug 25, 2008

I want to change the value of a variable listed in an array using the array. for example:

Code:
var theVariable:Number = 15;
var theArray:Array = [theVariable];
now if I try this

Code:

theArray[0] = 20;

I just get an array with 1 value of 20 in it and it no longer references theVariable what i want to do is change the value of theVariable with out removing it from the array but referencing it from the array in a loop or something.

View 5 Replies

ActionScript 3.0 :: Loading The Object With The Part Pushing The Object To The Array At The End - Not Working

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

Xml :: Make A <s:List> Dataprovider="certain Part Of An Array"?

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

Loop Through An Array And Use The Array Value To Reference A Variable?

Sep 25, 2009

I want to loop through an array and use the array value to reference a variable.

The Setup:
(For illustration only. Not actual script)
My MCs:
triangle_mc
square_mc

[Code]....

View 1 Replies

ActionScript 3.0 :: Using An Array Variable In Another Array

Jan 27, 2011

Sorry if the title is a little confusing. Here's what I meant - I have an array and and object. Let me give a visual:

This is my object:

obj["id"] = ["1","2","3"];
obj["name"] = ["na","no","ne"];
my itemArray:
itemArray = ["id","name"];

[Code]....

but it doesn't work. How do I actually use the arr[i] variable in the array? :s

View 1 Replies

Regex :: If Part Of Substring Is True Then Replace Part Of Substring With Running Var?

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

Flash :: Flv/video Player Which Allows To Seek For Part Of Not Loaded Video Part?

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

ActionScript 3.0 :: Add Array Variable To MC?

Feb 8, 2011

Wanting to add an array to a MC like:

var mc:MovieClip = new MovieClip();
mc.myarray[0] = movieclip1; // some mc name
mc.myarray[1] = movieclip2; // or push it

[code]....

View 2 Replies

ActionScript 2.0 :: Variable In Array, XML?

Oct 22, 2011

I basically need to load information from an XML. Then depending on which button is clicked(apartment in a building) that specific info from the xml needs to load in a txt field.

Here is my actionscript and xml code. I'm stuck on how to assign " i " to each apartment in the building.

[Code]...

View 1 Replies

Retrieving The Value Of An Array Variable?

Jun 19, 2009

I have an array variable called ball[#], which value starts at 0 and is incremented up to 8. I also have a corresponding array variable called _ballPlaced which returns true or false if a ball is placed in a target zone. What I would like to do is retrieve the array value variable from the ball[#] at any time. For instance, the ball[#] variable can be clicked and dragged, so when it's selected it becomes the event.target. E.g. How can I put the array value of the ball[0] in the ball _ballPlaced array.

ActionScript Code:event.target._ballPlaced[/* retrieve vale of ball[0] array i.e. 0 and put it in here */]

View 1 Replies

ActionScript 2.0 :: Set Variable Values From Xml Array?

Jun 15, 2009

I am desperate about this.[code]...

Another thing: how to access array values from outside of function?

View 2 Replies

ActionScript 3.0 :: Using Array Value To Reference Variable

Sep 25, 2009

I want to loop through an array and use the array value to reference a variable. The Setup:(For illustration only. Not actual script)

[Code]...

View 3 Replies

Flex :: Add Array Data To Variable?

Oct 11, 2011

I have a app that currently gets event data from facebook and displays this into a list[code]...

View 1 Replies

ActionScript 2.0 :: Call A Variable From Within The Array ?

Feb 15, 2009

I have global variables:

_global.var1Array
_global.var2Array
_global.var3Array
_global.var4Array

and so forth.The issues is I need to call a variable from within the array but depending on an option the user has chosen it needs to call the right one.At the moment I am trying

end = "_global.var"+userOption+"Array["+array#+"]";
userOption being the needed array
array# being the needed entry within the array.

However when I try and use this I of course just get it like a string, not as a variable...

View 4 Replies

ActionScript 3.0 :: Retrieve Value Of An Array Variable?

Jun 19, 2009

I have an array variable called ball[#], which value starts at 0 and is incremented up to 8.

I also have a corresponding array variable called _ballPlaced which returns true or false if a ball is placed in a target zone.

What I would like to do is retrieve the array value variable from the ball[#] at any time.

For instance, the ball[#] variable can be clicked and dragged, so when it's selected it becomes the event.target. E.g. How can I put the array value of the ball[0] in the ball _ballPlaced array.[code]...

View 0 Replies

ActionScript 2.0 :: Use Array Item As New Variable Value?

Feb 3, 2010

What I have: 2 buttons on stage (NEW_YORK and CHICAGO) which are given an onRelease function trough a forLoop (so far so good).

What I need: For those to buttons to trace their own array item when i press them.

The problem: If I summon the array item static (array[1]) it works, but when i try to make it dynamic (array[i]) it comes back as undefined.

I enclosed the .fla.[code]...

View 2 Replies

ActionScript 3.0 :: Using Variable Name In An Associative Array?

Feb 9, 2010

I'd like to use a variable for the field name of the associative array, but my brain is not remembering what I did long time ago when I needed it.

[Code]...

View 9 Replies







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