Access Recipe List in the Recipe Book

allspaminthecan

Active Member
Code:
echo ${EQ2UIPage[TradeSkills,TradeSkills].Child[Composite,TradeSkills.Recipes.Table.ScrollPage].NumChildren}
The above code successfully tells me how many recipes are being displayed in my open recipe book, however, I cannot seem to access the items in the list of recipes. It gives me hard coded text within eq2ui_tradeskills.xml

Code:
echo ${EQ2UIPage[TradeSkills,TradeSkills].Child[Composite,TradeSkills.Recipes.Table.ScrollPage].Child[text,2].Label}
I tried stuff like this too, but there isn't really a DataSourceContainer, so it didn't work.

Code:
echo ${EQ2DataSourceContainer[TradeSkills,TradeSkills].Child[Composite,TradeSkills.Recipes.Table.ScrollPage].Child[text,2].Label}
 

Nuprecon

Active Member
is what your trying to do here, the same thing your asking on your other thread?

If not... what is the outcome of what your looking for... maybe i can help you with that.

If all else fails though - http://eq2.isxgames.com/wiki is your friend.
 

allspaminthecan

Active Member
Oh I know all about the wiki. I spend hours and hours with it before I post anything. If at all possible, I would prefer not to have to ask any questions.

The two posts are different attempts to achieve the same results. I'm trying to create a list of names of spells for a specific adventure class.

In my first post, I was trying to click on the product icon on the recipe window, so I could then access that window, check the adventure class, and add the name of the spell to my list if it belongs to the class I'm looking for.

In my second post, I had opened the Recipe Book and filtered out the spells I wanted already - and now the script that I was writing was meant to read that list.
 
Top Bottom