Thread Tools Display Modes
08-07-13, 07:57 PM   #1
laukond
A Black Drake
Join Date: Dec 2011
Posts: 87
Equipped Border

How do I hide the green border that indicates an item is equipped on the default action bars? (ie. a trinket and a belt)
And also the active aura indicator? (ie. a mount and stealth)

Last edited by laukond : 08-07-13 at 08:54 PM.
  Reply With Quote
08-07-13, 10:04 PM   #2
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Assuming you're not using any addons that modify the action bars/buttons, this should remove the "equipped" border:

Code:
local i = 1
while _G["ActionButton"..i] do
    _G["ActionButton"..i.."Border"]:SetTexture("")
    i = i + 1
end
Not sure if the same texture is used for highlighting active states (mount, stealth, druid form, etc) or not.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
08-11-13, 07:52 PM   #3
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,324
I think the checked texture is used for mounts, stances/forms, etc. The border texture is strictly used for equipped item feedback.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
  Reply With Quote

WoWInterface » Developer Discussions » Lua/XML Help » Equipped Border


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off