GuiSetVisible: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 20: Line 20:
<syntaxhighlight lang="lua">function changeVisibility ( )
<syntaxhighlight lang="lua">function changeVisibility ( )
         -- we check if the gui element is visible
         -- we check if the gui element is visible
         if guiGetVisible ( myWindow ) then
         guiSetVisible (myWindow, not guiGetVisible ( myWindow ) )
                -- if it is, we hide it
                guiSetVisible ( myWindow, false )
        else
                -- if not, we make it visible
                guiSetVisible ( myWindow, true )
        end
end
end



Revision as of 15:16, 19 April 2012

This function changes the visibility state of a GUI element.

Syntax

bool guiSetVisible ( element guiElement, bool state )

Required Arguments

  • guiElement: the GUI element whose visibility is to be changed
  • state: the new visibility state

Returns

Returns true if the element's visibility could be changed, false otherwise.

Example

This example creates a gui window and changes its visibility every 2 seconds, infinite times.

function changeVisibility ( )
        -- we check if the gui element is visible
        guiSetVisible (myWindow, not guiGetVisible ( myWindow ) )
end

--Create a gui window called 'myWindow'
myWindow = guiCreateWindow ( 0.3, 0.3, 0.5, 0.60, "GUI window title", true )
--Set a timer to change the window's visibility every 2 seconds, infinite times
setTimer ( changeVisibility, 2000, 0 )

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows