ActionScript 2.0 :: Variable Button Values In Loop?

Mar 15, 2010

I have a query regarding assigning values to buttons in a for loop, I will explain:This is a string which I want to assign to a button value via getURL:

var myURL = "http://www.mywebsite.co.uk" + "/?Group=" + mySharedObject.data["destination"+i] + "&" + "SearchType=654&" + "Target=offers&" + "Paging=on&" + "HotelName=" + mySharedObject.data["hotel"+i];

[code].....

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Making A For-loop With Button Variable?

Jul 31, 2002

The situation is like this:I have Five buttons named button1 to Button5.What I want is to make one button invisible.To to this I have a for 1 to 5 -loop and I want to make one button invisible if it meets certain criteria.Is this possible without make an if-line for each button or not??

View 4 Replies

ActionScript 3.0 :: Loop With Varying Values Depending On Where Are In The Loop?

Jul 20, 2009

I have need of loops / nested loops that pick different figures depending on where you are in the loop. The whole function needs to run through 'ml' times. 'ml' is a dynamic figure. Loop 1 = While the loop is within the first 12 iterations, 'exconemp' must equal 100. For iterations 13 - 24, 'exconemp' must equal 102.5, for 25 - 36 it will be 105.06, for 37 - 48 it will be 107.69. This needs to change every 12th iteration until it has reached 'ml'. The calculation takes the value of the previous 'exconemp' and then multiplies that by 0.025.

Loop 2 = While the loop is within the first 120 iterations, 'abc' must equal 0.015 and any further iterations must use 0.01. This must also work in a way to figure out whether 'ml' is higher or lower than 120 and work accordingly. My main issue is this - how do I get the loops to run through as this: While the iteration is < 12, do this, THEN take the final figure (12th iteration) and start on 13 - 24, do this THEN etc etc. How do I produce a THEN statement? I can get the code to pick up the final values, but not change along the way.

[Code]...

View 6 Replies

Actionscript 3 :: Declaring Variable In Loop Or Before Loop?

Nov 9, 2010

Should I declare the _mcContainer var before the loop or no? (performance increase?)

for(var i:uint = _startIndex; i <= _endIndex; ++i){
var _mcContainer:MovieClip = _mcParent["i_" + _position];
}

[Code]....

View 1 Replies

ActionScript 2.0 :: Pass The X Variable From One Loop To Within Another Loop?

Mar 2, 2007

I have some code that seems to have a problem. I can't seem to pass the x variable from one loop to within another loop.

Code:
var myLv = new LoadVars();
var myNv = new LoadVars();[code]....

View 2 Replies

ActionScript 2.0 :: Loop With Two Values?

Nov 13, 2011

I want to do a loop of this

Code:
t_1=parseInt(mcArray1[0]);
t_2=parseInt(mcArray1[2]);

[code]....

View 3 Replies

ActionScript 2.0 :: Use Variable Values In Variable Name?

Aug 30, 2005

Is it possible?!Here is an example:

for (var i:Number = 1; i<nTest; i++) {
var test + i..
}

[code].....

View 1 Replies

Actionscript 3 :: Loop Over Array With Xml-values?

Dec 7, 2011

So I have an array, which consists of xml-values. I want to check a node from each array entry. I've tried reaching xml-values as such:

var eventArtists:XML;
for each (xmlEvent in arEvents)
{

[code].....

View 1 Replies

Actionscript 3.0 :: Loop Not Incrementing Values

Apr 24, 2010

I've solved this problem in AS2 but I can't seem to sort it out in AS3.[code]...

View 1 Replies

ActionScript 2.0 :: Storing Values Using Loop

Apr 18, 2008

I have five buttons on stage and I simply want to trace "1" when I click the first button and trace "2" when I click the second button and so on.I am always getting the last number and cannot figure out, how to store the values.

View 4 Replies

ActionScript 2.0 :: Loop Through Children In MovieClip And Get Values

Nov 8, 2009

I have a movie clip (mc_moviegroup) which is made of a group of many dynamic text fields. I want to loop through the dynamic text field children of mc_moviegroup and pull out their text values in a string. Does a movie clip have a property which gives the number of it's children movieclips?

View 2 Replies

ActionScript 2.0 :: Output Values For Buttons In Loop?

Jan 13, 2009

I have this little loop that creates buttons. My aim is to change value of variable 'thevalue' on everytime button is pressed, first button should give value 0, second 1, third 2 and so on.

Code:
for (jo=0; jo<xmlData.firstChild.childNodes.length; jo++) {
value1= xmlData.firstChild.childNodes[jo].attributes.value;
_root.attachMovie("button", jo, (1000-jo), {_x:20, _y:20+(jo*20)});

[Code]....

View 2 Replies

ActionScript 2.0 :: Build New Array From _width Values In Loop?

Sep 9, 2007

I have a bunch of thumb mc instances on my stage, using the same mc symbol. They're all sized differently so the widths(which are same as heights) vary.I want to be able to access their width value from an array independent of all the scaling I'm doing with rollovers. That is, I need to have each mc instance's original width accessible from anywhere in my code.The simplest way to do this is to hard code an array, like:

var Twidth:Array = new Array();
Twidth[0] = "33";
Twidth[1] = "45";[code]....

But since I have 22 thumbs and several portfolios, and want the option of changing their original sizes on the stage, I want to create the array above on the fly using information in a loop. For instance, I already have a loop in a function called generateThumbs(). Here's what I've tried:

for (var i = 0; i<total; i++) {
Twidth = new Array();
Twidth[i] = this["thumb_mc"+i]._width;[code]....

for trace on the first method, replacing 'i' with the key I want (Twidth[2]):

undefined
undefined
45
undefined
undefined

As you can see, this gives me non-indexed non-delimited value for the whole loop (the actual in my real movie is 22). There's no length or array because its actually just one value. Entering a number in the key will display a bunch of undefined with one defined. I have no way of extracting that one key without getting all the other undefined values.my question is: How do I put 'this["thumb_mc"+i]._width' values into a loop with each value indexed for the rest of my functions to access?

View 2 Replies

ActionScript 3.0 :: Loop And Create New Arrays From Each Of The Values In The CategoryArray?

Mar 23, 2009

I have a array of categories, for e.g.

var categoryArray = new Array('value1', 'value2', 'value3');

I would like to loop and create new arrays from each of the values in the categoryArray I tried...

for(var i=0;i<=categoryArray.length-1;i++){
this[categoryArray[i]] = new Array();
}
value1[0] = "dsfsdf";
trace(value1[0]);

It doesn't seem to work.

View 3 Replies

Actionscript 3 :: Flex In Construct When Modifying Loop Source Values?

Dec 9, 2009

DISCLAIMER: relatively new to Flex/AS3, I might be missing something obvious. After doing some research it appears that using the for(var property:String in object) does not guarantee the enumeration order of properties, however it doesn't say anything about modifying the VALUE that property points to as changing the for...in loop.

[Code]...

As a solution I can create a temp object to store the data while doing the loop on the original object, and then replace the original object with the modified data, but I'd like to know what exactly is going on.

So my question is, does the value of object property modify the looping order of the for...in construct? And if so, should it or is this a bug?

View 3 Replies

ActionScript 2.0 :: Loop - Extract The Individual Values From A Nested Xml Node

Mar 4, 2007

im having problems with a nested loop. i found some post here, but they didn�t help me. i need to extract the individual values from a nested xml node. i simplyfied the xml.
this is the code:

[Code]....

View 1 Replies

ActionScript 2.0 :: Pre-calculate The Perlin Noise Values And Then Loop Through It In An OnEnterFrame

Mar 9, 2007

i got this perlinnoise called function and movieclip.filter = [displacementMapFilter] inside a onEnterFrame and it's eating me at 100 percent. are there any substitutions for making it much less processor intensive? I'd like to show a picture rippling and i'd like to use perlinNoise. Is there a way i can pre-calculate the perlin noise values and then loop through it in an OnEnterFrame

View 7 Replies

ActionScript 3.0 :: Adding Previous Numeric Values In Array During For Loop?

May 23, 2009

While a for loop runs through all the elements in an array I want to get the width of each element and add it to the sum of the width of all previous elements.

View 2 Replies

ActionScript 2.0 :: Creating Variables In A Loop And Assigning Them Non Empty XML Values

Jun 1, 2011

Here is the structure of the XML file: PHP Code: <xmlfile><page></page><page> <source></source> </page></xmlfile> Some "page" nodes contain the extra "source" node. What I'm currently doing is looping through all the page nodes and looking for any source nodes. If there is a source node, I create a variable, and want to assign it a value of the contents of the "source" (HTML).

[Code]....

View 1 Replies

ActionScript 2.0 :: Assign Values To A Dynamic Text Field Trough For Loop?

Oct 12, 2009

I`m trying to assign values to a dynamic text field.[code]Can you please tell me how to make it work trought for loop #1

View 1 Replies

ActionScript 3.0 :: Instance Names - Get The Values That The User Will Enter Into Matrix By A Loop

Aug 23, 2010

i have a simple matrix form that consist of 3*3 textfields. my problem is how to get the values that the user will enter into it by a loop, i mean not using a long way such:

[Code]...

View 7 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

Add Up Values Of Radio Buttons To A Variable?

May 7, 2009

This one is tripping me up. I'm creating a simple 10 question 'quiz' with simple "yes" or "no" radio buttons for each question. If they picked "yes" the value is 5, while "no" is 0. I want them to be able to choose all of the answers and then click submit. On submit it would add up all the answers and save that number as a variable named "score".

I know how to setup all of the radio button groups, calling each group question1, question2, question3 etc and giving the values to each yes and no radio button. I just don't know how to capture the values on submit, add them up and save to a variable.

View 1 Replies

ActionScript 3.0 :: No Variable Values In Output

Oct 17, 2009

I just started working with CS4 / as3 and I'm working on extracting simple text from an xml file. I got the code off youtube, and it seems that even after copying this guys code line for line, it doesnt work. More speficially, the trace/output doesnt want to output variables. I did use trace("hello") and that worked fine, so its not the omit output option, but it just wont display the values from variables.[code]...

View 5 Replies

ActionScript 2.0 :: Get Values For A Variable From An Array?

Sep 29, 2004

Is it possible to get values for a variable from an array.How would i do this?

View 2 Replies

ActionScript 3.0 :: Tracing Variable Values ?

Feb 16, 2009

I sometimes have to test if a specific part of code is executed, and i just write

Code:
trace("ok");

Do you trace some more useful message instead ?

ps. I'm not talking about tracing variable values.

View 1 Replies

ActionScript 3.0 :: Incrementing Values To A Variable

Jun 17, 2011

i'm trying to add values to a variable.[code]a simple drag and drop on a MC.i would like to store the X displacement when i drag. let say i have 30 in a variable wich store x position of myMC, if i drag the MC 200 units the variable should read 230 and so on.

View 2 Replies

ActionScript 3.0 :: Check When Variable Is Equal To A Set Of Values?

Apr 21, 2009

Is there a way to write an "ANY" conditional statement? For example, I want to write an IF statement that if the user presses ANY of 10 specified keys, I want to execute the same bit of code.However, the only ways I know to accomplish this is by

1) writing a switch statement, which seems unwieldy because I'll have 10 separate cases which all duplicate the same [code]...

Is there a better/faster/more efficient way to check if a variable is equal to ANY of a set of values?

View 5 Replies

ActionScript 3.0 :: Sending Variable Values To Javascript?

Sep 9, 2008

I'd like to enable the user to enter several parameters within the flash plugin. These influence the flash movie. The flash file itself works perfectly fine. But now I also want to access and process these parameters on a Javascript function.

I tried the external.Interface and navigatetoURL method but couldnt achieve the required result. (The 'link' between flash and javascript doesn't seem to work...)

So how / which is the best way to transfer parameters from AS3 to Javascript on the server ?

View 3 Replies

ActionScript 3.0 :: Losing Variable Values Between Functions?

Nov 9, 2009

I'm trying to do something simple in actionscript as simple as this:- Create a variable: var urlVideo:String;- Use that variable inside a function and give it a value: urlVideo = ideoElemento.url.text();- Then create a new variable and give it the urlVideo value: var url:String = urlVideo;

Here's my code:
var idVideo:String = "12";
var urlVideo:String;

[code]....

View 14 Replies







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