Forum Discussion

alexboyer's avatar
alexboyer
Visitor
9 years ago

Change focusedIconUri color

Is there a way to alter the color tint for the focusedIconUri parameter of the Scene Graph Button node? It applies a dark grey tint to the icon when the button has focus and it's clashing with our designs. 

The documentation doesn't list any way to override this. I'm hoping that's just a simple oversight. 

The button markup itself is pretty straightforward:
<Button
textColor="0xFFFFFFFF"
focusedTextColor="0xFFFFFFFF"
height="60"
minWidth="150"
iconUri = "pkg:/images/Button_Icon_General.png"
focusedIconUri = "pkg:/images/Button_Icon_General.png"
>
<Label
height="60"
width="150"
text="On"
horizAlign="center"
vertAlign="center"
color="0xFFFFFFFF"
/>
</Button>


Thanks in advance.

3 Replies

  • I see this is an old post, but i found solution for this so here you go :)

    Icons are the children of the button so you just need to find them and remove the blendcolor parameter from them:

    button = m.top.findNode("myButton")
    button.getChild(4).blendColor = -1 ' 4 is a button focused icon poster
  • <button id="idMyButton" ... >
        ...
    </button>


    button = m.top.findnode("idMyButton")
    button.opacity = 0.8


    Give the button an id in the XML you can lookup in the brightscript code. Then assign it an opacity.
    That will basically act like the missing "blendcolor" you are looking for.