processDiaryLink: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<dd class="note">([^}]*)<code>([^<]*)<\/code>" to "<dd class="note">$1<sqf>$2</sqf>") |
Lou Montana (talk | contribs) m (Text replacement - "<dd class="note">([^}]*)<code>([^<]*)<\/code>" to "<dd class="note">$1<sqf>$2</sqf>") |
||
Line 40: | Line 40: | ||
<sqf>processDiaryLink "<log subject=""Diary""></log>";</sqf> | <sqf>processDiaryLink "<log subject=""Diary""></log>";</sqf> | ||
The above will open tab Briefing. | The above will open tab Briefing. | ||
< | <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> | </dd> | ||
</dl> | </dl> |
Revision as of 10:58, 13 May 2022
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
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:
The above will open tab Briefing.processDiaryLink "<log subject=""Diary""></log>";The above will open tab Briefing and select 3rd record from the bottom, provided the records were added consistently.processDiaryLink "<log subject=""Diary"" record=""Record2""></log>";