Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
Antonin34 #1
Integrating complex XML structure
Hi, im trying to use XMLConnector and dataset to integrate an XML file.
the structure of the xml file is the following :
<members>
<member>
<name/>
<title/>
<adress/>
...(a lot of simple string field)
<links>
<link>
<url/>
<name/>
</link>
<link>
<url/>
<name/>
</link>
</links>
</member>
</members>
When i use the xmlConnector wizard, i have the following structure on my
connector :
results
--members::object
----member::array
-------[n]::object
-------------name::String
-------------title::String
-------------(a lot of simple string field)
-------------links:Object
----------------link::Array
--------------------[n]::Object
----------------------------url:String
----------------------------name:String
My problem is that i can't access my "links" information since i don't really
know :
- how to configure the dataset to manage such a structure
- how to access with actionscript the url and name from the "currentItem"
I succeed in accessing all the other fields, but this one is resisting to me :)
If anyone have a clue,
thanks a lot,
Tonio34
Antonin34 Guest
-
Class::Struct - want to access structure within structure
I want to access a structure within a structure. Below is what I had in mind. Please help. #!/perl/bin/perl use Class::Struct; struct Step... -
Complex Structure
Hey guys, I've created a reservation app that checks multiple dates against a calendar and if the dates are available inserts them into a table.... -
Structure of complex distributions; CVS
I am working on a pretty complex distribution, and I could use some advice on how to structure its directories. This distribution contains... -
Arbitrarily Complex Data Structure
Hi. Is it possible to create a subroutine to handle an arbitrarily complex data structure (for my purposes, complex only refers to hashes and... -
Complex Site Structure - One project or many?
Hi All, We have developed a nice .Net platform for our growing internet (www.co.sutter.ca.us), intranet and internal web application sites.... -
BurningFeathers #2
Re: Integrating complex XML structure
In the Component Inspector of your DataSet you will find a field called Path.
From what I understand you will need to use XPath statements in order to
reference that information. Search for XPath on the Macromedia website and you
should find what you need.
-BurningFeathers
BurningFeathers Guest



Reply With Quote

