View Single Post
01-15-13, 05:06 AM   #11
Rusken
A Theradrim Guardian
AddOn Compiler - Click to view compilations
Join Date: Dec 2009
Posts: 61
Originally Posted by nin View Post
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:
Oh that is perfect, just how i want it!
The problem is that Quese still don't work for me
When i choose quese as my style in BW and press test i get this lua error and no test bars appears
Gah this is driving me nuts!

Code:
Message: Interface\AddOns\!QuseWigs\wigs.lua:69: Usage: <unnamed>:SetFont("font", fontHeight [, flags])
Time: 01/15/13 12:04:33
Count: 4
Stack: (tail call): ?
[C]: in function `SetFont'
Interface\AddOns\!QuseWigs\wigs.lua:69: in function `ApplyStyle'
Interface\AddOns\BigWigs_Plugins\Bars.lua:1167: in function `?'
Interface\AddOns\BigWigs\Loader.lua:408: in function `SendMessage'
Interface\AddOns\BigWigs_Core\Core.lua:251: in function `Test'
Interface\AddOns\BigWigs_Options\Options.lua:438: in function <Interface\AddOns\BigWigs_Options\Options.lua:438>
(tail call): ?
[C]: ?
[string "safecall Dispatcher[4]"]:9: in function <[string "safecall Dispatcher[4]"]:5>
(tail call): ?
...dOns\AtlasLoot_Loader\Libs\AceGUI-3.0\AceGUI-3.0.lua:314: in function `Fire'
...ader\Libs\AceGUI-3.0\widgets\AceGUIWidget-Button.lua:28: in function <...ader\Libs\AceGUI-3.0\widgets\AceGUIWidget-Button.lua:25>

Locals: <none>

Last edited by Rusken : 01-15-13 at 05:08 AM.
  Reply With Quote