BIS fnc guiMessage: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 12: Line 12:
| [message, (header, position, isCancel, parent, pause)] spawn BIS_fnc_guiMessage; |= Syntax
| [message, (header, position, isCancel, parent, pause)] spawn BIS_fnc_guiMessage; |= Syntax


|p1= '''message''': [[String]] or [[Structured Text]] or [[Array]] - message or array of items (listbox will be displayed instead) |=
|p1= '''message''':
<br />[[String]] - message
<br />[[Structured Text]] - message
<br />[[Array]] - listbox, every item is defined as [[String]] (enabled) or [[String]] in [[Array]] (disabled)
<br />
<br />When variable '''BIS_fnc_guiMessage_cursel''' is defined and is [[Number]], item with index equal to the variable will be selected by default. |=
|p2= '''header''' (Optional): [[String]] or [[Structured Text]] - header |=
|p2= '''header''' (Optional): [[String]] or [[Structured Text]] - header |=
|p3= '''position''' (Optional): [[Array]] - position in format [x,y,w,h] |=
|p3= '''position''' (Optional): [[Array]] - position in format [x,y,w,h] |=
Line 30: Line 35:
Result:<br />
Result:<br />
[[File:TakeOn BIS fnc guiMessage.jpg|200px]]|=
[[File:TakeOn BIS fnc guiMessage.jpg|200px]]|=
|x3= <code>[["Enabled Item",["Disabled Item"]],"Header"] spawn BIS_fnc_guiMessage;</code>|=


____________________________________________________________________________________________
____________________________________________________________________________________________

Revision as of 10:10, 21 October 2011

Hover & click on the images for description

Description

Description:
Send function for remote execution (and executes locally if conditions are met) .
Execution:
spawn
Groups:
Uncategorised

Syntax

Syntax:
[message, (header, position, isCancel, parent, pause)] spawn BIS_fnc_guiMessage;
Parameters:
message:
String - message
Structured Text - message
Array - listbox, every item is defined as String (enabled) or String in Array (disabled)

When variable BIS_fnc_guiMessage_cursel is defined and is Number, item with index equal to the variable will be selected by default.
header (Optional): String or Structured Text - header
position (Optional): Array - position in format [x,y,w,h]
isCancel (Optional): Boolean or Array - true to display cancel button or array with button texts [okText,cancelText]
parent (Optional): Display - parent display
pause (Optional): Boolean - true to pause simulation when message window is open
Return Value:
Array - [endState, (lbId)]
  • endState: Boolean - true when clicked OK button, false when escaped or clicked on Cancel button
  • lbId: Number - selected listbox item (when listbox was used)
Returned only after message windows was closed.

Examples

Example 1:
["Hello World"] spawn BIS_fnc_guiMessage;
Example 2:
["Message","Header",nil,true] spawn BIS_fnc_guiMessage; Result:
TakeOn BIS fnc guiMessage.jpg
Example 3:
[["Enabled Item",["Disabled Item"]],"Header"] spawn BIS_fnc_guiMessage;

Additional Information

See also:
See also needed

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