View.previousTab()

Overview

Displays the previous tab in the tabs list when multiple tabs are opened in a Web profile. If the currently open tab is first, then it will display the last 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.previousTab();

Example

Copy
/* Set the F7 key to move to the previous opened tab in the list.'
 */
 
function PrevClick(event)
{
    View.previousTab();
}

WLEvent.on("OnKey<E041>", PrevClick);