RE: [Flashcoders] limit of nodes of XML file that can be parsed?

2007-07-04 Thread Danny Kodicek
Hi Danny, I'll definitely look into that, if not for this project, it'll come in very handy for later ones. So far I heard of SCORM, but never looked into it really in depth. Isn't it for web based learning only? No, it's a method for packaging course data which is used by most (not

Re: [Flashcoders] limit of nodes of XML file that can be parsed?

2007-07-04 Thread Ron Wheeler
A side note but you might look at the Eclipse-based Reload application for SCORM packaging. Takes a lot of the pain out of a cumbersome process. Ron Danny Kodicek wrote: Hi Danny, I'll definitely look into that, if not for this project, it'll come in very handy for later ones. So far I

Re: [Flashcoders] limit of nodes of XML file that can be parsed?

2007-07-03 Thread nik crosina
Hi Ron, That seems very re-assuring. The problem I am having really is that I find it very difficult to find out more about using XML in Flash on a more advanced but still small scale level. I can parse attributes, and nodes, but most examples deal with 1-2 attributes, that can be easily be

Re: [Flashcoders] limit of nodes of XML file that can be parsed?

2007-07-03 Thread nik crosina
I would parse it into arrays of objects rather than arrays. It is a lot easier to ask an object for some information than a multidimensional array. I lot easier to maintain as well. That soudns like an idea to try. Thanks! Nik On 7/3/07, Ron Wheeler [EMAIL PROTECTED] wrote: You might also try

RE: [Flashcoders] limit of nodes of XML file that can be parsed?

2007-07-03 Thread Danny Kodicek
Hi Ron, That seems very re-assuring. The problem I am having really is that I find it very difficult to find out more about using XML in Flash on a more advanced but still small scale level. I can parse attributes, and nodes, but most examples deal with 1-2 attributes, that can be

Re: [Flashcoders] limit of nodes of XML file that can be parsed?

2007-07-03 Thread nik crosina
Hi Danny, I'll definitely look into that, if not for this project, it'll come in very handy for later ones. So far I heard of SCORM, but never looked into it really in depth. Isn't it for web based learning only? My current project is going onto a DVD (through a Zinc exe) Nik On 7/3/07, Danny

Re: [Flashcoders] limit of nodes of XML file that can be parsed?

2007-07-02 Thread Ron Wheeler
I do not think that you are even close to any maximum. There are many applications much bigger than this floating about. What tools do you have for validating XML? We have found that XMLSpy is a really useful tool if you are doing anything serious with XML. It has lots of different applications

Re: [Flashcoders] limit of nodes of XML file that can be parsed?

2007-07-02 Thread Ron Wheeler
You might also try to navigate the XML yourself (and parse it yourself.) I would parse it into arrays of objects rather than arrays. It is a lot easier to ask an object for some information than a multidimensional array. I lot easier to maintain as well. If you put some traces into your

[Flashcoders] limit of nodes of XML file that can be parsed?

2007-07-01 Thread nik crosina
Hi, Is there a limit on the nodes that can be parsed with in an XML file? I am transferring an XML file that is 4 levels deep and at the moment 500 odd lines long (not even half what it will be) into a multidimensional array and when ui trace the array, this fizzels out not half way through.