[flexcoders] Re: XML Parsing - maintaining a record pointer

2009-02-24 Thread Libby
Of Sam Lai Sent: Friday, February 20, 2009 4:12 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] XML Parsing - maintaining a record pointer You could use a different variable name in the inner loop, that way it won't change the object in the outer loop. On 2/21/09, Libby

RE: [flexcoders] Re: XML Parsing - maintaining a record pointer

2009-02-24 Thread Tracy Spratt
Both XMLList and XMLListCollection can be accessed by index. Tracy From: flexcoders@yahoogroups.com on behalf of Libby Sent: Tue 2/24/2009 10:07 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: XML Parsing - maintaining a record pointer well

[flexcoders] Re: XML Parsing - maintaining a record pointer

2009-02-21 Thread sunild999999
Another idea would be to put your data into an XMLListCollection, get a view cursor to the list with createCursor(). Now you can use the the view cursor to iterate over your XMLListCollection and use the cursor's bookmark property to remember your position when necessary. Probably more