createDialog: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 40: Line 40:
[[Category:Scripting Commands OFP 1.96|CREATEDIALOG]]
[[Category:Scripting Commands OFP 1.96|CREATEDIALOG]]
[[Category:Scripting Commands ArmA|CREATEDIALOG]]
[[Category:Scripting Commands ArmA|CREATEDIALOG]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Interaction|{{uc:{{PAGENAME}}}}]]

Revision as of 09:11, 20 February 2007

Hover & click on the images for description

Description

Description:
Create a dialog which is defined either in the mission's description.ext, in the campaign's description.ext or in the global resource.cpp. The given name has to be the class name used in one of these files. If already another dialog is opened, the desired dialog is created as child dialog of the already opened one.
Groups:
Uncategorised

Syntax

Syntax:
createDialog className
Parameters:
className: String - class name used in the description.ext / resource.cpp
Return Value:
Boolean - true when the dialog was created successfully

Examples

Example 1:
_ok = createDialog "RscDisplayGame"
?!(_ok) : hint "Dialog couldn't be opened!"

Additional Information

See also:
closeDialogdialog

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