How to add events to the overlay menu buttons?

Hi, guys.

I’m playing with the example called “overlay-menu” (https://www.fusetools.com/examples/overlay-menu) and trying to show a new page when one of the buttons are clicked, but I’m failing. None of those circles seems to respond to a “clicked” event. I’ve even added a button and a DebugAction method to see if something has been logged at the console, but nothing happens. Am I missing something?

Thanks!

The Panel on line 3 of MainView.ux (which contains the buttons) has HitTestMode="None", meaning that clicks get passed down to the buttons. Remove this setting and you should be getting a response. :slight_smile:

Thanks! It was exactly that.

I managed to open another page using the Change method and enabling screen behaviors using HitTestMode=“LocalVisualAndChildren”

Fuse is so awesome!