menuData: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " \| *(game[0-9]|version[0-9]|gr[0-9]|serverExec|mp|pr|descr|s[0-9]|p[0-9]{1,3}|r[0-9]|x1?[0-9]|seealso) *= +" to " |$1= ") |
Lou Montana (talk | contribs) m (Text replacement - "\{\{cc\|([^} ]*)\}\}" to "// $1") |
||
Line 24: | Line 24: | ||
|r2= [[String]] | |r2= [[String]] | ||
|x1= <code> | |x1= <code>// Create an entry which will return its data once clicked | ||
[[private]] _ctrlMenuStrip = [[findDisplay]] 313 [[displayCtrl]] 120; | [[private]] _ctrlMenuStrip = [[findDisplay]] 313 [[displayCtrl]] 120; | ||
[[private]] _indexMain = _ctrlMenuStrip [[menuAdd]] [<nowiki/>[], "Custom Tools"]; | [[private]] _indexMain = _ctrlMenuStrip [[menuAdd]] [<nowiki/>[], "Custom Tools"]; |
Revision as of 11:26, 12 May 2022
Description
- Description:
- Returns data stored in menu entry on given path.
- Groups:
- GUI Control - Menu
Syntax
Alternative Syntax
Examples
- Example 1:
// Create an entry which will return its data once clicked private _ctrlMenuStrip = findDisplay 313 displayCtrl 120; private _indexMain = _ctrlMenuStrip menuAdd [[], "Custom Tools"]; private _indexData = _ctrlMenuStrip menuAdd [[_indexMain],"This entry will print its data to system chat when clicked"]; _ctrlMenuStrip menuSetData [[_indexMain,_indexData], "[objNull,'Some String',true]"]; _ctrlMenuStrip menuSetAction [[_indexMain,_indexData], "systemChat (findDisplay 313 displayCtrl 120 menuData (menuHover (findDisplay 313 displayCtrl 120)));"];
Additional Information
- See also:
- menuSetData
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