shell.switchTab

From ComputerCraft Wiki
Jump to: navigation, search


Grid Redstone.png  Function shell.switchTab
Added by ComputerCraft 1.6, brings the specified tab to the foreground. As access to the Multishell API is a requirement, this command is only available to advanced systems.

See also: shell.openTab()
Syntax shell.switchTab(string program [, string args1, string args2, ...])
Returns
Part of ComputerCraft
API shell

Examples

Grid paper.png  Example
Runs the program "falling" in a new tab using shell.openTab(), then switches to it:
Code
shell.switchTab( shell.openTab("falling") )