View Single Post
02-19-11, 12:29 PM   #5
iradex
A Cyclonian
Join Date: Nov 2009
Posts: 43
Originally Posted by nin View Post
What you posted there is adding a background with 0.4 alpha.

What part of headline is it exactly that you want too add transparency too?

If it's the background you can probably just edit any of these values .. i just took a quick peek at headlines code..

Code:
hpbg:SetTexture(0, 0, 0,0.4)
Code:
if(UnitName('target') and frame:GetAlpha() == 1) then
			frame.bg:SetTexture(1, 1, 1,0.4)
		else
			frame.bg:SetTexture(0, 0, 0,0.4)
		end
-_-V
Originally Posted by Zagrei View Post
I made Headline look that way a while ago, and I perused through the code, trying to find what I edited... to no avail. However, I guess I could post the entirety of my Headline code, even though there is no educational value in that... I'll keep looking first It's better to learn how to figure these things out than to have someone always hand it to ya

EDIT: Look down, the next post has the info

It worked guys. Thanks for the help s2
  Reply With Quote