View Single Post
11-15-10, 11:32 PM   #44
Zagrei
A Cobalt Mageweaver
 
Zagrei's Avatar
AddOn Compiler - Click to view compilations
Join Date: Nov 2009
Posts: 246
Originally Posted by Oraknathal View Post
first of all tyvm zagrei for the help with the lua. my UI looks amazing. I will credit you very graciously with my post of the current ui.

btw what does that code for the stufraid do?
Thank you! THe code styles StufRaid in the same style as the normal UFs

Originally Posted by Oraknathal View Post
and I am sorry to ask but an what line would I input the code for Acb castbar?
Input this code around line 301 in the acb_Castbar\core.lua:
Code:
local bg = CreateFrame("Frame", nil, bar)
bg:SetBackdrop({
	bgFile = 'Interface\\AddOns\\TinyDPS\\Textures\\blank.tga',
	edgeFile = 'Interface\\AddOns\\TinyDPS\\Textures\\blank.tga',
	edgeSize = 1,
})
bg:SetBackdropColor(0, 0, 0, .4)
bg:SetBackdropBorderColor(0, 0, 0)
bg:SetFrameStrata("BACKGROUND")
bg:SetPoint("TOPLEFT", bar, -1, 1)
bg:SetPoint("BOTTOMRIGHT", bar, 1, -1)
__________________
  Reply With Quote