1. #1
    Deleted

    Skinning the icon in weak auras progress bars?

    As title says, how to do this? The icon in my progress bars have blizzard standard border but I want to change that is it possible in any way and if anyone could tell me how would be very nice!

  2. #2
    Deleted
    An easy way is to download a texture pack such as clean icons which modify the icon itself. That way it appears consistent across your entire UI even without any kind of addons.

  3. #3
    Deleted
    Quote Originally Posted by Reglitch View Post
    An easy way is to download a texture pack such as clean icons which modify the icon itself. That way it appears consistent across your entire UI even without any kind of addons.
    Doesn't work for progress bars only for single icons unfortunately :/

  4. #4
    Warchief Arcanimus's Avatar
    10+ Year Old Account
    Join Date
    Oct 2009
    Location
    Where everything is bitter. Especially me.
    Posts
    2,009
    Use the icon from the addon rather than the blizz pack, then.
    Quote Originally Posted by GennGreymane View Post
    *bro fist*
    Main - My Youtube Channel - Useful PvP Items - Hunter Pet Spreadsheet - Music and Stuff

  5. #5
    Deleted
    Quote Originally Posted by Arcanimus View Post
    Use the icon from the addon rather than the blizz pack, then.
    And how would I do that? I'm using Elv + Elv addon skins.

  6. #6
    - hide the icon in your current aura
    - duplicate the aura
    - convert to icon
    - place it next to your progress bar

  7. #7
    Deleted
    Quote Originally Posted by Bonsai View Post
    - hide the icon in your current aura
    - duplicate the aura
    - convert to icon
    - place it next to your progress bar
    Thx I guess that would work, although if there's a way to get it in 1 aura I would appreciate it!

  8. #8
    Deleted
    Quote Originally Posted by ballong View Post
    Thx I guess that would work, although if there's a way to get it in 1 aura I would appreciate it!
    Probably not without editing ElvUI_AddonSkins, you can try this (untested):

    Open ElvUI_AddOnSkins\skins\WeakAuras.lua, find (around line 37):
    Code:
        for weakAura, _ in pairs(WeakAuras.regions) do
            if WeakAuras.regions[weakAura].regionType == 'icon' then
                Skin_WeakAuras(WeakAuras.regions[weakAura].region)
            end
        end
    Replace with (the bolded part is the addition):
    Code:
        for weakAura, _ in pairs(WeakAuras.regions) do
            if WeakAuras.regions[weakAura].regionType == 'icon' or 
               WeakAuras.regions[weakAura].regionType == 'aurabar' then
                Skin_WeakAuras(WeakAuras.regions[weakAura].region)
            end
        end

  9. #9
    Deleted
    Always prefered the icon to the progress bar.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •