Suppose I have two tabs in my app:
<ViewNavigator id="tab1" firstView="Tab1">
<ViewNavigator id="tab2" firstView="Tab2">
I go into Tab1, and start pushing other views onto the stack
navigator.pushView(Tab1View1)
navigator.pushView(Tab1View2)
and so on....
Now I want to jump directly, with NO TRANSITIONS, from one of the views deep in Tab1, into one of the views in Tab2. How do I do this?