ActionScript 3.0 :: How To Call Property With Variable
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
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
Jan 19, 2010
I've searched Google, but perhaps my search skills for this one are not kosher.
Created a simple class
ActionScript Code:
package Pic{
public class PLoader{
import flash.events.*;
[Code]....
URL never equates to anything. But if I trace it inside the class, it shows up correctly.
how do I wait until URL is set from inside the class before calling to the property?
View 1 Replies
Feb 7, 2012
I have a dynamic Class and what I would like to do is call a method everytime a property is appended to the class during run-time.
[Code]....
View 2 Replies
Mar 23, 2011
I have a problem... i wanted to loop a service call so that it can dynamically populate my array..this is my sampple code
var i:Number = new Number();
{
for(i=0;i<facilityIDArray.length;i++){
[code].....
View 1 Replies
May 12, 2011
If I have a .mxml file that has a method in it and a public property, can I have the method execute whenever the property changes.
<?xml version="1.0" encoding="utf-8"?>
<mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
[Code].....
In another .mxml file I have added this .mxml file like so:
<viewComponents:MyViewComponent myProperty="{myVariable}" />
View 3 Replies
Feb 24, 2010
To my knowledge, there are 3 options:1 - parent.publicPropertyOrMethod.2 - using static vars/methods.3 - dispatching events.Under best practise for OOP development, which is the "best" method? Are there any more?I dislike #1 and never use it as it and can easily descend into hideous parent.parent.parent references that are easily broken. #2 has it's own problems whereby attempting to get/set instance variables doesn't always work through a static function (I am yet to completely understand this). #3 is great for triggering methods (I use this the most) but sucks for altering class properties and suchlike.
View 1 Replies
Jan 15, 2007
i wanted to loop a service call so that it can dynamically populate my array..this is my sampple code
var i:Number = new Number();
{
for(i=0;i<facilityIDArray.length;i++){
getEventsFromFacilityIDResult.token = currenteventService.getEventsFromFacilityID(facilityIDArray.getItemAt(i));
getEventsFromFacilityIDResult.addEventListener(ResultEvent.RESULT,toShowArray);
}
then this is the function that is called by the service call
{
public function toShowArray(event:ResultEvent):void
{
var i:Number = new Number();
[code]....
the main thing that is happening here is only the last call will be added to showArray the other calls are disregarded..
View 5 Replies
Jan 23, 2009
I'm using a custom Class and I put it trace(myMC.x);. Sometimes it works just fine, but at other times it says that its a call to a possibly undefined property.
View 9 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
Jan 25, 2009
How do I assign a property to a variable? For example, say I want to change the alpha of a clip named "theClip":I tried:
var theAlpha = theClip.alpha;
theAlpha = .3; THis doesn't work.
View 6 Replies
Sep 1, 2009
Is it possibile to call a field of a object using a variable? Something like:
[Code]....
View 5 Replies
Aug 10, 2011
I build an application that need httpservice feature. This application will be deployed at some computer. So, I don't have an idea to set variable at url property.
<mx:HTTPService id="personRequest" url="[URL]" useProxy="false" method="GET" resultFormat="text" result="personJSON(event)">
<mx:request xmlns="">
<getPerson>"true"</getPerson>
</mx:request>
</mx:HTTPService>
I already try with block {}, but no use. Can't I set a variable at property url mx:HTTPService?
View 1 Replies
Mar 28, 2012
I'm wanting to set an Object property using a variable value. I just can't get it to work as it assumes the variable name is the name of the property: I've simplified the issue rather than posting my whole code.[code]It always applies 'attrName' as the property name rather than the value of 'attrName'.Tried loads of things but just can't get it to work.
View 1 Replies
Jun 9, 2004
im doing a loop to attribute the values to _x property, and use it to make random movimets with movieclips.i ve got 16 movieclips in my stage, named b1, b2, b3....b16 and the code is
Code:
count = 0
chama = setInterval(function () {
count++[code]....
so... after 3 time that setinterval execute this function, i�d like to call a function to get this movieclips, in their current positions and take them in especifics positions on stage.so I created an Array and I�m trying to use this code to define variables with values from the Array, and make a moviment to the especifics positions
Code:
xC = [63.9, 16.95, 45.85, 65.55, 18.75, 26.2, 55.85, 55.25, 28.85, 21.95, 36.6, 35.75, 14.7, 45.7, 14.45, 60.75]
function cPos () {
for (a=1; a<=16; a++) {[code]...but it�s not working...why??what can I do to Take the variables inside the array and use them to respectives movieclips b1, b2....b16?
View 2 Replies
Jul 10, 2009
contactButton_mc.contentLoadTarget = loadContactForm();
How do you write this code so it works and doesn't run the funtion? I want to associate the function with the button so I can load it dynamically with event.currentTarget. Played with storing the funtion in a another variable but wasn't sure how to do that either
View 3 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
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
Apr 8, 2010
I have three text boxes on the stage id=red, blue, green same as the keys in my
cars Object/Array
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
[Code]....
So I'm thinking "tempObj.text" would equal red.text but I can't stick "tempObj" with ".text" is there a way this can be done?
View 1 Replies
Oct 8, 2010
I'd like to use a variable I'm pulling from XML to compleet a property like so[code]...
I could of course construct some large switch statement to account for every blending mode, but why wont this work - and how might it?
View 2 Replies
Apr 26, 2011
ActionScript Code:
var object:Object = new Object()
var counter = 0
[Code].....
Can you really not pass a variable into an Object property?
View 3 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