cutText: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "[0-9]THEINCREDIBLEHULK" to "") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 38: | Line 38: | ||
|p3= speed: [[Number]] - (Optional, default -1) time in seconds to fade in resource. | |p3= speed: [[Number]] - (Optional, default -1) time in seconds to fade in resource. | ||
|p4= showInMap: [[Boolean]] - (Optional, default [[true]]) [[false]] to hide the text when the map is opened | |p4= showInMap: [[Boolean]] - (Optional, default [[true]]) [[false]] to hide the text when the map is opened | ||
|p4since= arma3 0.50 | |||
|p5= isStructuredText: [[Boolean]] - (Optional, default [[false]]) [[true]] to switch support for [[Structured Text]] formatting - see Example 4 | |p5= isStructuredText: [[Boolean]] - (Optional, default [[false]]) [[true]] to switch support for [[Structured Text]] formatting - see {{HashLink|#Example 4}} | ||
|p5since= arma3 1.74 | |||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
Line 54: | Line 56: | ||
|p24= speed: [[Number]] - (Optional, default -1) time in seconds to fade in resource. | |p24= speed: [[Number]] - (Optional, default -1) time in seconds to fade in resource. | ||
|p25= showInMap: [[Boolean]] - (Optional, default [[true]]) [[false]] to hide the text when the map is opened. | |p25= showInMap: [[Boolean]] - (Optional, default [[true]]) [[false]] to hide the text when the map is opened | ||
|p25since= arma3 0.50 | |||
|p26= isStructuredText: [[Boolean]] - (Optional, default [[false]]) [[true]] to switch support for [[Structured Text]] formatting - see Example 4 | |p26= isStructuredText: [[Boolean]] - (Optional, default [[false]]) [[true]] to switch support for [[Structured Text]] formatting - see {{HashLink|#Example 4}} | ||
|p26since= arma3 1.74 | |||
|r2= [[Nothing]] | |r2= [[Nothing]] | ||
|s3= | |s3= layerName [[cutText]] [text, type, speed, showInMap, isStructuredText] | ||
|s3since= arma3 1.58 | |s3since= arma3 1.58 | ||
Line 72: | Line 76: | ||
|p44= speed: [[Number]] - (Optional, default -1) Time in seconds to fade in resource. | |p44= speed: [[Number]] - (Optional, default -1) Time in seconds to fade in resource. | ||
|p46= showInMap: [[Boolean]] - (Optional, default [[true]]) [[false]] to hide the text when the map is opened | |p46= showInMap: [[Boolean]] - (Optional, default [[true]]) [[false]] to hide the text when the map is opened | ||
|p47= isStructuredText: [[Boolean]] - (Optional, default [[false]]) [[true]] to switch support for [[Structured Text]] formatting - see Example 4 | |p47= isStructuredText: [[Boolean]] - (Optional, default [[false]]) [[true]] to switch support for [[Structured Text]] formatting - see {{HashLink|#Example 4}} | ||
|p47since= arma3 1.74 | |||
|r3= [[Number]] - number of the allocated layer | |r3= [[Number]] - number of the allocated layer | ||
Line 86: | Line 91: | ||
_layer2 = "down" [[cutText]] ["At The Bottom", "PLAIN DOWN"];</code> | _layer2 = "down" [[cutText]] ["At The Bottom", "PLAIN DOWN"];</code> | ||
|x4= | |x4= <code>[[cutText]] ["<t color='#ff0000' size='5'>RED ALERT!</t><br/>***********", "PLAIN", -1, [[true]], [[true]]];</code> | ||
|seealso= [[allCutLayers]], [[titleText]], [[cutRsc]], [[cutObj]], [[cutFadeOut]], [[allActiveTitleEffects]] | |seealso= [[allCutLayers]], [[titleText]], [[cutRsc]], [[cutObj]], [[cutFadeOut]], [[allActiveTitleEffects]] | ||
Line 96: | Line 101: | ||
<dd class="notedate">Posted on September 20, 2013 - 06:59</dd> | <dd class="notedate">Posted on September 20, 2013 - 06:59</dd> | ||
<dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt> | <dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt> | ||
<dd class="note">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. | <dd class="note">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.</dd> | ||
Revision as of 23:15, 10 August 2021
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.74 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.
- since 0.50
- showInMap: Boolean - (Optional, default true) false to hide the text when the map is opened
- since 1.74
- isStructuredText: Boolean - (Optional, default false) true to switch support for Structured Text formatting - see Example 4
- 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.
- since 0.50
- showInMap: Boolean - (Optional, default true) false to hide the text when the map is opened
- since 1.74
- isStructuredText: Boolean - (Optional, default false) true to switch support for Structured Text formatting - see Example 4
- Return Value:
- Nothing
Syntax 3
- Syntax:
- layerName cutText [text, type, speed, showInMap, isStructuredText]
- 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
- since 1.74
- isStructuredText: Boolean - (Optional, default false) true to switch support for Structured Text formatting - see Example 4
- 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:
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
- 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.
- 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
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: GUI Control
- Scripting Commands: Local Effect