guiComboBoxGetItemText | Multi Theft Auto: Wiki Skip to content

guiComboBoxGetItemText

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

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


This function retrieves the text from a specific combobox item.

Syntax

guiComboBoxGetItemText ( )

Code Examples

client

This outputs selected item's text to the chatbox.

local x,y = guiGetScreenSize()
local guiWindow = createWindow(x/2-500,y/2-500,500,500,"myWindow",false,nil)
local comboBox = guiCreateComboBox(0.1,0,1,0.8,0.8,"Select a value please",true,guiWindow)
guiComboBoxAddItem(comboBox,"value1")
local item = guiComboBoxGetSelected(comboBox)
local text = guiComboBoxGetItemText(comboBox, item)
if text then
outputChatBox("You have selected: " .. text)
end

See Also

GUI Functions