Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement
This function is implemented in FrameXML/UIParent.lua.

Load or reload an addon.

loaded = UIParentLoadAddOn( index or "addonName" );


Parameters[]

Arguments[]

(index or "addonName")
index
Integer - The index of the AddOn in the user's AddOn list. Note that you cannot access Blizzard-provided AddOns through this mechanism.
addonName
String - The name of the addon you want to load or reload.

Returns[]

loaded
Flag - Indicates if the AddOn was loaded, 1 if it is, nil if it is not.
An error message is issued if the addon failed to load.

Example[]

local loaded = UIParentLoadAddOn( "MyFunkyAddon" );

Result[]

loaded = 1 or nil

Details[]

  • If the addon fails to load, it is added to a list of failed addons. If you try to load the addon again without reloading the UI, you will not be notified of failure unless you use LoadAddOn and write your own edge case.
  • As of patch 1.8, you can only use this for addons that are marked on demand in their .toc files (## LoadOnDemand: 1).

Functionally similar to this:

local loaded, reason = LoadAddOn(name);
if ( not loaded ) then
    message(format(ADDON_LOAD_FAILED, name, _G["ADDON_"..reason]));
end
Advertisement