processDiaryLink: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>")
m (Some wiki formatting)
 
(9 intermediate revisions by the same user not shown)
Line 23: Line 23:
|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>processDiaryLink createDiaryLink ["Tasks", (simpleTasks [[player]]) select 0, ""]; {{cc|Select a task in the Task menu}}</code>
|x1= <sqf>processDiaryLink createDiaryLink ["Tasks", (simpleTasks player) select 0, ""]; // Select a task in the Task menu</sqf>


|x2= <code>{{cc|To select various tabs in the map screen:}}
|x2= <sqf>
[[processDiaryLink]] [[createDiaryLink]] ["selected_tab", [[player]], ""];
// To select various tabs in the map screen:
{{cc|... where '''"selected_tab"''' can be '''"Tasks"''', '''"Diary"''', '''"Units"''', '''"Players"''', '''"Statistics"''', other user created subjects}}</code>
processDiaryLink createDiaryLink ["selected_tab", player, ""];
// ... where "selected_tab" can be "Tasks", "Diary", "Units", "Players", "Statistics", other user created subjects
</sqf>


|seealso= [[createDiaryLink]] [[createDiaryRecord]] [[createDiarySubject]] [[diarySubjectExists]]
|seealso= [[createDiaryLink]] [[createDiaryRecord]] [[createDiarySubject]] [[diarySubjectExists]]
}}
}}


<dl class="command_description">
{{Note
 
|user= Killzone_Kid
<dt></dt>
|timestamp= 20170630214900
<dd class="notedate">Posted on June 30, 2017 - 21:49 (UTC)</dd>
|text= You can also force open diary with selected link by passing string in link format directly:
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
<sqf>processDiaryLink "<log subject='Diary'></log>";</sqf>
<dd class="note">You can also force open diary with selected link by passing string in link format directly:
<code>processDiaryLink "&lt;log subject=""Diary"">&lt;/log>";</code>
The above will open tab Briefing.  
The above will open tab Briefing.  
<code>processDiaryLink "&lt;log subject=""Diary"" record=""Record2"">&lt;/log>";</code>
<sqf>processDiaryLink "<log subject='Diary' record='Record2'></log>";</sqf>
The above will open tab Briefing and select 3rd record from the bottom, provided the records were added consistently.
The above will open tab Briefing and select 3rd record from the bottom, provided the records were added consistently.
</dd>
}}
 
</dl>

Latest revision as of 14:54, 22 May 2022

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
Killzone_Kid - c
Posted on Jun 30, 2017 - 21:49 (UTC)
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.