BIS_fnc_showAANArticle

From Bohemia Interactive Community
Revision as of 15:33, 7 April 2019 by Erentar (talk | contribs) (template:command argument fix)
Jump to navigation Jump to search


Hover & click on the images for description

Description

Description:
Show AAN article
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[arrayOfArrays, display, fade] call BIS_fnc_showAANArticle
Parameters:
arrayOfArrays: array of arrays; each subarray defines part of an article, can be:
  • Article title: ["title", <text:string>]
  • Article author and date: ["meta", [<author:string>, <date:array Y,M,D,H,M>, <timezoneName:string>]]
  • Paragraph: ["text",<text:string>]
  • Bold paragraph: ["textbold",<text:string>]
  • Locked paragraph: ["textlocked",[<text:string>,<prompt:string>]] - Locked paragraph with subscriber prompt. There should be no paragraph after it.
  • Image with description: ["image", [<path:string>, <description:string>, <source:string>]] - The image should have 2:1 ratio.
  • Link to another "fake" article displayed on left: ["box",[<path:string>, <description:string>]] - The image should have 2:1 ratio.
  • Author's bio: ["author",[<path:string>, <description:string>]] - The image should have 1:1 ratio.
  • Draft notification: ["draft",[<text:string>, <color:arrayRGB>]] - Text and color are optional, default notification will be shown when they're undefined.
display: a display to make the AAN article a child of it
fade: Boolean (default: false) true to fade from black
Return Value:
Display - the AAN article display

Examples

Example 1:
[ 
	[ 
		["title","My Title"], 
		["meta",["Katherine Bishop",[2035,2,24,11,38],"CET"]], 
		["textbold","This is a bold text"], 
		["image",["\a3\Missions_F_Orange\Data\Img\orange_overview_ca.paa","Some image description"]], 
		["box",["\a3\Missions_F_Orange\Data\Img\Faction_IDAP_overview_CA.paa","You won't believe how playing Showcase Laws of War can change your life!"]], 
		["text","Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tincidunt pretium ultricies. Etiam ac ornare est, quis posuere nisl. Mauris facilisis lectus eu turpis maximus consequat. Donec ut metus nec risus tristique mattis. Ut posuere rutrum tellus, ut molestie orci mattis id. Cras ultrices euismod diam, in venenatis nunc commodo eget. Interdum et malesuada fames ac ante ipsum primis in faucibus. Morbi congue dolor rutrum lectus euismod, ac faucibus magna molestie. Aliquam in libero sit amet eros sagittis tristique. Nam pellentesque dignissim aliquam."], 
		["textlocked",["Sed non est risus. Nulla condimentum at leo sed bibendum. Phasellus laoreet sit amet leo tincidunt consequat. Curabitur nec hendrerit purus. Nam massa nisi, mattis in aliquet consectetur, ornare eget nibh. Nunc dignissim, nibh sit amet ultrices tincidunt, mi nulla fermentum quam, non condimentum dolor eros vulputate massa.","SUBSCRIBE PLZ"]], 
		["author",["\a3\Missions_F_Orange\Data\Img\avatar_journalist_ca.paa","Katherine Bishop is a journalist"]] 
	]
] call bis_fnc_showAANArticle;

Result:

a3 orange aan.jpg

Additional Information

See also:
BIS_fnc_AAN

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