Image
String
String
String
Number
Number
Boolean
Boolean
Array.<SoftButton>
Array.<TTSChunk>
Alert
Alert
Alert
Alert
Alert
Alert
Alert
Alert
Alert
Alert
Image
Get the AlertIcon
Kind: Instance method of Alert
Returns: Image
- the KEY_ALERT_ICON value
String
Get the AlertText1
Kind: Instance method of Alert
Returns: String
- the KEY_ALERT_TEXT_1 value
String
Get the AlertText2
Kind: Instance method of Alert
Returns: String
- the KEY_ALERT_TEXT_2 value
String
Get the AlertText3
Kind: Instance method of Alert
Returns: String
- the KEY_ALERT_TEXT_3 value
Number
Get the CancelID
Kind: Instance method of Alert
Returns: Number
- the KEY_CANCEL_ID value
Number
Get the Duration
Kind: Instance method of Alert
Returns: Number
- the KEY_DURATION value
Boolean
Get the PlayTone
Kind: Instance method of Alert
Returns: Boolean
- the KEY_PLAY_TONE value
Boolean
Get the ProgressIndicator
Kind: Instance method of Alert
Returns: Boolean
- the KEY_PROGRESS_INDICATOR value
Array.<SoftButton>
Get the SoftButtons
Kind: Instance method of Alert
Returns: Array.<SoftButton>
- the KEY_SOFT_BUTTONS value
Array.<TTSChunk>
Get the TtsChunks
Kind: Instance method of Alert
Returns: Array.<TTSChunk>
- the KEY_TTS_CHUNKS value
Alert
Set the AlertIcon
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
icon | Image |
Image struct determining whether static or dynamic icon. If omitted on supported displays, no (or the default if applicable) icon should be displayed. - The desired AlertIcon. |
Alert
Set the AlertText1
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
text1 | String |
The first line of the alert text field - The desired AlertText1. {'string_min_length': 1, 'string_max_length': 500} |
Alert
Set the AlertText2
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
text2 | String |
The second line of the alert text field - The desired AlertText2. {'string_min_length': 1, 'string_max_length': 500} |
Alert
Set the AlertText3
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
text3 | String |
The optional third line of the alert text field - The desired AlertText3. {'string_min_length': 1, 'string_max_length': 500} |
Alert
Set the CancelID
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
id | Number |
An ID for this specific alert to allow cancellation through the `CancelInteraction` RPC. - The desired CancelID. |
Alert
Set the Duration
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
duration | Number |
Timeout in milliseconds. Typical timeouts are 3-5 seconds. If omitted, timeout is set to 5s. - The desired Duration. {'default_value': 5000, 'num_min_value': 3000, 'num_max_value': 10000} |
Alert
Set the PlayTone
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
tone | Boolean |
Defines if tone should be played. Tone is played before TTS. If omitted or provided without ttsChunks, no tone is played. - The desired PlayTone. |
Alert
Set the ProgressIndicator
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
indicator | Boolean |
If supported on the given platform, the alert GUI will include some sort of animation indicating that loading of a feature is progressing. e.g. a spinning wheel or hourglass, etc. - The desired ProgressIndicator. |
Alert
Set the SoftButtons
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
buttons | Array.<SoftButton> |
App defined SoftButtons. If omitted on supported displays, the displayed alert shall not have any SoftButtons. - The desired SoftButtons. {'array_min_size': 0, 'array_max_size': 4} |
Alert
Set the TtsChunks
Kind: Instance method of Alert
Returns: Alert
- The class instance for method chaining.
Param | Type | Description |
---|---|---|
chunks | Array.<TTSChunk> |
An array of text chunks of type TTSChunk. See TTSChunk. The array must have at least one item. - The desired TtsChunks. {'array_min_size': 1, 'array_max_size': 100} |