allActiveTitleEffects: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{Command|Comments= ____________________________________________________________________________________________ | arma3dev |Game name= |1.97|Game version= _________________...")
 
m (Text replacement - " |r1=[[" to " |r1= [[")
(23 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma3dev |Game name=
|game1= arma3
|version1= 1.98


|1.97|Game version=
|gr1= GUI Control
____________________________________________________________________________________________


| Returns a list of all layers that have currently active title effect. Numbers equal to or greater than 0 represent cut layers, where as -1 represents title layer (see [[Title Effect Type]]). Named layers are represented by their respective index.<br><br>
|descr= Returns a list of all layers that have currently active title effect. Numbers equal to or greater than 0 represent cut layers, where as -1 represents title layer (see [[Title Effect Type]]). Named layers are represented by their respective index.{{Feature | Informative | Effects created with [[titleText]], [[titleRsc]] and [[titleObj]] commands do not have a numbered layer, so they are represented as -1 layer in the result. Effects created with [[cutText]], [[cutRsc]] and [[cutObj]] are created either on layer 0, if no layer is specified, or on the given layer, if the layer index is specified, so they are represented by the layer index.}}
{{Informative | Effects created with [[titleText]], [[titleRsc]] and [[titleObj]] commands do not have a numbered layer, so they are represented as -1 layer in the result. Effects created with [[cutText]], [[cutRsc]] and [[cutObj]] are created either on layer 0, if no layer is specified, or on the given layer, if the layer index is specified.}} |DESCRIPTION=
____________________________________________________________________________________________


| [[allActiveTitleEffects]] |SYNTAX=
|s1= [[allActiveTitleEffects]]


| [[Array]] of [[Number]]s, where each number represents index of currently active effect layer. |RETURNVALUE=
|r1= [[Array]] of [[Number]]s, where each number represents index of currently active effect layer.
____________________________________________________________________________________________
 
|x1= <code>[[cutText]] ["Hello World!" ,"PLAIN", 2]];
[[hint]] [[str]] [[allActiveTitleEffects]]; // [0]</code> |EXAMPLE1=


|x2= <code>21 [[cutText]] ["Hello World!", "PLAIN", 2]];
|x1= <code>[[cutText]] ["Hello World!" ,"PLAIN", 2];
[[hint]] [[str]] [[allActiveTitleEffects]]; // [21]</code> |EXAMPLE2=
[[hint]] [[str]] [[allActiveTitleEffects]]; // [0]</code>


|x3= <code>[[cutText]] ["Hello World!", "PLAIN", 2]];
|x2= <code>21 [[cutText]] ["Hello World!", "PLAIN", 2];
[[titleText]] ["Hello World!", "PLAIN", 2]];
[[hint]] [[str]] [[allActiveTitleEffects]]; // [21]</code>
[[hint]] [[str]] [[allActiveTitleEffects]]; // [-1, 0]</code> |EXAMPLE3=
____________________________________________________________________________________________


| [[cutText]], [[cutRsc]], [[cutObj]], [[titleText]], [[titleRsc]], [[titleObj]], [[Title Effect Type]]|SEEALSO=
|x3= <code>[[cutText]] ["Hello World!", "PLAIN", 2];
[[titleText]] ["Hello World!", "PLAIN", 2];
[[hint]] [[str]] [[allActiveTitleEffects]]; // [-1, 0]</code>


|seealso= [[allCutLayers]], [[cutText]], [[cutRsc]], [[cutObj]], [[cutFadeOut]], [[titleText]], [[titleRsc]], [[titleObj]], [[titleFadeOut]], [[Title Effect Type]]
}}
}}
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|ALLACTIVETITLEEFFECTS]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]

Revision as of 23:35, 7 August 2021

Hover & click on the images for description

Description

Description:
Returns a list of all layers that have currently active title effect. Numbers equal to or greater than 0 represent cut layers, where as -1 represents title layer (see Title Effect Type). Named layers are represented by their respective index.
Effects created with titleText, titleRsc and titleObj commands do not have a numbered layer, so they are represented as -1 layer in the result. Effects created with cutText, cutRsc and cutObj are created either on layer 0, if no layer is specified, or on the given layer, if the layer index is specified, so they are represented by the layer index.
Groups:
GUI Control

Syntax

Syntax:
allActiveTitleEffects
Return Value:
Array of Numbers, where each number represents index of currently active effect layer.

Examples

Example 1:
cutText ["Hello World!" ,"PLAIN", 2]; hint str allActiveTitleEffects; // [0]
Example 2:
21 cutText ["Hello World!", "PLAIN", 2]; hint str allActiveTitleEffects; // [21]
Example 3:
cutText ["Hello World!", "PLAIN", 2]; titleText ["Hello World!", "PLAIN", 2]; hint str allActiveTitleEffects; // [-1, 0]

Additional Information

See also:
allCutLayerscutTextcutRsccutObjcutFadeOuttitleTexttitleRsctitleObjtitleFadeOutTitle Effect Type

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