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
Similar Posts:
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
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
Dec 5, 2010
I have this XMLList:
<content> <TextFlow color="#000000" columnCount="2"> <p>One</p></TextFlow> </content>
I need to get <textFlow> as an XMLList and as String.
View 6 Replies
Jul 26, 2010
Is there an XMLList equivalent to Array.indexOf?
For example -
var array:Array = ['one','two'];
trace(array.indexOf('two')); // returns 1, since it's at the second position
trace(array.indexOf('three')); // returns -1, since it isn't found
[Code]...
there's got to be an easier way to check to see if one of the nodes in the XMLList has a particular value than looping through all of them, right? something akin to -
xmlList.indexOfChildByNodeValue('two'); // returns 1, because it's the second child
xmlList.indexOfChildByNodeValue('three'); // returns -1, because it doesn't match any children
View 2 Replies
Apr 6, 2009
loading in xml in as3 (I followed the excellent Kirupa example [URL] and so far so good.
I now want to check if a certain string is present in a particular node and if so run a certain action. For example:
say my xml has a node like so:
<fruit>
<apples>
<item>Customer likes Granny Smith, Winesap and Fuji apples</item>
</apples >
</fruit>
How can I check if a string is present in a node eg
nodeVal = displayData.fruit.apples[i];
if(nodeVal == "Granny Smith"){
//perform certain action here
}
View 3 Replies
Apr 29, 2009
Is there a way to extract children from an XMLList where the node name of a child contains a string pattern?For example :
<record>
<XblahX/>
<cow/>
[code]......
View 2 Replies
May 18, 2009
Kirupa's tutprial "Using XML in Flash CS3/AS3" when filtering the node values, how can I match a text string say "Stephen" with "Stephen E. Ambrose"
var authorList:XMLList = bookInput.Book.(author == "Stephen E. Ambrose");
Using the above code it only searches the node which author value is "Stephen E. Ambrose" but I want to search only "Stephen" and want to get this node returned.
View 2 Replies
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
Jul 14, 2005
It's another simple problem that has me stumped.
x = 1;
y = 2;
z = 3;
[code]....
View 7 Replies
Jan 14, 2010
I have an AdvancedDataGrid tree with a ArrayCollection as its dataprovider. Now, for instance, i drag a leaf from one node to another node. To catch the event I'm adding a Listener to dragComplete.
[Code]...
My Problem: I want to know the new node where the leaf was dropped. Actually i would have expected that in the event there is a property like dropParent. This is not the case.
View 1 Replies
Jan 18, 2011
I have a tree im my mxml that uses a XMLListCollection as dataProvider. It´s XML is like:
<list>
<conta nome="Plano de Contas" id="1">
<conta nome="Creditos" id="2" />
<conta nome="Vendas" id="4" />
[code]....
How can I make the node for, say, id==4 visible AND selected?
View 2 Replies
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
Sep 21, 2011
i have a question whether we can create a new xml node in as3 node containing dynamic value inside.....
as like if i want to get like..var newNode:XML = <IMAGE FULL="fullimages/3.jpg"THUMB="thumbnails/3.jpg"/>
where the images are dynamic values...
View 5 Replies
May 26, 2005
I thought this was going to be easy! I would like to search an XML file for a particular data set i.e. set of nodes depending on a passed variable. However, storing a subset of my XML file via Code:var gallery = this.firstChild; and then searching 'gallery' as you would an array-using a for()-doesn't work since this.firstChild isn't returning an array
Code:
<gallery>
<collection title="Christmas 2004">
[code].....
View 3 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
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
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
Jul 24, 2009
I�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
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
Sep 1, 2010
I've got some xml:
var xmlData:XML =
<1stNode>
<buttonID>first child node value</buttonID>
[Code]....
Then I want to read specific node value based on a value passed to a function. .
var buttonID = new Button;
var imageID = new Image;
var labelID = new Label;
[Code]....
I'm don't know how to get the value when node name is dynamically changed.
View 3 Replies
Jun 24, 2008
just trying to get straight how this works. Say I create some XML like so:
ActionScript Code:
var sample:XML = <sample>
<items>
[code]......
View 4 Replies
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
May 25, 2010
In Actionscript and Adobe Flex, I'm using a pattern and regexp (with the global flag) with the string.match method and it works how I'd like except when the match returns multiple occurrences of the same word in the text. In that case, all the matches for that word point only to the index for the first occurrence of that word. For example, if the text is "cat dog cat cat cow" and the pattern is a search for cat*, the match method returns an array of three occurrences of "cat", however, they all point to only the index of the first occurrence of cat when i use indexOf on a loop through the array. I'm assuming this is just how the string.match method is. I want to find the specific indices of every occurrence of a match, even if it is of a word that was already previously matched.
how the string.match method is and if so
View 1 Replies
Dec 12, 2011
I'm using:
[Code]...
But I keep getting an "Error #2030: End of file was encountered." This is (probably) because the class I'm serializing is too big for the "String" object type in AS3. Is there a limitless object for storing an array of characters (or better yet binary), or am I going to have to make my own class? (like one with an array of strings)
View 1 Replies
Jan 19, 2010
I am trying to include double quotes in a string but logic says it would just close the string. I know in html you would use something like ". In flash...I havent the slightest.Anyone know how to go about this?
View 1 Replies
Sep 21, 2011
I have a String variable in my flex (flash builder 4) application containing CSV data. I need to allow the user to download this data to a local file. For example, giving them a "csv" button to click and it might present them with a save file dialog (and I would be sending the contents of my string variable).Is this possible / how ?I am using the ResuableFX component for the datagrid to csv. This the code I ended up with that works to save the string to a text file for the user (in a web browser):
var dg2CSV:DataGrid2CSV = new DataGrid2CSV();
dg2CSV.includeHeader=true;
dg2CSV.target=adgEncounters;
[code]......
View 1 Replies
Oct 3, 2007
I really don't understand why this won't work? I've made a test which sends some POST data to a script on my page which works fine.[code]
View 14 Replies
May 25, 2010
I'm using a pattern and regexp (with the global flag) with the string.match method and it works how I'd like except when the match returns multiple occurrences of the same word in the text. In that case, all the matches for that word point only to the index for the first occurrence of that word. For example, if the text is "cat dog cat cat cow" and the pattern is a search for cat*, the match method returns an array of three occurrences of "cat", however, they all point to only the index of the first occurrence of cat when i use indexOf on a loop through the array. I'm assuming this is just how the string.match method is (although please let me know if i'm doing something wrong or missing something!). I want to find the specific indices of every occurrence of a match, even if it is of a word that was already previously matched.
View 1 Replies
Nov 24, 2009
Basically I'm trying to output the contents of an XML document into a dynamic text field (as loaded - not just its node values and content - the entire thing - into a variable called _root.log). The text field is set to show the variable value of _root.log.This is the actionscript...
PHP Code:
var newProfileXML:XML= new XML("<contacts result='true'><contact name='John Doe'/><contact name='Jane Doe'/></contacts>");
[code].....
View 2 Replies