processDiaryLink: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<h3 style='display:none'>Notes</h3> <dl class='command_description'> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> <h3 style='display:none'>Bottom Section</h3>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame( +[0-9])?|Game [Vv]ersion( +[0-9])?|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|MP[Aa]rg|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects...)
Line 31: Line 31:
| [[createDiaryLink]], [[createDiaryRecord]], [[createDiarySubject]], [[diarySubjectExists]]
| [[createDiaryLink]], [[createDiaryRecord]], [[createDiarySubject]], [[diarySubjectExists]]


| |MPBEHAVIOUR=
|
}}
}}



Revision as of 12:01, 18 January 2021

Hover & click on the images for description

Description

Description:
Open the diary screen on the record specified by link.
Groups:
Briefing

Syntax

Syntax:
processDiaryLink link
Parameters:
link: String
Return Value:
Nothing

Examples

Example 1:
processDiaryLink createDiaryLink ["Tasks", (simpleTasks player) select 0, ""];// Select a task in the Task menu
Example 2:
// To select various tabs in the map screen: processDiaryLink createDiaryLink ["selected_tab", player, ""]; // ... where "selected_tab" can be "Map", "Tasks", "Diary", "Units", "Players", "Log"

Additional Information

See also:
createDiaryLinkcreateDiaryRecordcreateDiarySubjectdiarySubjectExists

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
Posted on June 30, 2017 - 21:49 (UTC)
Killzone Kid
You can also force open diary with selected link by passing string in link format directly: processDiaryLink "<log subject=""Diary""></log>"; The above will open tab Briefing. processDiaryLink "<log subject=""Diary"" record=""Record2""></log>"; The above will open tab Briefing and select 3rd record from the bottom, provided the records were added consistently.