OutputCmdMessage: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with " ==Syntax== <syntaxhighlight lang="lua">bool outputCmdMessage ( element cmd , string text )</syntaxhighlight> ==Required Arguments== *'''Cmd:''' The cmd window. *'''text:'''...")
 
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Client function}}
__NOTOC__
This function send Messages To cmd window .


==Syntax==
==Syntax==
Line 7: Line 10:
*'''text:''' The text string that you wish to send to the cmd window.
*'''text:''' The text string that you wish to send to the cmd window.


 
==Example==
 
'''Example 1:'''
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
DGS = exports.dgs
DGS = exports.dgs
cmd = DGS:dgsDxCreateCmd(310, 208, 505, 429,false)
cmd = DGS:dgsCreateCmd(310, 208, 505, 429,false)


addCommandHandler("test",function (_,arg)
if arg and arg ~=  "" then
DGS:outputCmdMessage(cmd,arg)
end
end )
</syntaxhighlight>


addCommandHandler("22",
==See Also==
function (_,arg)
{{DGSFUNCTIONS}}
if arg ~= "" then
DGS:outputCmdMessage(cmd,arg)
end
end
)
</syntaxhighlight>

Latest revision as of 11:22, 20 January 2018

This function send Messages To cmd window .

Syntax

bool outputCmdMessage ( element cmd , string text )

Required Arguments

  • Cmd: The cmd window.
  • text: The text string that you wish to send to the cmd window.

Example

DGS = exports.dgs
cmd = DGS:dgsCreateCmd(310, 208, 505, 429,false)

addCommandHandler("test",function (_,arg)
	if arg and arg ~=  "" then 
		DGS:outputCmdMessage(cmd,arg)
	end
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