blake67
November 5th, 2010, 22:22
I hope I'm asking this in the right place, and in the right way.
First things first, my coding skills are laughable at best, so forgive if this is painfully obvious to those with rudimentary ability.
Anyway, I'd like to modify the 3.5 SRD module my campaign uses to reduce the amount of window spam when referencing information. I would like to consolidate the first and second level of windows such that instead of popping up a second window, the options within the second window merely drop down within the first window when the link is clicked.
Ok, that was a terrible way to say it, so let me try via example.
Currently, if I'd like to pull up the Weapons Table in the SRD, I open my library, click the SRD Basics, and click Equipment in the right side of that window. This gives me a window with a few links. I then click Weapons, which opens up a second window, from which I select the Weapons Table.
Instead, I'd like for the first window to look like this after I click Weapons:
Equipment
[] Wealth and Money
Weapons
. [] Weapon Categories
. [] Weapon Qualities
. [] Weapons Table
. [] Weapon Descriptions
. [] Masterwork Weapons
[] Armor
[] Goods and Services
I realize that the answer most likely lies somewhere within the difference in code between the Races window, which accesses the new info in the same window, and the Equipment one. I can't figure out exactly how to code it.
Races
<adraces>
<librarylink type="windowreference"><class>referenceinlineindex</class><recordname>..</recordname></librarylink>
<name type="string">Races</name>
<index>
<agraces>
<name type="string">Races</name>
<text type="formattedtext">
<h>Favored Class, etc.</h>
</text>
</agraces>
</index>
</adraces>
Equipment
<ahequipment>
<librarylink type="windowreference"><class>referenceindex</class><recordname>..</recordname></librarylink>
<name type="string">Equipment</name>
<index>
<blweapons>
<listlink type="windowreference"><class>referenceindex</class><recordname>..</recordname></listlink>
<name type="string">Weapons</name>
<index>
<aaweaponcategories>
<listlink type="windowreference"><class>referencetextwide</class><recordname>..</recordname></listlink>
<name type="string">Weapon Categories</name>
<text type="formattedtext">
<p>Weapons are grouped into several interlocking sets of categories.</p>
</text>
</aaweaponcategories>
</index>
</blweapons>
</index>
</ahequipment>
Thanks in advance for any assistance.
First things first, my coding skills are laughable at best, so forgive if this is painfully obvious to those with rudimentary ability.
Anyway, I'd like to modify the 3.5 SRD module my campaign uses to reduce the amount of window spam when referencing information. I would like to consolidate the first and second level of windows such that instead of popping up a second window, the options within the second window merely drop down within the first window when the link is clicked.
Ok, that was a terrible way to say it, so let me try via example.
Currently, if I'd like to pull up the Weapons Table in the SRD, I open my library, click the SRD Basics, and click Equipment in the right side of that window. This gives me a window with a few links. I then click Weapons, which opens up a second window, from which I select the Weapons Table.
Instead, I'd like for the first window to look like this after I click Weapons:
Equipment
[] Wealth and Money
Weapons
. [] Weapon Categories
. [] Weapon Qualities
. [] Weapons Table
. [] Weapon Descriptions
. [] Masterwork Weapons
[] Armor
[] Goods and Services
I realize that the answer most likely lies somewhere within the difference in code between the Races window, which accesses the new info in the same window, and the Equipment one. I can't figure out exactly how to code it.
Races
<adraces>
<librarylink type="windowreference"><class>referenceinlineindex</class><recordname>..</recordname></librarylink>
<name type="string">Races</name>
<index>
<agraces>
<name type="string">Races</name>
<text type="formattedtext">
<h>Favored Class, etc.</h>
</text>
</agraces>
</index>
</adraces>
Equipment
<ahequipment>
<librarylink type="windowreference"><class>referenceindex</class><recordname>..</recordname></librarylink>
<name type="string">Equipment</name>
<index>
<blweapons>
<listlink type="windowreference"><class>referenceindex</class><recordname>..</recordname></listlink>
<name type="string">Weapons</name>
<index>
<aaweaponcategories>
<listlink type="windowreference"><class>referencetextwide</class><recordname>..</recordname></listlink>
<name type="string">Weapon Categories</name>
<text type="formattedtext">
<p>Weapons are grouped into several interlocking sets of categories.</p>
</text>
</aaweaponcategories>
</index>
</blweapons>
</index>
</ahequipment>
Thanks in advance for any assistance.