At present I am using 3 different Tab Strips in Vision to alternate through different windows. I know Vision does not have the same thing, but is there a way to link three tab strips so that only one tab will show active and allow for smooth navigation?
If you want to show only one tab strip as the selected one, maybe adding a similar property change script to each tab strip could be what you want:
if event.propertyName == "selectedTab" and event.newValue:
event.source.parent.getComponent('Tab Strip').selectedTab = ''
event.source.parent.getComponent('Tab Strip 1').selectedTab = ''
Will this work like the tab container in that by selecting a top category then the selected tab strip will appear?