DgsComboBoxGetItemColor

From Multi Theft Auto: Wiki

This function get the color of a comboBox item.

Syntax

bool dgsComboBoxGetItemColor ( element comboBox, int item )

Required Arguments

  • comboBox: The combo box element
  • item: Item ID

Returns

Returns number if the item color was got successfully, false otherwise.

Example

This example creates a player list on the right of the screen and fills it with players online and sets the combo box item color according to their nametag color.

DGS = exports.dgs

function createPlayerComboBox ( )
	--Create the grid list element
	playerComboBox = DGS:dgsCreateComboBox ( 0.80, 0.10, 0.15, 0.60,"Select a player", true )
	for id, player in ipairs ( getElementsByType ( "player" ) ) do
		local item = DGS:dgsComboBoxAddItem( playerComboBox )
		local r, g, b = getPlayerNametagColor ( player ) -- We get the player nametag color.
		DGS:dgsComboBoxSetItemText ( playerComboBox , item, getPlayerName ( player ) )
		DGS:dgsComboBoxSetItemColor ( playerComboBox , item, tocolor( r, g, b, 255 ) ) -- We set the grid list item color to the returned values of getPlayerNametagColor.
	end
end
addEventHandler ( "onClientResourceStart", resourceRoot, createPlayerList )

addEventHandler ( "onClientDgsComboBoxSelect", root, function()
	if source == playerComboBox then
		local item = DGS:dgsComboBoxGetSelectedItem(source)
		if item ~= -1 then
			local color = DGS:dgsComboBoxGetItemColor( source, item )
			if color then
				outputChatBox( "Item : "..item.." ; Color : "..color)
			end
		end
	end
end)

See Also

Multi Language Supports

Animation

3D Interface

3D Text

Arrow List

Browser

Button

Check Box

Combo Box

Edit

Ellipse Detect Area

Detect Area

Grid List

Image

Memo

Label

Progress Bar

Radio Button

Scroll Bar

Scroll Pane

Switch Button

Tab Panel

Window

Plugin

Media Browser

Rounded Rectangle

Color Picker

Blur Box

Effect 3D