Difference between revisions of "Multishell.getFocus"
From ComputerCraft Wiki
MKlegoman357 (Talk | contribs) (Created the page) |
Magiczocker (Talk | contribs) m |
||
(One intermediate revision by one other user not shown) | |||
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'' | ||
Line 19: | Line 19: | ||
}} | }} | ||
}} | }} | ||
+ | [[Category:API Functions]] |
Latest revision as of 07:58, 4 August 2020
![]() | |
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 |