I tried you wrote (saved as a WordPerfect file) in a text editor my ahx file (a single file for testing using my winter.ahx file ) showed NOTHING like what you wrote. Sorry, but back to 3.296 I go. Dan.
I'm sorry, I don't understand your post.
The AHX files are in XML. You'll need a plain text editor (like Notepad) to edit them in their raw form.
When you open up the file, you should see a lot of XML tags, which are enclosed by the "<" and ">" signs.
These form the framework for the XML file. It is like an outline. There is a tag to open each section, and a correctonding tag (with a "/" after the "<" sign) to close the section.
The first one should be "<xml>", which is the opening tag for the file. At the very end of the file, you should see a "</xml>" tag closing out the file.
Next, you'll see a "<ahp>" tag, (with a corresponding "</ahp>" tag right before that final "</xml>" tag at the end of the file).
Inside that, you'll see more tags, some of them "nested" within others.
For example, mine then starts with a "<rooms>" tag, under which is a number of separate "<room" tags, each ending with a "</room>" before starting the next one.
The "<room" tags have more information in them (like the name of the room, etc), before the ">" at the end of the tag.
Inside each of those sections, I have a "<mod" tag for each module in that room.
Like the "<room" tags, these also contain more information inside the tag itself, and end with a "/>", which makes the entire tag self-contained.
It is inside these "mod" tags that I found the "cat" parameter.
If you are not seeing anything at all like what I'm describing, then I'm not sure what's wrong.