Changing widget switcher index from sub menus

Hello! I am working on a VR project. My intent is to have the player navigate to a computer monitor with a mock desktop that has an app icon on it. When the user clicks on the app, another page is shown with another menu. This menu will have more buttons that will show other pages. I have it successfully set up so you can navigate to the app menu by clicking on the app icon. I am using a widget switcher and trying to change the active widget index when the buttons are pressed. As I said, opening the app works, but I can’t get a button on widget switcher index 1 to change the index 2. Here is what I have for the Blueprint for the Main Menu that has the widget switcher.
MainMenu
And here is the Blueprint for the Desktop when you click on the icon.


The Event Construct only allows one connection and I’ve tried chaining it to the next function but that doesn’t work. Any help would be very much appreciated.

Got my issue resolved. Turns out I had forgotten to hook up the controller release functions in my VRPawn, so it would trigger once for the first button and wouldn’t be released to be able to trigger the next button. Now chaining the functions in the main menu works.