ImageStringStringStringNumberNumberBooleanBooleanArray.<SoftButton>Array.<TTSChunk>AlertAlertAlertAlertAlertAlertAlertAlertAlertAlertImageGet the AlertIcon
Kind: Instance method of Alert
Returns: Image - the KEY_ALERT_ICON value
StringGet the AlertText1
Kind: Instance method of Alert
Returns: String - the KEY_ALERT_TEXT_1 value
StringGet the AlertText2
Kind: Instance method of Alert
Returns: String - the KEY_ALERT_TEXT_2 value
StringGet the AlertText3
Kind: Instance method of Alert
Returns: String - the KEY_ALERT_TEXT_3 value
NumberGet the CancelID
Kind: Instance method of Alert
Returns: Number - the KEY_CANCEL_ID value
NumberGet the Duration
Kind: Instance method of Alert
Returns: Number - the KEY_DURATION value
BooleanGet the PlayTone
Kind: Instance method of Alert
Returns: Boolean - the KEY_PLAY_TONE value
BooleanGet 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
AlertSet 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. |
AlertSet 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} |
AlertSet 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} |
AlertSet 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} |
AlertSet 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. |
AlertSet 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} |
AlertSet 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. |
AlertSet 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. |
AlertSet 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} |
AlertSet 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} |