Tagged Questions
The xmllist tag has no wiki summary.
5
votes
6answers
15k views
How can I convert a simple XMLList to an Array of Strings without a loop?
How can I convert the following XMLList to an Array of Strings without using a loop?
<labels>
<label>All</label>
<label>your</label>
...
2
votes
1answer
256 views
AS3 - Get an XMLList using a variable
I have the following XMLList and am trying to return the XMLList with the node having the label Mail Box or Outbox, depending on string variable called folder. folder can either be equal to "Mail Box" ...
1
vote
1answer
112 views
Counting XMLList elements with certain number of children
Given this XML code:
private const XML:XML =
<pref>
<game id="0"/>
<game id="9012">
<user id="VK48058967" />
...
1
vote
2answers
398 views
Flex ActionScript XMLList Menu Bar problem
I am working in Flex 4, and wana use MenuBar control, it requires XMLList to populate its items, but the problem is, i want to apply if conditions on sub items of my menu, let me explain my problem ...
1
vote
2answers
310 views
Slice XMLList instead of Array
How would I get a range of items from my xmllist similar to the slice method for an array?
slice(startIndex,endIndex);
I am trying something like this:
var tempXMLList:XMLList = new ...
1
vote
1answer
183 views
Deleting XMLList data, after certain element
Basically, since XMLList are similar to Arrays in many ways, I was wondering if I could do something like:
XMLList.length = 10;
I know this is not possible because 'length' in XMLList is not a ...
1
vote
1answer
483 views
Flash AS3: Using “string” to pass in E4X XML querry
I want to be able to do something like
var XMLquerry:String = "a1.a2.a3";
var parserVal:XML = parserMethod(XMLquerry);
// or
var parserVal:XMLList = parserMethod(XMLquerry);`
and get an output ...
1
vote
2answers
693 views
How can you tell if an XMLlist object in AS3 contains a node?
How can you tell if an XMLlist object in AS3 contains a specific node?
For ex: you have this XML file
<items>
<item>one</items>
</items>
And want to check if ...
1
vote
1answer
2k views
Flex 3 combobox: filter XMLListCollection datasource
(I'm using Cairngorm)
I have a combobox that displays items form an XMLListCollection that's in my model.
I want to only view the items (XML) whose "sent" properties is false.. like item.sent == ...
0
votes
0answers
65 views
How to convert an XMLList into an Array
I want to convert an XMLList into an Array (not an ArrayCollection). I do understand that an ArrayCollection is actually only a wrapper around an Array & at the heart of an ArrayCollection is in ...
0
votes
1answer
97 views
What is source in ArrayCollection and XMLListCollection?
What is the role of source for an ArrayCollection or XMLListCollection?
Is it used just once - when constructing a new ArrayCollection or XMLListCollection object and is it copied to some internal ...
0
votes
2answers
60 views
flex - getting data from an xml list
i have a simple xml like so:
<root Name="Bob" isImployed="true">
<customer Name="Bob" id="12345">was addressed in the shopping mall</customer>
...
0
votes
1answer
105 views
Filtrate XMLList using “..” notation
There is something I couldn't solve: when I search a specific node in a XMLList containing several level of hierarchy, filter never search in the top parent node.
For example, if I have a tree like ...
0
votes
0answers
27 views
setting style for XMLLIST
I have create a XMLLIST as follow,how can i add some style for these node(bold,font size)?
<fx:XMLList id="side">
<node label="xxx">
<node label="xxxxx" ...
0
votes
1answer
217 views
AS3: XPath returns XMLNode instead of XMLList if single match?
AS3
I'm trying to dynamically load pictures based on XML file. The problem that Im stuck with is a function that is supposed to return found node from supplied identifier.
Like in the following code
...
0
votes
1answer
518 views
Flex 4 - filtering XMLListCollection in AdvancedDataGrid
I have an advancedDataGrid that is populated with XMLListCollection data. I'm trying to filter that XMLListCollection but it's not refelcting in the ADG. All my tests indicate that it is filtering ...
0
votes
0answers
222 views
Populating advanced datagrid with nested/complex xml
I'm using a HTTPService query in order to receive results in "e4x" format.
Resulting file has the following structure:
<root>
<results>
<result>
<id>resultID</id>
...
0
votes
3answers
283 views
Loop through XMLList - strange behaviour
I'm trying to loop through an XMLList and rather than giving me each item in the list as XML, it's just coming back with the positions as strings e.g.
var myList:XMLList = ... (contains ...
0
votes
2answers
303 views
Need help with XMLList in Flex
I have XML with the following structure, for example
<root>
<node flag="false"/>
<node flag="true"/>
<node flag="false"/>
<node flag="false"/>
...
0
votes
1answer
402 views
AS3 ByteArray writeObject() XMLList is null
Why isn't my XMLList writing to my ByteArray?
var suspendData:ByteArray=new ByteArray();
var _questions:XMLList=model.questions;
suspendData.writeObject(_questions);// only writes 3 bytes
and ...
0
votes
1answer
412 views
Again, Flex 4, Actionscript Complex data filtering of XMLList filter and data-sets with special conditions
So I tried to format this properly the first time, but it published and all the stuff in carets wasn't parsed properly, so I'll try again:
I have been trying to decide what the best way to filter a ...
0
votes
0answers
95 views
Whats the right / best way to filter HierachalData in Actionscript that consists of varying filters, how they apply, and differing hierarchal datasets
I have been trying to decide what the best way to filter a set of data for a tree view is.
The filters are in the following XML format: using periods instead of carots
.Category. ...
0
votes
2answers
298 views
Flex: Listening for CollectionEvent in custom component
(EDIT: I've edited my question to make it simpler,
sorry if some answers are out of context)
I have prepared a reduced test case for my question:
I'm trying to create a custom component ...
0
votes
1answer
512 views
Flex - Issues retrieving an XMLList
I'm having a problem retrieving a XMLList and I don't understand why.
I have an application that is running properly. It uses some data from two xml files called division.xml and store.xml.
I noticed ...
0
votes
1answer
644 views
Flash AS3 - XMLList - Counting occurances of element in XMLList and showing result
I have an XMLList 'Keywords', which consists of about 30 elements. I want to count the number of unique keywords in the List, and how often they occur. Then display the top 3 most occuring keywords.
...
0
votes
2answers
2k views
Cannot assign to a non-reference value
I have a strange problem, I have a XMLList with elements who have the attribute position from 0 to x. When I want to add text to a element of that XMLList by the following statement, I get a error ...
0
votes
1answer
277 views
Create XMLList containing multiple nodesets
I have scoured the internet trying to find an answer to this...I must be asking the wrong question?!
<a>
<b>
<c/>
<c/>
</b>
<a>
<b>
...
0
votes
0answers
228 views
Illegal cyclic loop between nodes?
I am trying to loop through an XML file. As for the first loop everything works fine, but when the program enters the second loop it gives an error saying that
TypeError: Error #1118: Illegal ...
0
votes
1answer
1k views
Delete XMLList element with a given index - Flex
How can I delete the element with a certain index in a Flex XMLList?
0
votes
1answer
328 views
Deep Nested XML
I am trying to display a list of items in a datagrid from an XMLList.
<Series no="1">
<file>
<filenum>1</epnum>
<prodnum>4V01</prodnum>
...
0
votes
1answer
591 views
get the index of first element to mach a condition in an XMLListCollection Object
I have an XMLListCollection object that contains items with an ID property. I want to find one particular item by id and then get it's index in the collection.
This is done to be able to tell the ...