Bridge2021
Object

globals

Properties and methods available in the global namespace.

Properties

NameType AccessDescription
App read/write The application object.

Methods

void

Displays a platform-standard dialog containing a short message and an OK button.

message String TThe string for the displayed message.
title? String A string to appear as the title of the dialog, if the platform supports a title.
errorIcon Boolean When true, the platform-standard alert icon is replaced by the platform-standard error icon in the dialog.
Boolean

Displays a platform-standard dialog containing a short message and two buttons labeled Yes and No.

message String The string for the displayed message.
noAsDefault Boolean When true, the No button is the default choice, selected when the user types Enter.
title? String A string to appear as the title of the dialog, if the platform supports a title.
String

Displays a modal dialog that returns the user’s text input.

prompt String The string for the displayed message.
default? String The initial value to be displayed in the text edit field.
title? String A string to appear as the title of the dialog.