The software I use store its toolbars in one XML file.
<?xml version="1.0"?>
My goal is to separate them like
I have no ideas at all, I have some html knowledge, but no xml.
Any help would be appreciated..
<?xml version="1.0"?>
XML:
<toolbars version="1">
<toolbar id="1" name="my toolbar1">
<command_button command="EDIT SELECT MOVES" bitmap="RTOOL" tooltip="select all moves"/>
..
</toolbar>
<toolbar id="2" name="my toolbar2">
<command_button command=..
..
</toolbar>
</toolbars>
My goal is to separate them like
Code:
<toolbars version="1">
<toolbar id="1" name="my toolbar1">
<sub_xml1>
</toolbar>
<toolbar id="2" name="my toolbar2">
<sub_xml2>
</toolbar>
</toolbars>
Any help would be appreciated..