Ok, here's what's going on.
Basically, I am exporting skin wieghts to a text file. So, right now, it is exporting the list of skin weight values for each vertex, in heirarchical order of the joints, and then in the order which I added any influence objects.
This becomes problematic, as if I want to unbind the skin and rebind it, add influences and then import these weights, I have to make sure to add the influence objects in the same order as the first time.
So, I want to have the option of organizing the skin weight data for each vertex alphabetically, instead of hierarchically. So, I need an alphabetizing procedure, longhand, so that at the same time that I have it sort through the joints and influence objects and arrange them alphabetically, I can also have it arrange the corresponding joint/influence number in the same order...
Get it?
So, basically just a long hand procedure to alphabetize a list of joints/influences, and at the same time I can reorder the corresponding weight value for that joint/influence.
Yah?