DgsSetVisible: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 46: Line 46:


bindKey ( "x", "down", function ( )
bindKey ( "x", "down", function ( )
local state = ( not DGS:DgsGetVisible( newdgs.wind[1] ) )
local state = ( not DGS:dgsGetVisible( newdgs.wind[1] ) )
DGS:DgsSetVisible( newdgs.wind[1], state )
DGS:dgsSetVisible( newdgs.wind[1], state )
showCursor ( state )
showCursor ( state )
end)
end)

Revision as of 19:53, 22 May 2018

This function changes the visibility state of a DGS element.

Syntax

bool dgsSetVisible ( element dgsElement, bool state )

Required Arguments

  • dgsElement: the DGS 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 dgs window and changes its visibility every 2 seconds, infinite times.

DGS = exports.dgs

function changeVisibility ( )
	-- we check if the dgs element is visible
	DGS:dgsSetVisible (myWindow, not dgsGetVisible ( myWindow ) )
end

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

This example creates a dgs window with yes and no buttons and make it visible/invisible with the bindkey 'x'.

Click to collapse [-]
Client
DGS = exports.dgs

newdgs = { button = {}, wind= {} }

addEventHandler("onClientResourceStart", resourceRoot,function()
	newdgs.wind[1] = DGS:dgsDxCreateWindow(434, 304, 280, 123, "New Window", false)
	DGS:dgsDxWindowSetSizable(newdgs.wind[1], false)
	newdgs.button[1] = DGS:dgsDxCreateButton(35, 46, 87, 40, "yes", false, newdgs.wind[1])
	newdgs.button[2] = DGS:dgsDxCreateButton(166, 49, 92, 37, "no", false, newdgs.wind[1])    
end)

bindKey ( "x", "down", function ( )
		local state = ( not DGS:dgsGetVisible( newdgs.wind[1] ) )
		DGS:dgsSetVisible( newdgs.wind[1], state )
		showCursor ( state )
	end)

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips