Not sure I get what you are tellig me, but here is a link to what I have:
You need to add the following lines to the beginning and end of your script. This will set the color of a rectangle in the Title Input you created. The color of the Rectangle in that Title Input is what PB uses to change the color of the tally. The "Value" is the hex value of the color you want. In the first line in my example, when the scriopt starts the "Value" color is set to RED (#FF0000). When the script is finished the color is set to (#00FF00) GREEN. Make sure to add the name of the Rectangle of the Title input in the "Selected Name". This is the same "Input" and "SelectedName" that you used in the button in PB
Function=SetColor&Input=Test color box.gtzip&Value=#FF0000&SelectedName=Rectangle1.Fill.Color
Function=SetVolumeFade&Input=ORGAN MUSIC&Value=0,5000
Function=SetVolumeFade&Input=CAM 1&Value=0,5000
Function=SetVolumeFade&Input=CAM 2&Value=0,5000
Function=SetVolumeFade&Input=CAM 3&Value=0,5000
Function=SetVolumeFade&Input=CAM 4&Value=0,5000
Function=SetVolumeFade&Input=Audio Digital Audio Interface usb 3&Value=0,5000
Function=SetVolumeFade&Input=PLAYER 1&Value=0,5000
Function=SetVolumeFade&Input=PLAYER 2&Value=0,5000
Function=SetVolumeFade&Input=PLAYER 3&Value=0,5000
Function=SetVolumeFade&Input=BACKGROUND MUSIC&Value=0,5000
Function=SetVolumeFade&Input=Audio Microphone&Value=0,5000
Function=Fade&Input=BLACK&Duration=4000&Mix=0
SLEEP 7000
Function=Fause&Input=PLAYER 1&Duration=7000&Mix=0
Function=Fause&Input=PLAYER 2&Duration=7000&Mix=0
Function=Fause&Input=PLAYER 3&Duration=7000&Mix=0
Function=AudioOff&Input=cam 1&Duration=7000&Mix=0
Function=AudioOff&Input=cam 2&Duration=7000&Mix=0
Function=AudioOff&Input=cam 3&Duration=7000&Mix=0
Function=AudioOff&Input=cam 4&Duration=7000&Mix=0
Function=AudioOff&Input=PLAYER 1&Duration=7000&Mix=0
Function=AudioOff&Input=PLAYER 2&Duration=7000&Mix=0
Function=AudioOff&Input=PLAYER 3&Duration=7000&Mix=0
Function=Pause&Input=BACKGROUND MUSIC&Duration=7000&Mix=0
Function=AudioOff&Input=BACKGROUND MUSIC&Duration=7000&Mix=0
Function=AudioOff&Input=PLAYER &Duration=7000&Mix=0
Function=SetColor&Input=Test color box.gtzip&Value=#00FF00&SelectedName=Rectangle1.Fill.Color
*****************************************************************************************
This is the link to what was sent to me:
https://www.dropbox.com/...azkqkjgf84k2op1&dl=1Then your first line in your Script would now be :
Function=SetColor&Input=ColorPlaceholder.gtzip&Value=#FF0000&SelectedName=Color1.Fill.Color (this will change the button to Red when the script starts)
The last line in your Script would be :
Function=SetColor&Input=ColorPlaceholder.gtzip&Value=#00FF00&SelectedName=Color1.Fill.Color (this will change the button to Green when the script ends)
You can change the hex values if you want different colors...
In the PB button:
Select ColorPlaceholder.gtzip in the "Input" field
Select Color1.Fill.Color in the "SelectedName" field.
Check the "Set ButtonColor to TitleColor" box