Tab Strip Navigation Mode

Is there a way to adjust the navigation mode of a tab strip. I like using the tab strip, but I want to use “Open” window instead of “Swap”.

Yes, you can set the navigation mode property to Disabled. When you do that the selected tab property will change when you select a new tab. You can add a propertyChange script to the component that will open the window rather than swap. Add the following code to the propertyChange event:if event.propertyName == "selectedTab": windowName = event.newValue win = system.nav.openWindow(windowName) system.nav.centerWindow(win)

Thanks Travis.