Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
MatchBoxUK #1
Re: Using dataSet.items
Same problem here - I've read a lot posts on many sites offering 'solutions'.
None of them work. If I've got a DataSet populated by an XMLConnector and I
want to extract the data from the dataset what's the big deal? Why does no-one
appear to know how to do this? Yes, it's easy when you manually create an
array but that's not a real world situation.
MatchBoxUK Guest
-
Creating master page where global items arearranged ABOVE local items
When you create a mater page, obviously all the items are arranged below anything on the individual pages. Is there a way of creating a master... -
Selecting items from DataSet items collection that werechanged
hello. how to choose items from DataSet items collection that were changed (for example added to collection, changed)? -
DataSet filterFunc return listed items
Hi, i'm writing a dataset filter. The user selects and deselcts items in a checkbox group. Each checkbox-button in the group corresponds to a... -
possible for publishers to edit Library Items / recurrent items like navigation?
No, you have to use an include of some sort. If you don't want to use SSI you can do it with Javascript. Search Google with the keyword "Javascript... -
BUG in DataBind? After .DataBind there are more DataGrid Items than DataSet Rows!
Consider: Private Sub BindData(ByRef objDataSet As DataSet) Dim x% = DataGrid_Report.Items.Count() Dim y% = objDataSet.Tables(0).Rows.Count() '... -
MatchBoxUK #2
Re: Using dataSet.items
I think I've solved the problem - it's all to do with timimg. The DataSet takes
a while to 'read in' the XML file so you need to give it enough time to do this
before you begin any operations on the DataSet. Your script should check that
the XML data has fully loaded into the DataSet before anything else is done.
Here's what I've come up with:
ReceiveXMLConnector.trigger();
listenerObject = new Object(); // Listens for events broadcast by the DataSet
listenerObject.afterLoaded = function (eventObj)
{
// Makes the first item the current item
DataSet.first();
// Traces through the properties
while(DataSet.hasNext())
{
// Access the data through the Dataset properties
trace(DataSet.YOUR PROPERTY GOES HERE);
DataSet.next();
}
}
DataSet.addEventListener("afterLoaded", listenerObject);
// LiveDocs
[url]http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/[/url]
wwhelp.htm?context=Flash_MX_2004&file=00002301.htm l
MatchBoxUK Guest
-
MatchBoxUK #3
Re: Using dataSet.items
The Macromedia help pages/files/livedocs aren't very helpful to those new to
data integration. When you want a solution to a basic issue you don't want to
spend 3 hours working through a sample project and maybe even having to spend
months learning CF just to understand the sample!
MatchBoxUK Guest



Reply With Quote

