<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://addonstudio.org/mw1/index.php?action=history&amp;feed=atom&amp;title=WoW%3AAPI_UIParentLoadAddOn</id>
	<title>WoW:API UIParentLoadAddOn - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://addonstudio.org/mw1/index.php?action=history&amp;feed=atom&amp;title=WoW%3AAPI_UIParentLoadAddOn"/>
	<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_UIParentLoadAddOn&amp;action=history"/>
	<updated>2026-05-31T05:51:35Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://addonstudio.org/mw1/index.php?title=WoW:API_UIParentLoadAddOn&amp;diff=17318&amp;oldid=prev</id>
		<title>Move page script: Move page script moved page API UIParentLoadAddOn to WoW:API UIParentLoadAddOn without leaving a redirect</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_UIParentLoadAddOn&amp;diff=17318&amp;oldid=prev"/>
		<updated>2023-08-15T04:47:41Z</updated>

		<summary type="html">&lt;p&gt;Move page script moved page &lt;a href=&quot;/wiki/WoW:API_UIParentLoadAddOn&quot; title=&quot;WoW:API UIParentLoadAddOn&quot;&gt;API UIParentLoadAddOn&lt;/a&gt; to &lt;a href=&quot;/wiki/WoW:API_UIParentLoadAddOn&quot; title=&quot;WoW:API UIParentLoadAddOn&quot;&gt;API UIParentLoadAddOn&lt;/a&gt; without leaving a redirect&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 04:47, 15 August 2023&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Move page script</name></author>
	</entry>
	<entry>
		<id>https://addonstudio.org/mw1/index.php?title=WoW:API_UIParentLoadAddOn&amp;diff=17317&amp;oldid=prev</id>
		<title>WoWWiki&gt;Egingell: New page</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_UIParentLoadAddOn&amp;diff=17317&amp;oldid=prev"/>
		<updated>2007-07-10T14:26:37Z</updated>

		<summary type="html">&lt;p&gt;New page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{wowapi}} __NOTOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe the purpose of the function, exhausting detail can be saved for a later section --&amp;gt;&lt;br /&gt;
Load or reload an addon.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- List return values and arguments as well as function name, follow Blizzard usage convention for args --&amp;gt;&lt;br /&gt;
 loaded = UIParentLoadAddOn( index or &amp;quot;addonName&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&amp;lt;!-- List each argument, together with its type --&amp;gt;&lt;br /&gt;
:(index or &amp;quot;addonName&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
:;index: Integer - The index of the AddOn in the user&amp;#039;s AddOn list. Note that you cannot access Blizzard-provided AddOns through this mechanism.&lt;br /&gt;
:;addonName: String - The name of the addon you want to load or reload.&lt;br /&gt;
 &lt;br /&gt;
=== Returns ===&lt;br /&gt;
&amp;lt;!-- List each return value, together with its type --&amp;gt;&lt;br /&gt;
&amp;lt;!-- :isTrue, retVal1, retVal2--&amp;gt;  &amp;lt;!-- remove this line if it&amp;#039;s just one value --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:;loaded: Flag - Indicates if the AddOn was loaded, 1 if it is, nil if it is not.&lt;br /&gt;
:An error message is issued if the addon failed to load.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
 local loaded = UIParentLoadAddOn( &amp;quot;MyFunkyAddon&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
=== Result ===&lt;br /&gt;
 loaded = 1 or nil&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
*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 [[API_LoadAddOn|LoadAddOn]] and write your own edge case.&lt;br /&gt;
*As of patch 1.8, you can only use this for addons that are marked on demand in their .toc files (## LoadOnDemand: 1).&lt;br /&gt;
&lt;br /&gt;
Functionally similar to this:&lt;br /&gt;
 local loaded, reason = LoadAddOn(name);&lt;br /&gt;
 if ( not loaded ) then&lt;br /&gt;
     message(format(ADDON_LOAD_FAILED, name, getglobal(&amp;quot;ADDON_&amp;quot;..reason)));&lt;br /&gt;
 end&lt;/div&gt;</summary>
		<author><name>WoWWiki&gt;Egingell</name></author>
	</entry>
</feed>