<?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%3AXML%2FUiScript</id>
	<title>WoW:XML/UiScript - 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%3AXML%2FUiScript"/>
	<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:XML/UiScript&amp;action=history"/>
	<updated>2026-04-23T01:44:54Z</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:XML/UiScript&amp;diff=20349&amp;oldid=prev</id>
		<title>Move page script: Move page script moved page XML/UiScript to WoW:XML/UiScript without leaving a redirect</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:XML/UiScript&amp;diff=20349&amp;oldid=prev"/>
		<updated>2023-08-15T04:49:28Z</updated>

		<summary type="html">&lt;p&gt;Move page script moved page &lt;a href=&quot;/wiki/WoW:XML/UiScript&quot; title=&quot;WoW:XML/UiScript&quot;&gt;XML/UiScript&lt;/a&gt; to &lt;a href=&quot;/wiki/WoW:XML/UiScript&quot; title=&quot;WoW:XML/UiScript&quot;&gt;XML/UiScript&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;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 04:49, 15 August 2023&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key addonstu_asmw2:diff::1.12:old-20348:rev-20349 --&gt;
&lt;/table&gt;</summary>
		<author><name>Move page script</name></author>
	</entry>
	<entry>
		<id>https://addonstudio.org/mw1/index.php?title=WoW:XML/UiScript&amp;diff=20348&amp;oldid=prev</id>
		<title>Bear: Created page with &quot;{{uixml}}  Script allows Lua scripts or Lua files to be included in an WoW UI XML file. The Include element can be used in a Ui element.  == Inheri...&quot;</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:XML/UiScript&amp;diff=20348&amp;oldid=prev"/>
		<updated>2012-09-23T07:14:42Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{uixml}}  &lt;a href=&quot;/wiki/WoW:XML/UiScript&quot; title=&quot;WoW:XML/UiScript&quot;&gt;Script&lt;/a&gt; allows Lua scripts or Lua files to be included in an WoW UI XML file. The Include element can be used in a &lt;a href=&quot;/wiki/WoW:XML/Ui&quot; title=&quot;WoW:XML/Ui&quot;&gt;Ui&lt;/a&gt; element.  == Inheri...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{uixmlelem}}&lt;br /&gt;
&lt;br /&gt;
[[XML/UiScript|Script]] allows Lua scripts or Lua files to be included in an WoW UI XML file. The Include element can be used in a [[XML/Ui|Ui]] element.&lt;br /&gt;
&lt;br /&gt;
== Inheritance ==&lt;br /&gt;
Inherited by: none, Inherits: none, Defined in: [[XML/Ui|Ui]]&lt;br /&gt;
&lt;br /&gt;
== Elements ==&lt;br /&gt;
* {text} - actual Lua script text as the contents of &amp;lt;Script&amp;gt; element&lt;br /&gt;
&lt;br /&gt;
== Attributes ==&lt;br /&gt;
* file (string) - (optional) relative path to the WoW UI XML file to include&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
&lt;br /&gt;
[[XML/UiScript|Script]] elements include other WoW UI Lua files in an XML file and allow them to be processed on load inline, at the point of the include statement.&lt;br /&gt;
&lt;br /&gt;
=== Example ===&lt;br /&gt;
 &amp;lt;[[XML/Ui|Ui]] xmlns=&amp;quot;http://www.blizzard.com/wow/ui/&amp;quot;&lt;br /&gt;
       xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;[[XML/UiScript|Script]] file=&amp;quot;MyFrame.lua&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;Frame name=&amp;quot;MyFrame&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;Size x=&amp;quot;200&amp;quot; y=&amp;quot;200&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;/Frame&amp;gt;&lt;br /&gt;
 &amp;lt;/Ui&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This example demonstrates use of using Script to include a WoW UI Lua file. The included Lua file will be loaded at the point of the &amp;lt;Script&amp;gt; element during load.&lt;br /&gt;
&lt;br /&gt;
=== Details ===&lt;/div&gt;</summary>
		<author><name>Bear</name></author>
	</entry>
</feed>