RE: [Flashcoders] XML diff

2006-06-11 Thread Howard Nager
: Re: [Flashcoders] XML diff Doesn't the browser cache images? I've never had a problem with performance reloading anything. Have you tried just letting it all reload? Another thing you could do is just check to see if the path is the same as the previous, if it is then skip loading a new

Re: [Flashcoders] XML diff

2006-06-10 Thread Ron Wheeler
Just hang onto the xml tress and walk them in parallel. Depending on the types of changes that might happen, you will have varying degrees of difficulty in matching the trees. Probably easier than a diff on a text file. Possible tests: For each node, check attributes for changes - easy if

RE: [Flashcoders] XML diff

2006-06-10 Thread Howard Nager
is good news. The values may change but that can all be part of the comparison. -Original Message- From: [EMAIL PROTECTED] on behalf of Ron Wheeler Sent: Sat 6/10/2006 5:07 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] XML diff Just hang onto the xml tress and walk them

RE: [Flashcoders] XML diff

2006-06-10 Thread Steven Sacks
Try RegEx. Flash 8: http://blog.deconcept.com/2005/08/29/regexp-flash-8-using-externalinterface/ Flash 5,6,7: http://www.jurjans.lv/flash/RegExp.html ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] XML diff

2006-06-10 Thread Howard Nager
: [Flashcoders] XML diff Try RegEx. Flash 8: http://blog.deconcept.com/2005/08/29/regexp-flash-8-using-externalinterface/ Flash 5,6,7: http://www.jurjans.lv/flash/RegExp.html ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

Re: [Flashcoders] XML diff

2006-06-10 Thread Julius - XK
Doesn't the browser cache images? I've never had a problem with performance reloading anything. Have you tried just letting it all reload? Another thing you could do is just check to see if the path is the same as the previous, if it is then skip loading a new image.. - Original

RE: [Flashcoders] XML diff

2006-06-10 Thread Steven Sacks
I will check it out - I had thought that was for regular expression support? Do you have an example of how that would diff two xml files? Here is an outstanding tutorial on regular expressions, how and why they're used. http://www.regular-expressions.info/tutorialcnt.html Good luck!