SetTextTagColorBJ
- Parameters
-
tt texttag
red real
green real
blue real
transparency real
- comment
- patch
1.07
- Source
- Blizzard.j
- return type
nothing
- Source code
function SetTextTagColorBJ takes texttag tt, real red, real green, real blue, real transparency returns nothing call SetTextTagColor(tt, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0-transparency)) endfunction