dialog: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (format)
Line 10: Line 10:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Boolean]] <nowiki>=</nowiki> '''dialog''' |= Syntax
| [[Boolean]] <nowiki>=</nowiki> [[dialog]] |= Syntax


| [[Boolean]] -   
| [[Boolean]] -   
Line 16: Line 16:
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>?!(dialog) : createDialog "Dialog1"</pre> |= Example 1
|x1= <code>[[if]] (![[dialog]]) [[then]] {[[createDialog]] "Dialog1";};</code> |= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 17:06, 9 September 2014

Hover & click on the images for description

Description

Description:
Tests whether any user dialog is open.
Groups:
Uncategorised

Syntax

Syntax:
Boolean = dialog
Return Value:
Boolean - true if a dialog is open, false if not

Examples

Example 1:
if (!dialog) then {createDialog "Dialog1";};

Additional Information

See also:
createDialogcloseDialogDialog Control

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section