processDiaryLink: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (template:command argument fix)
Line 12: Line 12:
| '''processDiaryLink''' link |= Syntax
| '''processDiaryLink''' link |= Syntax


|p1= link:  [[String]]  |= PARAMETER1
|p1= link:  [[String]]  |PARAMETER1=  


|p2= |= PARAMETER2
|p2= |PARAMETER2=  


|p3= |= PARAMETER3
|p3= |PARAMETER3=  


| [[Nothing]] |= RETURNVALUE
| [[Nothing]] |RETURNVALUE=  




|x1= <code>(example)</code>|= EXAMPLE1
|x1= <code>(example)</code>|EXAMPLE1=  


____________________________________________________________________________________________
____________________________________________________________________________________________


| [[createDiaryLink]], [[createDiaryRecord]], [[createDiarySubject]], [[diarySubjectExists]] |= SEEALSO
| [[createDiaryLink]], [[createDiaryRecord]], [[createDiarySubject]], [[diarySubjectExists]] |SEEALSO=  


|  |= MPBEHAVIOUR
|  |MPBEHAVIOUR=  
____________________________________________________________________________________________
____________________________________________________________________________________________
}}
}}

Revision as of 11:36, 7 April 2019

Hover & click on the images for description

Description

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

Syntax

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

Examples

Example 1:
(example)

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

Notes

Bottom Section

Posted on June 30, 2017 - 09:42 (UTC)
Jezuro
To select various tabs in the map screen: processDiaryLink createDiaryLink ["selected_tab", player, ""]; ... where "selected_tab" can be "Map", "Tasks", "Diary", "Units", "Players", "Log".
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.
Posted on January 24, 2019 - 10:28 (UTC)
zozo
To select a task in the Task menu: processDiaryLink createDiaryLink ["Tasks", (simpleTasks player) select 0, ""];