processDiaryLink: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
(page formatting)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma2
|game1= arma2


|1.00
|version1= 1.00
 
|game2= arma2oa
 
|version2= 1.51
 
|game3= tkoh
 
|version3= 1.00
 
|game4= arma3
 
|version4= 0.50
 
|eff= local


|gr1= Briefing
|gr1= Briefing


| Opens the [[Diary]] screen on the subject/record specified by link. To get a valid link format, use [[createDiaryLink]].
|descr= Opens the [[Diary]] screen on the subject/record specified by link. To get a valid link format, use [[createDiaryLink]].


| '''processDiaryLink''' link
|s1= '''processDiaryLink''' link


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


| [[Nothing]]
|r1= [[Nothing]]


|x1= <code>[[processDiaryLink]] [[createDiaryLink]] ["Tasks", ([[simpleTasks]] [[player]]) select 0, ""]; {{cc|Select a task in the Task menu}}</code>
|x1= <code>[[processDiaryLink]] [[createDiaryLink]] ["Tasks", ([[simpleTasks]] [[player]]) select 0, ""]; {{cc|Select a task in the Task menu}}</code>
Line 21: Line 35:
{{cc|... where '''"selected_tab"''' can be '''"Tasks"''', '''"Diary"''', '''"Units"''', '''"Players"''', '''"Statistics"''', other user created subjects}}</code>
{{cc|... where '''"selected_tab"''' can be '''"Tasks"''', '''"Diary"''', '''"Units"''', '''"Players"''', '''"Statistics"''', other user created subjects}}</code>


|seealso= [[createDiaryLink]], [[createDiaryRecord]], [[createDiarySubject]], [[diarySubjectExists]]
|seealso= [[createDiaryLink]] [[createDiaryRecord]] [[createDiarySubject]] [[diarySubjectExists]]
}}
}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]


<!-- CONTINUE Notes -->
<!-- CONTINUE Notes -->

Revision as of 11:04, 4 March 2021

Hover & click on the images for description

Description

Description:
Opens the Diary screen on the subject/record specified by link. To get a valid link format, use createDiaryLink.
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 "Tasks", "Diary", "Units", "Players", "Statistics", other user created subjects

Additional Information

See also:
createDiaryLink createDiaryRecord createDiarySubject diarySubjectExists

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.