Hi Randall,
I have created an example for you with tabstrip
This one behaves like here:
there is the SCN Time Out component used, which is counting 5 to 0 and then the corresponding script is changing the tab.
adding the pagebook, you can also change the pages:
the script in timer is:
var selIndex = TABSTRIP_1.getSelectedTabIndex();
var maxIndex = 1;
if(selIndex < maxIndex) {
selIndex = selIndex + 1;
} else {
selIndex = 0;
}
TABSTRIP_1.setSelectedTabIndex(selIndex);
PAGEBOOK_1.setSelectedPageIndex(selIndex);
TABSTRIP_1.onSelect();
I did not get the connection to data sources as those are independent of this transition.
Karol