10 - Bindings error in FrameXML.log
Taken from my <game>\Logs\FrameXML.log
6/1 13:09:25.314 Loading add-on RecipeBook
6/1 13:09:25.314 Binding header RECIPEBOOK is defined more than once in Interface\AddOns\RecipeBook\Bindings.xml
6/1 13:09:25.314 Binding header RECIPEBOOK is defined more than once in Interface\AddOns\RecipeBook\Bindings.xml
Problem is that you should use header="something" just in the first defined binding but not in any of the following.
IMHO the code of bindings.xml should be something like:
<Bindings> <Binding name="RECIPEBOOK_SKILL" header="RECIPEBOOK"> if ( keystate == "down" ) then RBUI:ShowBrowseFrame(); end </Binding> <Binding name="RECIPEBOOK_CONFIG"> if ( keystate == "down" ) then RBUI:ShowOptionsFrame(); end </Binding> <Binding name="RECIPEBOOK_SEARCH"> if ( keystate == "down" ) then RBUI:ShowSearchFrame(); end </Binding> </Bindings>
| User | When | Change |
|---|---|---|
| Garkin | Mon, 01 Jun 2009 11:51:52 | Create |