ActionScript 3.0 :: Concatenating Variables - End Up With PlaylistArray[0] Containing The String "playlistVariables. Track0"?

Jun 12, 2009

I'm having trouble getting the following to work:

I have declared an array "playlistArray" which will hold a series of track names (for an mp3 player.)I have declared a URLVariable "playlistVariables" which loads the data from an external text file.If I brute-force assign values from playlistVariables to playlistArray, everything works fine:

playlistArray[0] = playlistVariables.track0;

If I test this with trace(playlistArray[0]) I get the track name I am looking for. But obviously I don't want to brute-force assign all those values, I want to use a "for" loop:

for (var i:int = 0; i<maxTracks; i++) {
playlistArray[i] = ["playlistVariables.track"+(i)];
trace(playlistArray[i]);

When I do this,I end up with playlistArray[0] containing the string "playlistVariables. track0" rather than the value of playlistVariables.track0.

View 3 Replies


Similar Posts:


ActionScript 3.0 :: XML Get Node By Concatenating @ With String?

Oct 10, 2011

I need to get an XML node by using this syntax:

[pseudo code]
xml.node["subnode"].@string.children();
[real code where _xml is XML]
_xmlList:XMLList = _xml.cases["case"][@id == event.target._id].files.children();

And yes, case is a reserved word - therefore the brackets and quotes.

event.target._id is a string, but I can't seem to figure out how to concatenate the @ (at sign) with a string to get the attribute (or the node that corresponds to the attribute).

I've tried _xml.cases["case"].(@id == event.target._id).files.children();

But it doesn't work. How am I totally off in the wrong direction?

View 1 Replies

ActionScript 2.0 :: Concatenating Three Variables?

Jul 14, 2005

It's another simple problem that has me stumped.

x = 1;
y = 2;
z = 3;

[code]....

View 7 Replies

ActionScript 2.0 :: Addition - Get Two Numbers To Add And Instead It Is Concatenating Them Together As A String?

Mar 29, 2005

has anyone had any problems with addition? I'm trying to get two numbers to add and instead it is concatenating them together as a string, however when I multiply, divide, or even subtract them it works fine.

View 10 Replies

ActionScript 2.0 :: Append Variables To A Query String (address Bar String)

May 4, 2010

I need to be able to pass some variables FROM flash and append it to the end of my address. I assumed that if I used LoadVars, I can append the vars to the end of the string like this:

ActionScript Code:
send_btn.onRelease = function ()
{
var my_lv:LoadVars = new LoadVars();

[Code].....

View 4 Replies

ActionScript 2.0 :: String Variables - Consentrate A String To Call That Variable?

Mar 16, 2002

If i have an ASP page that is returning variables (and I can see them in the debugger) how do i consentrate a string to call that variable?

ie:
variables being returned are named:
"res1", "res2", "res3"...etc
for (var i = 0; i < 10; i++) {

[Code]...

View 4 Replies

Actionscript 3 :: Changes To Array Of String Variables Doesn't Update The Variables Themselves

Jul 30, 2010

I have a list of strings that I add to an array, then attempt to set those values in a for-loop using data that I read in. The array gets updated, but the values the array contains do not. I also have an array of buttons that I update this same way that works great, but strings don't seem to work the same way. I have tried moving the string array to give it full scope, and still nothing...

public class test extends Sprite
{
// Declare a list of strings
protected var title0:String = undefined;

[Code]....

View 1 Replies

ActionScript 3.0 :: Regular String Variables Vs XML Variables?

Jun 20, 2009

I'm trying to figure out which is more efficient in terms of memory and speed. What I'm doing is having a series of messages loaded to the screen. Is it just faster to write them in string variable or in an XML document which is more versatile in terms of editing and adding on to the document.

View 1 Replies

ActionScript 3.0 :: Concatenating A Class Name?

Sep 30, 2009

I have the following function which returns a string: cues.getCurrentCue(); returns: "Definition_1" Definition_1 is the class name of a movie clip. I would now like to do something like this:
 
var currentDev:String = "new " + cues.getCurrentCue() + "()";
def_mc = currentDev;
addChild(def_mc);
 
But I get the following error: 1180: Call to a possibly undefined method currentDev.

View 1 Replies

ActionScript 2.0 :: ComboBox Value Concatenating Instead Of Adding?

Jun 6, 2008

I'm trying the add the data value of a selected combo box item (.35) to 1 using:

var theFringe:Number = _root.calc.fringe.getValue();
_root.calc.fFringe.text = theFringe+1;

Returns: .351

Is there a way to convert the data from the comboBox to an integer so that when I add .35 +1 I'll get 1.35?

View 1 Replies

Actionscript :: Air/Flex Concatenating A Variable With A Property

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

ActionScript 3.0 :: Stop Flash From Concatenating Strings?

Jan 6, 2011

I have an external interface call which I need to pass several values to. Each value has an indentifier string and the value itself.

Code: ExternalInterface.call("submitIUR", answers +"promo", promo+ "url", nextUrl); The problem is that when I pass this through to the javascript function, flash concatenates the identifier strings. So for example if promo is 12345 when passed through the "url" indentifier gets tacked on the end so I get 12345url.

Is there an easy way to separate out the variables being passed through to stop the strings being tacked on to the variables?

View 6 Replies

IDE :: Concatenating Text In Dynamic Field Of MovieClip

Dec 1, 2009

I'm writing a menu generating script. It's suppose to display arrays
and any inner arrays.
Ex:["test item",["item 1",["item 2","item 3"]],"item 4"];

These movie clips should be displayed if the actionscript is correct.:
test item
item 1 <---this of course, has a following subarray
item 4
and the submenu should display:
item 2
item 3

I run the script and it see's the inner array items ["item 2", "item 3"] and shows them in the next submenu -FINE---but what I get in the main menu to my surprise is 'run-on text' in the Dynamic field of that movieclip. ex:
test item
item 1; item 2; item 3 <---? seems to concatonate inner items in text field
item 4

I only want to see text "item 1" ....not the items associated with it as well.
(they are already displayed in submenu)

Code:
for (var i = 0; i < menuArray.length; i++) {
var menuItemName = "mc_menu_item_" + i;
if (typeof(menuArray[i]) == "object") {
this["mc_menu_box"].attachMovie("h_menu_middle_sub", menuItemName, tempLevel);

View 2 Replies

ActionScript 2.0 :: Setting And Concatenating Variable Values?

Jul 24, 2009

I&#65533;m calling a ColdFusion page that generates output in the form of a text file to be used in a scrolling dynamic text field.So, Instead of calling a text file like so:

//calls a static text file
loadText.load("StaticTextFile.txt");
Im calling a ColdFusion page like so:

[code].....

View 1 Replies

Xml :: Flex ListCollection Iteration Concatenating Collected Values?

Dec 29, 2010

I am working in flex builder 3 with an XMLListCollection and have run into this (should be simple) parsing snag...The XMLListCollection Data:

<data>
<term name="NUMBERS">
<alt_form name="1"/>

[code]......

View 3 Replies

ActionScript 3.0 :: Creating Variable Named By Concatenating Two Array Elements.

Oct 2, 2009

A snippet of my code is [code]The first element in the mainOptions Array is linked (metaphorically) to tab1.The second element in the mainOptions Array is linked (metaphorically) to tab 2 and so on.I want to create 12 variables named AudioMP3, AudioHEAAC, NewsBBC, NewsTwitter, VideoVideo and so on down to PicsPics2. i.e concatenate each entry in say tab1 through 5 to the each element from mainOptionsArray and make a new variable using that name then assigning a number to this variable.[code]

View 1 Replies

ActionScript 3.0 :: Variables Using A URL String Instead Of FlashVar

Jul 7, 2010

I've just completed a flash banner for our site and my boss has just informed he's bought some bannerad software to manage clicks, etc. Originally my flash was passed variables from the HTML via Flashvars which I accessed using something like this: var manid = root.loaderInfo.parameters.manid Which worked great. But now that the variables are getting passed like this (which I have no control over):

[Code]...

View 2 Replies

ActionScript 2.0 :: Adding The Values Of 2 String Variables Together?

May 17, 2009

I meant to call it "Convert a value to a variable". Using CS3, AS2: If I have a variable that's a string value = the name of another variable, can I extract the value and then look for the extracted value's matching variable name to get it's value?

Ex:

color = "blue"
box = "color"

(Assuming I don't know the value of box) How would I get the value of "box" out so I could search for the value "color" as if it were a variable? I need to convert a value to a variable name is what i'm getting at... I think.

View 21 Replies

ActionScript 2.0 :: Adding Values Of 2 String Variables Together?

Aug 23, 2010

I meant to call it "Convert a value to a variable".Using CS3, AS2:If I have a variable that's a string value = the name of another variable, can I extract the value and then look for the extracted value's matching variable name to get it's value?[code](Assuming I don't know the value of box) How would I get the value of "box" out so I could search for the value "color" as if it were a variable? I need to convert a value to a variable name is what i'm getting at.

View 4 Replies

ActionScript 3.0 :: Pass Variables From Combobox To String Together An Url?

Jan 10, 2011

I'm a beginner that is stuck at the moment. I've made several comboboxes, and what I am trying to accomplish is add those values to an url and pass it.Example: In the first combobox I select year: 2009, second one I select genre: horror, third one I select language: us, which then should string those together and give me this url for example, "file.php?year=2009&genre=horror&language=us"I am working with an array, filling it with values and then stringing it together, but several problems arise, first one, I don't know how to skip the "&" for the first value. Also I do not know how to ignore undefined values in the array.Here is just one combobox I use and the handler:

Actionscript Code:
var seljaartal:Array = new Array({label:"Year", data:""}, {label:"1939", data:"jaar=1939"}, {label:"1940", data:"jaar=1940"},  

[code].....

View 7 Replies

ActionScript 1/2 :: Read Variables From URL Query String?

Mar 17, 2009

I need to read the variables from a URL:[url]....I tried all sorts of info from google and i coudn't make it work.I'm interested in the option when i don't need to do any modifications to the html file, but just do all the coding in flash.I found several examples that are using ExternalInterface and could not make any single one of them work.

View 3 Replies

ActionScript 3.0 :: Pass Variables Through Query String?

Mar 5, 2010

I've been searching ferociously and can't seem to find a solution that works for me. I am trying to pass variables via query string on a PHP page to Flash, and then have the swf add movie clips to the stage depending on the information it receives. Here is what the PHP outputs:

[Code]...

View 2 Replies

Actionscript 3 :: Format A String With Supplied Variables?

Feb 19, 2010

How can i format a string with supplied variables in AS3?

[Code]...

so in the string above, i would like myString to display "One year consists of 12 consecutive Months", but i'm new to AS3 and do not know how to properly format a string. i'm sure that i'll have to cast the number variable into a string, string(myNumber), but i don't know if casting a movie clip variable to a string, string(myMovieClip), will return the name of the movie clip or produce an error. i'm willing to bet on the later.

View 3 Replies

ActionScript 3.0 :: Filter String To Remove One Of Variables

Oct 29, 2009

I have used flashvars to send a URL query string to my movie, though I need to filter the string to remove one of the variables.For instance, I am trying to remove 'var2' from: var1=aaa&var2=bbb&var3=ccc..However, the query string is not the same every time. For instance, sometimes 'var1' may equal 'aad', 'var3' may equal '183', etc.So basically what I need to do is, regardless of what is contained in the string, always filter out 'var2'.

View 1 Replies

ActionScript 2.0 :: Cannot Get Variables Sent To ASPX Through Query String?

Nov 19, 2009

I'm developing a web training application that must interact with a SQL database. I'm using ASPX pages with VB code-behind to transfer data in- and out-of the flash file.I've got my data coming into the flash file just fine. I used the ASPX VB code below to send data to flash on a page called Send.aspx (I realize this is not hooked up to my database, but I thought I'd test the concept first):

Code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

[code]......

View 0 Replies

ActionScript 2.0 :: MX : Passing Variables To Command String?

Apr 6, 2004

I'm trying to design an interface that to simplify the construction of a string. Here's an example: My output (using the getURL command) needs to be in the form of: http:[url].....

I'm able to define variables for x, y, and z, however I am unable to figure out how to substitute the defined values for those variables into the string when it is time to send it.

View 2 Replies

ActionScript 2.0 :: Passing Variables Via Query String?

Mar 21, 2007

i am trying to load different xml that get generated through .net when I am trying to pass varibels i am getting undefined. Can someone give me a heads up on what i might be doing wrong. from what I have read and learned I can pull via-

Code:
xmlData.load("/family/galleryimage.xml.aspx?pid=" + _root.loaderInfo.parameters.pid.toString());

Then I am defining pid in within the object class.

Code:
<param name="pid" value='<% =Request.QueryString["pid"] %>'>

However I am getting undefined.

View 9 Replies

ActionScript 2.0 :: Loading External Variables With String To Num?

Apr 8, 2002

ok.. I really feel like pounding my head against a wall here. I'm importing variables from a regular txt file. I have dynamic text fields on the main timeline that pick up and show these variables. I know that they are coming into the player at _root, or _level0

rows="5"; is one of them. When I do a debug/List variables, that's what it shows me.

[Code]...

View 11 Replies

ActionScript 3.0 :: Separate The String Data Into Different Variables?

May 10, 2011

I have a string that is sent from PHP to Flash. When I Trace the string in flash, it prints the followings:

First Name: Mickey
Last Name: M
Designation: Mouse

[Code]....

View 4 Replies

ActionScript 2.0 :: MX: Passing Variables To Command String

Apr 6, 2004

I'm trying to design an interface that to simplify the construction of a string. Here's an example: My output (using the getURL command) needs to be in the form of: [URL] I'm able to define variables for x, y, and z, however I am unable to figure out how to substitute the defined values for those variables into the string when it is time to send it.

View 2 Replies







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