View Single Post
07-19-23, 07:36 PM   #3
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,961
To make matters worse .. even the simplest of addons triggers the error .. so has anyone else had issues in this area since 3.4.1 ?

This is the simple addon I used to test on

TOC
Lua Code:
  1. ## Interface: 30401
  2. ## Title: TestKeyBindings
  3. ## Version: 3.4.1.47720.0
  4. ## DefaultState: Enabled
  5. ## LoadOnDemand: 0
  6.  
  7. TestKeyBindings.lua

Bindings.xml
Lua Code:
  1. <Bindings>    
  2.     <Binding name="TestBindingName" />
  3. </Bindings>


Lua
Lua Code:
  1. local frame = CreateFrame("Frame")
  2.  
  3. local function OnEvent(self,event,arg1,arg2)
  4.     LoadAddOn( "Blizzard_BindingUI" );
  5. end
  6.  
  7. frame:SetScript("OnEvent", OnEvent)
  8. frame:RegisterEvent("ADDON_LOADED")

Can anyone see anything wrong with this set up ?

Thanks in advance
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote