View.nextTab()

Overview

Displays the next tab in the tabs list when multiple tabs are opened in a Web profile. If the currently open tab is last, then it will display the first tab in the list.

This feature is only available in Web profiles that allow multiple tabs to be open.

Added in version 2.1.25

Android only

Format

View.nextTab();

Example

Copy
/* Set the F8 key to move to the next opened tab in the list.'
 */
 
function FwdClick(event)
{
    View.nextTab();
}

WLEvent.on("OnKey<E042>", FwdClick);