createMissionDisplay: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (formatting)
(5 intermediate revisions by 3 users not shown)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Create single missions display as a child of given display. The mission dialog will be set to the directory given as an argument "root". |= Description
| Create single missions display as a child of given display. The mission dialog will be set to the directory given as an argument "root". |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Display]] <nowiki>=</nowiki> display '''createMissionDisplay''' string |= Syntax
| [[Display]] <nowiki>=</nowiki> display '''createMissionDisplay''' missionRootDirectoryString |SYNTAX=


|p1= display : [[Display]]|= Parameter 1
|p1= display : [[Display]]|PARAMETER1=


|p2= string: [[String]]|= Parameter 2
|p2= string: [[String]]|PARAMETER2=


| [[Display]] |= Return value
| [[Display]] |RETURNVALUE=
____________________________________________________________________________________________
 
|s2= [[Display]] <nowiki>=</nowiki> display '''createMissionDisplay''' [missionRootDirectoryString,cfgMissionsClass] |Syntax 2=
 
|p21= display : [[Display]]|PARAMETER21=
 
|p22= missionRootDirectoryString: [[String]] - root direction from \Arma 3\Missions\ROOT |Parameter 22=
 
|p23= cfgMissionsClass: [[String]] - cfgMissions class to use |Parameter 23=
 
|r2= [[For Type]] |Return value 2=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code> _ChildDisplay <nowiki>=</nowiki>_Rootdisplay createMissionDisplay "Tutorial"</code>|= Example 1
|x1= <code>_ChildDisplay = _Rootdisplay [[createMissionDisplay]] "Tutorial";</code>|EXAMPLE1=
 
|x2= In Arma 3 this would create scenarios UI <code>[[findDisplay]] 46 [[createMissionDisplay]] "";</code>|EXAMPLE2=
 
|x3= Other options for Arma 3:
* (findDisplay 46) createMissionDisplay ["","Cutscenes"];
* (findDisplay 46) createMissionDisplay ["","Campaigns"];
* (findDisplay 46) createMissionDisplay ["","MPMissions"];
* (findDisplay 46) createMissionDisplay ["","Challenges"];
* (findDisplay 46) createMissionDisplay ["","Showcases"];</code>|EXAMPLE3=
 
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| |SEEALSO=


}}
}}

Revision as of 19:01, 31 July 2019

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

Description

Description:
Create single missions display as a child of given display. The mission dialog will be set to the directory given as an argument "root".
Groups:
Uncategorised

Syntax

Syntax:
Display = display createMissionDisplay missionRootDirectoryString
Parameters:
display : Display
string: String
Return Value:
Display

Alternative Syntax

Syntax:
Display = display createMissionDisplay [missionRootDirectoryString,cfgMissionsClass]
Parameters:
display : Display
missionRootDirectoryString: String - root direction from \Arma 3\Missions\ROOT
cfgMissionsClass: String - cfgMissions class to use
Return Value:
For Type

Examples

Example 1:
_ChildDisplay = _Rootdisplay createMissionDisplay "Tutorial";
Example 2:
In Arma 3 this would create scenarios UI findDisplay 46 createMissionDisplay "";
Example 3:
Other options for Arma 3:
  • (findDisplay 46) createMissionDisplay ["","Cutscenes"];
  • (findDisplay 46) createMissionDisplay ["","Campaigns"];
  • (findDisplay 46) createMissionDisplay ["","MPMissions"];
  • (findDisplay 46) createMissionDisplay ["","Challenges"];
  • (findDisplay 46) createMissionDisplay ["","Showcases"];

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