ActionScript 3.0 :: Call Variable By Name Similar To GetChildByName?
Feb 23, 2011
I have a several functions that I can compact into 1 function via a for loop if only I can find a way to call the variable by name.
For example:This is what I want to accomplish: (However I do not have the slightest clue as to how to go about doing the below...)
ActionScript Code:
var test1:String = "testing 1";
var test2:String = "testing 2";
[code].....
I am able to do something similar to the above when using objects using methods such as: (I know not efficient, but its just an example to show what I am trying to accomplish.)
ActionScript Code:
var test1:String = "testing 1";
var test2:String = "testing 2";
[code].....
View 7 Replies
Similar Posts:
Nov 24, 2010
I want to monitor a variable. Whenever the variable value changes I want to call a function. In actionscript 2 I can use "watch" but in as3 what can do ?
View 1 Replies
Dec 28, 2003
I'm wondering how do u call a variable that has a variable name.
[AS]
max = 10;
For (i=1; i<=max; i++)
{
[Code].....
how can i do that? how do i address a variable name which is variable?
View 2 Replies
Sep 1, 2009
Is it possibile to call a field of a object using a variable? Something like:
[Code]....
View 5 Replies
Feb 28, 2009
I'm trying to declare a movieclip variable in a class by finding the instance name of the movieclip.
On my stage I have a 'Container' (linkage class name) MC, inside that is a 'PlayerInfo' (linkage class name) MC inside that is a 'healthBar_mc' (instance name) MC. healthBar_mc is what I'm trying to access.
the class where I'm trying to run this function is linked to a MC inside 'Container'
So I tried the following code:
[Code]....
View 11 Replies
Oct 28, 2008
I'm trying to use XML to load in 4 images to a movieclip within a movieclip that is already created on the stage. I'm trying to do this in a loop since there are 4 movie clips I'm trying to access. I can get it working without the loop, but it's figuring out the syntax that's causing the problem. Currently I have the following code:
function ParsePics(picsInput:XML):void {
var picsList:XMLList = picsInput.pic.image;
for (var i:int = 0; i < picsList.length(); i++) {[code]..............
View 4 Replies
May 2, 2009
I am adding a MovieClip to the container with the following code
ldr = new MovieClip();
ldr.graphics.beginFill(0xf0f0f0); l
dr.graphics.drawRect(xPos,yPos,IMAGE_WIDTH,0);
[code]......
View 5 Replies
Jul 7, 2010
I have many MovieClips and each has a name like "mcDummyClosed" and then and instance name "slideDummyClosed". Another MovieClip has a link to e.g. slideDummyClosed which I then call DummyClosed. I add a MouseEvent.CLICK event to DummyClosed.
Now without adding slideDummyClosed to the stage nor any other MovieClip can I with a string containing it's name get that instance? I've tried using getChildByName() but that only seems to work if I've already added the MC to be found and added before. My code looks something like this:
[Code]...
View 2 Replies
Sep 7, 2011
I am not sure if this is even possible so this is why I am asking. So you know how we can access a nested movie clip by name with the following code:
mainMC.getChildByName("nameOfMC");
I was wondering if it is possible to do the same thing with XML data. So for exaple:
xmlData.house would be mainMC.getChildByName("house");
(obviously I know that getChildByName doesn't work for XML and am looking for an equivalent command)
View 2 Replies
Jul 1, 2009
ok so im trying to change a dynamic txt in each button but i started with this one and i keep getting this error.
1087: Syntax error: extra characters found after end of program.
what is added or needs to be added? ive gone over the code several times and cant figure it out.
ActionScript Code:
var btnNum:uint = 7;
var spacing:Number = 0;
[Code].....
View 5 Replies
Jun 29, 2011
i want to call a function from within a function using a variable representing its name...
[Code]...
i've been tryin to figure this out for quite some time now since FLASH MX , i just kept abandoning a solution.. and now i'm once again in need of this , still cant solve it so im postin...
View 2 Replies
Aug 24, 2011
basically i want to populate an array with some data, photoArray[count]= varLoader.data.nombre; the problem is that "nombre" is suposed to be a variable, this is inside a loop and i have "nombre = "pic" + count;" before it, but it wont work, how am i suposed to call it?
View 3 Replies
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
Sep 26, 2010
How do i go about this,
Lets say i have a variable _a:Number=5 and _b:String="_a"
I want to call a variable whose name is contained in _b
View 5 Replies
Dec 28, 2011
I am simply trying to get the variable from JS but can't get it
Code:
<script>
var APIfound = true
</script>
[code]....
View 0 Replies
Jun 24, 2006
I'm just getting the hang of AS2 OOP, after avoiding it for all this time, and I have set up my first couple of classes.
One class generates an array, and the other class takes this array, and uses it it to place MC's on the screen, and gives each mc an onEnterFrame function. I have a stack of these onEnterFrame functions, named 'avoidIt1()-avoidIt11()'[code]...
View 2 Replies
Feb 27, 2007
I want to create a variable that I can call in a path. For instance:
Code:
var myVar = "varHome";
Then, to use in code:
Code:
_root.mcContent.varHome.gotoAndPlay(1);
Can you do that? This way obviously doesn't work (because I've tried it). Is it possible at all?
View 7 Replies
Sep 25, 2007
I am using Flash2004 MX
I thought this would be simple, but it hasn't been.
I have a seris of hidden MCs named star1, star2 etc.
I want them to become visible when I call this function.
star_fn = function() {
starcount++
starshow=("star" + starcount)
starshow._visible=true
}
But it is not working.
I thought maybe it was like converting variable info to a number format, but using a text scenario instead.
View 5 Replies
Aug 23, 2010
I am trying to call a variable from different class. I mean, I define a
PHP Code:
public var questionsAsked:String
variable in Main.as and want to call it from another class. but It gives me Access of undefined property questionsAsked.
View 2 Replies
Jan 7, 2004
Can I call a variable declared in a SWF, and call the same variable into another SWF, when i am loading it using XML.I am declaring a variable in the "Child movie", and am loading this "Child movie" into a "Parent movie" using XML. Can I retrieve the variable declared in the "Child movie" in the "Parent movie".
View 1 Replies
Dec 2, 2007
I seem to be having a bit of a problem here. I'm generating a load of class instances using the following code:
maxpersons=25;
for (var i:Number=1;i<=maxpersons;i++)
{
var person:Person = new Person;
[Code].....
OK. I then need to run through each of them and check for a collision with an object from the main stage (called redDot), which I pass to a method (called doDamage) within the class. I'm using the following code:
for (i=1;i<=maxpersons;i++)
{
if (game.getChildByName("person"+i).hitTestObject(red Dot))
{
game.getChildByName("person"+i).doDamage(redDot);
}
}
I keep getting an error saying "1061: Call to a possibly undefined method doDamage through a reference with static type flash.displayisplayObject."!
It just won't work. I've tried altering the code to:
game["person"+i].doDamage(redDot);
but I get an unexpected trace output saying "TypeError: Error #1010: A term is undefined and has no properties."
View 6 Replies
Jul 22, 2009
I have this line on my code:
nav_mc.getChildByName("go" + i + "_mc").alpha = 0; // this works fine
but then if I add this:
nav_mc.getChildByName("go" + i + "_mc").gotoAndStop(2); // Doesn't work
nav_mc.go1_mc.gotoAndStop(2); // Works
nav_mv is a MC on stage, it's child is another mc whit 2 frames in use.why the gotoAndStop doesn't work with the getChildByName?this is the error I'm getting: 1061: Call to a possibly undefined method gotoAndStop through a reference with static type flash.display: DisplayObject.
View 2 Replies
Mar 11, 2012
I'm trying to use the getChildByName function and for some reason it's not working. Here's the line that is causing the error of "TypeError: Error #1006: getChildByName is not a function."
PHP Code:
var contactBox:MovieClip = anyBox.getChildByName("earthBox" + i);
It is in a for loop and is definitely calling to a movieclip of the correct name in the MC array anyBox. I've searched the internet and haven't found anything (On the first page of google...)
View 5 Replies
Apr 23, 2010
I have a Timer class and i am trying to call a variable from that TimerEvent class. But i am not sure how to do that. Do you have idea?
[code]...
How can get a var from outside to a Timer Class?
View 4 Replies
Sep 25, 2011
I'm trying to pass a variable through a function, but I'm getting it's value 0. Here's my code:
thumbLoader.addEventListener(MouseEvent.CLICK, goToCategory);
function goToCategory(e:MouseEvent) {
trace(c);[code]....
this trace gives me value of 0. Normally I would do goToCategory(c) and inside that category I would get it's value, but in this case I'm calling this function with an event, how can that be done?
var c is declared globally, so I'm using it above this code in different place... is there smth like global $c like in PHP.. or there's some other way to do it?!
View 2 Replies
Sep 29, 2009
I'm brand new to actionscript and I've decided to try and make an overhead tile scrolling game. It's been going good so far, but here is my problem:
I have the level data stored in an array, where the number represents the corresponding tile.
I have movie clips in my library called "tile_1", "tile_2", "tile_3" etc.
Anyway, what I was thinking of doing was this:
var newTileContents:("tile_"+lvlArray[i]) = new ("tile_"+lvlArray[i])();
newTile.addChild(newTileContents);
Where, if the value in the lvlArray at [i] is 2, then it will create an instance of tile_2 etc.
But I am not sure how to to type the "tile_"+lvlArray[i] bit properly.
View 7 Replies
Sep 26, 2010
It is possible to call variables using this[ "stringname" ] for instance, to refer to a variable called "stringname".
However, when referencing a static variable by the name "stringname", the "this" attribute no longer works if applied.
Is it possible to use this technique with statics?
View 5 Replies
Aug 4, 2011
I want to use a variable in my movie clip code. Right now I generate a random U.S. state name and assign it to "correctAnswer". Then I want to assign that to myMovieClip.correctAnswer.gotoAndStop("down"); The problem is that the variable is not recognized and is seen as correctAnswer instead of the U.S. state that was assigned to it. My code is below.
ActionScript Code:
// Correct answer is randomly generated and can be any U.S. state name
correctAnswer = "utah";
// Using the variable correctAnswer this should come out as myMovieClip.utah.gotoAndStop("down");
myMovieClip.correctAnswer.gotoAndStop("down");
View 2 Replies
Jan 23, 2003
Is it possible to call an instance of a movieclip by a variable name?
Say I have several movie-clips on the main timeline and a variable named "disabled". I want to click a button and have be able to tell "disabled" to goto frame 2, where disabled will contain the name of the movie-clip. can I do this?
View 3 Replies
Dec 23, 2008
I need a way to call a function from a function. It's not that hard, I know, but the name of the nested function is a variable passed into the first function. Like in setTimer() and other functions in flash, where you have the name of a variable to call. I'm going to have a lot, so doing some cheap if(funcname == blabla){blabla();} won't work.
View 1 Replies