@jay
In this example, there are 3 radio buttons and each one displays different content. you can make this type of application for the navigation menus...etc
Code:
Content.makeFrontInterface(600, 500); const var panel1 = Content.getComponent("panel1"); const var panel2 = Content.getComponent("panel2"); const var panel3 = Content.getComponent("panel3"); const var hideShow1 = Content.getComponent("hideShow1"); const var hideShow2 = Content.getComponent("hideShow2"); const var hideShow3 = Content.getComponent("hideShow3"); inline function onhideShow1Control(number, value) { panel1.showControl(value); } hideShow1.setControlCallback(onhideShow1Control); inline function onhideShow2Control(number, value) { panel2.showControl(value); } hideShow2.setControlCallback(onhideShow2Control); inline function onhideShow3Control(number, value) { panel3.showControl(value); } hideShow3.setControlCallback(onhideShow3Control);