cutText: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
Lou Montana (talk | contribs) m (Fix bad regex effects) |
||
Line 11: | Line 11: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Displays a text message in the center of the screen. The text can be displayed on multiple lines by using "\n" new line characters:<br><tt>[[cutText]] ["line1\nline2\nline3", "PLAIN"];</tt>. Since Arma 3 v1.73.142260 this command supports [[Structured Text]] formatting. | | Displays a text message in the center of the screen. The text can be displayed on multiple lines by using "\n" new line characters:<br><tt>[[cutText]] ["line1\nline2\nline3", "PLAIN"];</tt>. Since Arma 3 v1.73.142260 this command supports [[Structured Text]] formatting. | ||
{{Feature arma3|For greater efficiency and ease of modability it is recommended to use named layers available with alternative syntax since Arma 3 v1.57.134673}}|DESCRIPTION= | |||
{{Feature arma3|For greater efficiency and ease of modability it is recommended to use named layers available with alternative syntax since Arma 3 v1.57.134673}} |DESCRIPTION= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| '''cutText''' [text, type, speed, showInMap, isStructuredText] |SYNTAX= | | '''cutText''' [text, type, speed, showInMap, isStructuredText] |SYNTAX= | ||
|p1 | |||
|p1= text: [[String]] - text to be displayed |PARAMETER1= | |||
| | |||
| | |p2= type: [[String]] one of "PLAIN", "PLAIN DOWN", "BLACK", "BLACK FADED", "BLACK OUT", "BLACK IN", "WHITE OUT" and "WHITE IN". See [[Title Effect Type]]s for more information about these values. |PARAMETER2= | ||
| | |||
| | |p3= speed: [[Number]] - (Optional, default -1) time in seconds to fade in resource. |PARAMETER3= | ||
|p4= showInMap: [[Boolean]] - (Optional, default [[true]]) [[false]] to hide the text when the map is opened. {{since|arma3}} |PARAMETER4= | |||
|p5= isStructuredText: [[Boolean]] - (Optional, default [[false]]) [[true]] to switch support for [[Structured Text]] formatting - see Example 4. {{since|arma3|1.73.142260|y}} |PARAMETER5= | |||
| [[Nothing]] |RETURNVALUE= | | [[Nothing]] |RETURNVALUE= | ||
____________________________________________________________________________________________ | |||
|s2= layer '''cutText''' [text, type, speed, showInMap, isStructuredText] |SYNTAX2= | |s2= layer '''cutText''' [text, type, speed, showInMap, isStructuredText] |SYNTAX2= | ||
|p21= layer: [[Number]] - layer number on which the effect is shown, where 0 is the back most. Layer number is rounded to the nearest integer and also cannot be negative. Layer 99.5 will be treated as layer 100. |PARAMETER21= | |p21= layer: [[Number]] - layer number on which the effect is shown, where 0 is the back most. Layer number is rounded to the nearest integer and also cannot be negative. Layer 99.5 will be treated as layer 100. |PARAMETER21= | ||
| | |p22= text: [[String]] - text to be displayed |PARAMETER22= | ||
| | |p23= type: [[String]] one of "PLAIN", "PLAIN DOWN", "BLACK", "BLACK FADED", "BLACK OUT", "BLACK IN", "WHITE OUT" and "WHITE IN". See [[Title Effect Type]]s for more information about these values. |PARAMETER23= | ||
|p24= speed: [[Number]] - (Optional, default -1) time in seconds to fade in resource. |PARAMETER24= | |||
|p25= showInMap: [[Boolean]] - (Optional, default [[true]]) [[false]] to hide the text when the map is opened. |PARAMETER25= | |||
|p26= isStructuredText: [[Boolean]] - (Optional, default [[false]]) [[true]] to switch support for [[Structured Text]] formatting - see Example 4. {{since|arma3|1.73.142260|y}} |PARAMETER26= | |||
|r2= [[Nothing]] |RETURNVALUE2= | |r2= [[Nothing]] |RETURNVALUE2= | ||
____________________________________________________________________________________________ | |||
|s3= layerName '''cutText''' [text, type, speed, showInMap, isStructuredText] {{since|arma3|1.57.134673|y}} |SYNTAX3= | |||
|p41= layerName: [[String]] - layer name on which the effect is shown. Layer names are CaSe SeNsItIvE |PARAMETER41= | |p41= layerName: [[String]] - layer name on which the effect is shown. Layer names are CaSe SeNsItIvE |PARAMETER41= | ||
|p42 | |||
|p42= text: [[String]] - text to be displayed |PARAMETER42= | |||
| | |||
| | |p43= type: [[String]] one of "PLAIN", "PLAIN DOWN", "BLACK", "BLACK FADED", "BLACK OUT", "BLACK IN", "WHITE OUT" and "WHITE IN". See [[Title Effect Type]]s for more information about these values. |PARAMETER43= | ||
|p46= showInMap | |||
|p47= isStructuredText | |p44= speed: [[Number]] - (Optional, default -1) Time in seconds to fade in resource. |PARAMETER44= | ||
|p46= showInMap: [[Boolean]] - (Optional, default [[true]]) [[false]] to hide the text when the map is opened. {{since|arma3||y}} |PARAMETER46= | |||
|p47= isStructuredText: [[Boolean]] - (Optional, default [[false]]) [[true]] to switch support for [[Structured Text]] formatting - see Example 4. {{since|arma3|1.73.142260|y}} |PARAMETER47= | |||
|r3= [[Number]] - number of the allocated layer |RETURNVALUE3= | |r3= [[Number]] - number of the allocated layer |RETURNVALUE3= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1= <code>[[cutText]] ["","BLACK OUT"]; | |x1= <code>[[cutText]] ["", "BLACK OUT"]; | ||
[[cutText]] ["Hello World!","PLAIN",2];</code> |EXAMPLE1= | [[cutText]] ["Hello World!", "PLAIN", 2];</code> |EXAMPLE1= | ||
|x2= <code>2 [[cutText]] ["Hello World!","PLAIN",2];</code> |EXAMPLE2= | |x2= <code>2 [[cutText]] ["Hello World!", "PLAIN", 2];</code> |EXAMPLE2= | ||
|x3= <code>_layer1 = "normal" [[cutText]] ["In The Centre","PLAIN"]; | |x3= <code>_layer1 = "normal" [[cutText]] ["In The Centre", "PLAIN"]; | ||
_layer2 = "down" [[cutText]] ["At The Bottom","PLAIN DOWN"];</code> |EXAMPLE3= | _layer2 = "down" [[cutText]] ["At The Bottom", "PLAIN DOWN"];</code> |EXAMPLE3= | ||
|x4=Since Arma 3 v1.73.142260:<code>[[cutText]] ["<t color='#ff0000' size='5'>RED ALERT!</t><br/>***********", "PLAIN", -1, [[true]], [[true]]];</code> |EXAMPLE4= | |x4=Since Arma 3 v1.73.142260:<code>[[cutText]] ["<t color='#ff0000' size='5'>RED ALERT!</t><br/>***********", "PLAIN", -1, [[true]], [[true]]];</code> |EXAMPLE4= | ||
Line 61: | Line 77: | ||
| [[allCutLayers]], [[titleText]], [[cutRsc]], [[cutObj]], [[cutFadeOut]], [[allActiveTitleEffects]] |SEEALSO= | | [[allCutLayers]], [[titleText]], [[cutRsc]], [[cutObj]], [[cutFadeOut]], [[allActiveTitleEffects]] |SEEALSO= | ||
}} | }} | ||
Line 75: | Line 90: | ||
<h3 style="display:none">Bottom Section</h3> | <h3 style="display:none">Bottom Section</h3> | ||
[[Category:Scripting Commands OFP 1.46|{{uc:{{PAGENAME}}}}]] | |||
[[Category:Scripting Commands OFP 1.96|{{uc:{{PAGENAME}}}}]] | |||
[[Category:Scripting Commands OFP 1. | [[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands OFP 1.96| | [[Category:Scripting Commands Armed Assault|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands OFP 1. | |||
[[Category:Scripting Commands Armed Assault| | |||
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] |
Revision as of 01:23, 25 September 2020
Description
- Description:
- Displays a text message in the center of the screen. The text can be displayed on multiple lines by using "\n" new line characters:
cutText ["line1\nline2\nline3", "PLAIN"];. Since Arma 3 v1.73.142260 this command supports Structured Text formatting. - Groups:
- GUI Control
Syntax 1
- Syntax:
- cutText [text, type, speed, showInMap, isStructuredText]
- Parameters:
- text: String - text to be displayed
- type: String one of "PLAIN", "PLAIN DOWN", "BLACK", "BLACK FADED", "BLACK OUT", "BLACK IN", "WHITE OUT" and "WHITE IN". See Title Effect Types for more information about these values.
- speed: Number - (Optional, default -1) time in seconds to fade in resource.
- showInMap: Boolean - (Optional, default true) false to hide the text when the map is opened. Template:since
- isStructuredText: Boolean - (Optional, default false) true to switch support for Structured Text formatting - see Example 4. Template:since
- Return Value:
- Nothing
Syntax 2
- Syntax:
- layer cutText [text, type, speed, showInMap, isStructuredText]
- Parameters:
- layer: Number - layer number on which the effect is shown, where 0 is the back most. Layer number is rounded to the nearest integer and also cannot be negative. Layer 99.5 will be treated as layer 100.
- text: String - text to be displayed
- type: String one of "PLAIN", "PLAIN DOWN", "BLACK", "BLACK FADED", "BLACK OUT", "BLACK IN", "WHITE OUT" and "WHITE IN". See Title Effect Types for more information about these values.
- speed: Number - (Optional, default -1) time in seconds to fade in resource.
- showInMap: Boolean - (Optional, default true) false to hide the text when the map is opened.
- isStructuredText: Boolean - (Optional, default false) true to switch support for Structured Text formatting - see Example 4. Template:since
- Return Value:
- Nothing
Syntax 3
- Syntax:
- layerName cutText [text, type, speed, showInMap, isStructuredText] Template:since
- Parameters:
- layerName: String - layer name on which the effect is shown. Layer names are CaSe SeNsItIvE
- text: String - text to be displayed
- type: String one of "PLAIN", "PLAIN DOWN", "BLACK", "BLACK FADED", "BLACK OUT", "BLACK IN", "WHITE OUT" and "WHITE IN". See Title Effect Types for more information about these values.
- speed: Number - (Optional, default -1) Time in seconds to fade in resource.
- showInMap: Boolean - (Optional, default true) false to hide the text when the map is opened. Template:since
- isStructuredText: Boolean - (Optional, default false) true to switch support for Structured Text formatting - see Example 4. Template:since
- Return Value:
- Number - number of the allocated layer
Examples
- Example 1:
cutText ["", "BLACK OUT"]; cutText ["Hello World!", "PLAIN", 2];
- Example 2:
2 cutText ["Hello World!", "PLAIN", 2];
- Example 3:
_layer1 = "normal" cutText ["In The Centre", "PLAIN"]; _layer2 = "down" cutText ["At The Bottom", "PLAIN DOWN"];
- Example 4:
- Since Arma 3 v1.73.142260:
cutText ["<t color='#ff0000' size='5'>RED ALERT!</t><br/>***********", "PLAIN", -1, true, true];
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
Notes
- Posted on September 20, 2013 - 06:59
- Killzone_Kid
- In Arma 3 "PLAIN" param will display your text where the crosshair is, "PLAIN DOWN" will push the text further down, closer to the bottom of the screen.
Bottom Section
- Posted on July 6, 2016 - 13:32 (UTC)
- Krzmbrzl00
-
The value for speed has to be greater 0. If 0 is used as speed the default value (1) will be used.
If you want to create an "instant" effect you can use a really small value (e.g. 0.001)
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: GUI Control
- Scripting Commands: Local Effect
- Scripting Commands OFP 1.46
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.99
- Scripting Commands Armed Assault
- Scripting Commands Arma 2
- Scripting Commands Arma 3
- Scripting Commands Take On Helicopters