WoW:API Frame SetBackdropColor: Difference between revisions

m
Move page script moved page API Frame SetBackdropColor to WoW:API Frame SetBackdropColor without leaving a redirect
mNo edit summary
m (Move page script moved page API Frame SetBackdropColor to WoW:API Frame SetBackdropColor without leaving a redirect)
 
(6 intermediate revisions by 6 users not shown)
Line 1: Line 1:
Accepts RGBA triplet in 0-1.0 values.  E.g. (1.0, 0, 0, 0.5) for semi-transparent red.
{{widgetmethod}}


[[Category:API Functions|Frame SetBackdropColor]]
Allows you to set the color value, and alpha value used to tint the backdrop of a frame, as set by [[API Frame SetBackdrop|Frame:SetBackdrop]]([backdropTable]).
[[Category:API Frame Functions|Frame SetBackdropColor]]
 
frame:SetBackdropColor(red,green,blue,alpha);
 
There are special considerations to be aware of when using this method. Specifically:
*The color value used here is meant to tint the backdrop file used in the backdrop of the frame. Tinting does not and cannot change the base color values of the file used, and as such tinting a black backdrop will have no effect whatsoever. Tinting black will always result in black anyway.
*Alpha values do not change the base alpha value of the file used as the backdrop. This setting does not and cannot change the base alpha channel of the image, so any alpha setting you use will be a modification of any alpha channels already present on the base image. Setting the alpha to 100% on an image with an alpha channel at 50%, will merely show the image with 50% opacity.
 
== Parameters ==
=== Arguments ===
<!-- List each argument, together with its type -->
:(red, green, blue, alpha)
 
:;red : Number - Range 0 to 1 (Darkest to Lightest)
:;green : Number - Range 0 to 1 (Darkest to Lightest)
:;blue : Number - Range 0 to 1 (Darkest to Lightest)
:;alpha : Number - Range 0 to 1.  Optional. (Transparent to Opaque)
 
=== Returns ===
Nothing.
 
__NOTOC__
Anonymous user