Difference between revisions of "Multishell.getFocus"
From ComputerCraft Wiki
MKlegoman357 (Talk | contribs) (Created the page) |
MKlegoman357 (Talk | contribs) m (Fixed link) |
||
Line 10: | Line 10: | ||
|desc=Checks to see if currently running program is focused or not. | |desc=Checks to see if currently running program is focused or not. | ||
|code=local focusedTabID = '''multishell.getFocus()''' | |code=local focusedTabID = '''multishell.getFocus()''' | ||
− | local currentTabID = [[multishell.getCurrent | + | local currentTabID = [[multishell.getCurrent]]() |
if currentTabID ~= focusedTabID then ''-- If the current tab is not focused'' | if currentTabID ~= focusedTabID then ''-- If the current tab is not focused'' |
Revision as of 10:07, 3 June 2014
![]() | |
Returns the ID of the currently focused tab. This is the Tab that is currently being shown to the user. | |
Syntax | multishell.getFocus() |
Returns | number focused tab ID |
Part of | ComputerCraft |
API | multishell |
Examples
![]() | |
Checks to see if currently running program is focused or not. | |
Code |
local focusedTabID = multishell.getFocus() local currentTabID = multishell.getCurrent() if currentTabID ~= focusedTabID then -- If the current tab is not focused print("I'm running in the background and the user cannot see me!") else print("I'm running on the top of other programs and the user currently sees me!") end |