**xml code:
**
<?xml version=“1.0” encoding=“UTF-8”?>
<!–
For items in the menu, the data attribute specifies information
that is passed into the function that handles the press event for
all the items.
<item data="…">The Label</item>
–>
<accordion>
<settings>
<!–
These allow you to control how
nested categories appear in the menu.
The “frame” attribute controls which frame
of the tab template is loaded.
–>
<levelassignment level=“2” frame=“2” />
<levelassignment level=“3” frame=“2” />
</settings>
<category name=“Main Heading”>
<category name=“Category 1”>
<item data=“whatever”>Hello</item>
<item data=“can”>World</item>
<item data=“whatever”>Hello</item>
<category name=“Sub Category”>
<item data=“go”>Sub Item</item>
<item data=“in”>Another Item</item>
</category>
<item data=“whatever”>Hello</item>
<item data=“whatever”>Hello</item>
<category name=“Sub Category”>
<item data=“go”>Sub Item</item>
<item data=“in”>Another Item</item>
</category>
</category>
<category name=“Category 2”>
<item data=“the”>Lorem</item>
<item data=“data”>Ipsum</item>
<item data=“tags”>Dolor</item>
</category>
</category>
</accordion>
I need to add a link here:
[SIZE=“5”]** <item data=“can”>World</item>**[/SIZE]
so when i click on world it loads another page within a frame…
Any help is appreciated!
Thanks