<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>
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