Radio Widget Rollover

Hi
I’m using the radio widget and it’d be great to be able to get the rollover index from it. I’m using it to select other elements visible in the ui, and rollover would let me create a good visual indicator of what is about to be selected.

On the “Radio” page, click the “Customize Interaction” pulse. That creates a panel exec (called RadioPanelExec) that watches each of the buttons.

In that panel exec parameters, set the Panel Value to “inside”. It now receives callbacks when the mouse goes inside one of the buttons.

In the onOffToOn callback, you can access the index via panelValue.owner.digits.

Aha, thanks.