Hi,
I am designing a simple XML file for animations. I often get in the situation, that I write something like this:
<frame>
<image>./image1.png<image/>
</frame>
<frame>
<image>./image2.png<image/>
</frame>
<frame>
<image>./image3.png<image/>
</frame>
...
Now, this of course can get annoying. So I would I thought was allowing this:
<frameset min=1 max=5>
<image>./image#.png<image/>
</frameset>
Making # a placeholder for a counter variable. What I am wondering: is there already a standardized way of doing something like this? It just makes things easier if one uses methods people are already used to.
Thanks!