closeDisplay: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Bot: Replacing category Scripting Commands Arma 3 with Arma 3: Scripting Commands)
Line 39: Line 39:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|CLOSEDISPLAY]]
[[Category:Scripting Commands ArmA|CLOSEDISPLAY]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Interaction|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<!-- CONTINUE Notes -->
<dl class="command_description">
<dl class="command_description">
Line 57: Line 48:
</dl>
</dl>
<!-- DISCONTINUE Notes -->
<!-- DISCONTINUE Notes -->
[[Category:Scripting Commands|CLOSEDISPLAY]]
[[Category:Scripting Commands ArmA|CLOSEDISPLAY]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Arma 3: Scripting Commands]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command Group: GUI Control|{{uc:{{PAGENAME}}}}]]
[[Category:Command Group: Interaction|{{uc:{{PAGENAME}}}}]]

Revision as of 18:00, 3 December 2018

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Close given display with exit code. Most common exit codes are: #define IDC_OK 1 //emulate "Ok" button #define IDC_CANCEL 2 //emulate "Cancel" button
Groups:
Uncategorised

Syntax

Syntax:
display closeDisplay exitcode
Parameters:
display: Display
exitcode: Number
Return Value:
Nothing

Examples

Example 1:
_display closeDisplay 1;
Example 2:
#define IDC_OK 1 _display closeDisplay IDC_OK;

Additional Information

See also:
createDisplaycloseDialog

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

Posted on November 18, 2015 - 02:44 (UTC)
LongEnoughName
closeDisplay does not instantly close the display but does it on next display simulation cycle (when display becomes active)