Text with alpha background color

[code]red = Slider(0, 255, 1, 1, 250)[br]green = Slider(0, 255, 1, 1, 250)[br]blue = Slider(0, 255, 1, 1, 250)[br]alpha = Slider(0, 100, 1, 1, 250)[br][br]alphaValue = round(alpha / 100 * 255) [br][br]hexValues = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"}[br][br]# Use this if you don't need Alpha value[br]textHexCol = "#"+Element(hexValues, Div(red, 16) + 1)+Element(hexValues, Mod(red, 16) + 1)+Element(hexValues, Div(green, 16) + 1)+Element(hexValues, Mod(green, 16) + 1)+Element(hexValues, Div(blue, 16) + 1)+Element(hexValues, Mod(blue, 16) + 1)[br][br]textHexColAlpha = "#"+Element(hexValues, Div(alphaValue, 16) + 1)+Element(hexValues, Mod(alphaValue, 16) + 1)+Element(hexValues, Div(red, 16) + 1)+Element(hexValues, Mod(red, 16) + 1)+Element(hexValues, Div(green, 16) + 1)+Element(hexValues, Mod(green, 16) + 1)+Element(hexValues, Div(blue, 16) + 1)+Element(hexValues, Mod(blue, 16) + 1)[br][br]textBackColAlpha = "\text{Text color background}"[br]# Open the settings for this text to select the LaTeX checkbox[br][br][br][br][/code]
Extra
[code]#-Add script to all sliders "red", "green", "blue" and "alpha" On Update tab-#[br]#SetBackgroundColor(textBackColAlpha, textHexColAlpha)[br][/code]

Information: Text with alpha background color