BIS fnc dynamicText: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|Game version=" to "|Game version= |gr1= GUI |GROUP1=")
m (Text replacement - "\[\[Category\:Function Group\: GUI(\|\{\{[a-zA-Z0-9_:]+\}\})?\]\]" to "")
Line 52: Line 52:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: GUI|{{uc:dynamicText}}]]
 
[[Category:Functions|{{uc:dynamicText}}]]
[[Category:Functions|{{uc:dynamicText}}]]
[[Category:{{Name|arma2oa}}: Functions|{{uc:dynamicText}}]]
[[Category:{{Name|arma2oa}}: Functions|{{uc:dynamicText}}]]
[[Category:{{Name|tkoh}}: Functions|{{uc:dynamicText}}]]
[[Category:{{Name|tkoh}}: Functions|{{uc:dynamicText}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:dynamicText}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:dynamicText}}]]

Revision as of 17:14, 10 October 2020

Hover & click on the images for description

Description

Description:
Shows dynamic opening credits or any type of text.
BIS fnc dynamicText v2.gif
Execution:
spawn
Groups:
GUI

Syntax

Syntax:
[text, x, y, duration, fadeInTime, deltaY, rscLayer] spawn BIS_fnc_dynamicText
Parameters:
text: String - text to display
x: Number - (Optional, default -1) X coordinates
y: Number - (Optional, default -1) Y coordinates)
duration: Number - (Optional, default 4) display duration
fadeInTime: Number - (Optional, default 1) fade-in time
deltaY: Number - (Optional, default 0) Y position delta:
  • = 0: Text will not move
  • > 0: Text will move down
  • < 0: Text will move up
duration and the absolute deltaY value will influence the movement speed.
rscLayer: Number - (Optional, default) resource layer
Return Value:
Nothing

Examples

Example 1:
["<t color='#ff0000' size = '.8'>Warning!<br />Stop doing what you are doing</t>",-1,-1,4,1,0,789] spawn BIS_fnc_dynamicText;

Additional Information

See also:
BIS_fnc_infoTextBIS_fnc_textTilesBIS_fnc_typeTextBIS_fnc_typeText2BIS_fnc_EXP_camp_SITREP

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