1/26/2016 6:51 PM | |
Posts: 165 Rating:
|
I want to set the property BackColor from VBS. Set Button = ScreenItems("TestButton") This Works - but how do I find out what the number is for a certain color? I want the numbers for Red and Green. 200 is some kind of red But what is green?
And how do I set a specific RGB-color? |
1/26/2016 8:59 PM | |
Posts: 79 Rating:
|
Hi, Some examples here. Regards |
1/28/2016 1:29 PM | |
Joined: 12/28/2015 Last visit: 2/7/2025 Posts: 256 Rating:
|
Hello, You can use the RGB() function. Dim Button Set Button = ScreenItems("Button1") Button.BackColor = RGB(0,0,0)
And you must change the Button Propertie --> Effects --> Global Color Scheme = No |
Follow us on