guiWindowSetMovable | Multi Theft Auto: Wiki Skip to content

guiWindowSetMovable

Client-side
Server-side
Shared

Pair: guiWindowIsMovable

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


This function allows you to specify whether or not a user can move a GUI window.

OOP Syntax Help! I don't understand this!

  • Method: guiwindow:setMovable(...)
  • Variable: .movable

Syntax

bool guiWindowSetMovable ( element theElement, bool status )
Required Arguments
  • theElement: The window to be changed.
  • status: A boolean value indicating whether the window is movable or not.

Returns

  • bool: value

Returns true if the function is successful, false otherwise.

Code Examples

shared

This example creates a gui window and sets it to be not movable

function initialize ()
-- Create a gui window
local window = guiCreateWindow ( 0.50, 0.50, 0.25, 0.25, "Test", true )
-- set it to be not movable
guiWindowSetMovable ( window, false )
-- Show cursor to check if our changes work fine
showCursor ( true )
end
addEventHandler ( "onClientResourceStart", resourceRoot, initialize )

See Also

GUI Functions