View Single Post
01-15-13, 03:30 AM   #10
nin
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Dec 2008
Posts: 213
EDIT

*Doh,Just noticed you had Issues with qusestyles, i'll try install it and see if it works here.



Looks like tukui style(which is built in) but darker grey, or am i missing something? =)

I use my own plugin for customizing bigwigs, QuseBossStyles is based of that.

Assign the texture path to fer09, currently it's :

Lua Code:
  1. edgeFile = [=[Interface\\Buttons\\WHITE8X8]=]

Adjust this part :

Lua Code:
  1. local backdrop = CreateFrame("Frame", nil, bg) 
  2.     backdrop:SetPoint("TOPLEFT", bg, -2, 2)
  3.     backdrop:SetPoint("BOTTOMRIGHT", bg, 2, -2)
  4.     backdrop:SetFrameStrata("BACKGROUND")
  5.     backdrop:SetBackdrop({
  6.         bgFile = Media.bgFile,
  7.         edgeFile = Media.edgeFile,
  8.         edgeSize = 3,
  9.         insets = {
  10.             left = -0,
  11.             right = -0,
  12.             top = -0,
  13.             bottom = -0
  14.         }
  15.     })
  16.  
  17.     backdrop:SetBackdropColor(.2,.2,.2)
  18.     backdrop:SetBackdropBorderColor(0,0,0,1)

If you want to adjust the gray color change, 1,1,1 would make it white, 0,0,0 black.

Lua Code:
  1. backdrop:SetBackdropColor(.2,.2,.2)

I tried this quick and the result is this:
Attached Thumbnails
Click image for larger version

Name:	wigs.jpg
Views:	508
Size:	80.3 KB
ID:	7503  

Last edited by nin : 01-15-13 at 03:39 AM.
  Reply With Quote