Poster: Aklu at 3/29/2006 2:30:51 PM PST Subject: HOWTO: Fix broken AddOns quickly |
| |
If your AddOn that you loved is suddenly broken I recommend trying the following:
1. Go to Interface/AddOns/<Broken AddOn>/ and open the <Broken AddOn>.xml file.
For example: for TotemTimers its TotemTimers.xml
2. Do a search for "GameTooltip", until you find a line that looks like:
<GameTooltip name="<Name>Tooltip" inherits="GameTooltipTemplate" parent="UIParent" hidden="true"/>
3. Change this section to:
<GameTooltip name="<Name>Tooltip" frameStrata="TOOLTIP" hidden="true" inherits="GameTooltipTemplate">
<Scripts>
<OnLoad>
this:SetOwner(UIParent, "ANCHOR_NONE");
</OnLoad>
</Scripts>
</GameTooltip>
(Make sure to change the "/>" to ">" this should be the only change on the first line.
4. Reload the AddOn and hope it works.[ post edited by Aklu ]
|
| | http://forums.worldofwarcraft.com/thread.aspx?fn=wow-interface-customization&t=346778&p=#post346778 |
| |
Poster: slouken at 6/21/2006 2:01:04 AM PDT Subject: Re: HOWTO: Fix broken AddOns quickly |
| |
Oops, this information is obsolete. I'll resticky a post updated for 1.11
|
| | http://forums.worldofwarcraft.com/thread.aspx?fn=wow-interface-customization&t=346778&p=#post398369 |