tabbar

Hallo,



is there a built in function to test if a tabbar is currently

visible (open) in the manner tabbar.isOpenTab(‘TabID’) or

exists any other method to check?



Thanks in advance,

trietz

You can get ID of currently opened tab as
    tabbar.getActiveTab();

so you can use
    if (TabID == tabbar.getActiveTab())
    then do_something();