PP.Ui.showMessage

Syntax

PP.Ui.showMessage(text: String, type: PP.Ui.MessageType, imagePath: String);

Parameters

text. Dialog box text.

type. The PP.Ui.MessageType enumeration item which determines the dialog box type.

imagePath. Path to the folder with icons.

Description

The showMessage method creates and shows the dialog box.

Example

To execute the example, it is necessary to have link to the PP.js script file, file containing settings (for example, resources.ru.js) and file containing icons. Display an information dialog box:

// Set path to resources
PP.resourceManager.setRootResourcesFolder("../build/resources/");
// Set culture
PP.setCurrentCulture(PP.Cultures.ru);
// Display information dialog box
PP.Ui.showMessage("Message text", PP.Ui.MessageType.Information, "../build/img/");

As a result, the dialog box is displayed:

See also:

PP.Ui