shell.switchTab
From ComputerCraft Wiki
| 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
| Runs the program "falling" in a new tab using shell.openTab(), then switches to it: | |
| Code |
shell.switchTab( shell.openTab("falling") )
|