Paquete | com.adobe.solutions.rca.presentation.util |
Clase | public class AlertFormatter |
Herencia | AlertFormatter Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
Propiedades públicas
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
ERROR_ICON : Class
This property refers to error icon. | AlertFormatter | ||
INFO_ICON : Class
This property refers to information icon. | AlertFormatter | ||
OK_ICON : Class
This property refers to OK icon. | AlertFormatter | ||
WARNING_ICON : Class
This property refers to warning icon. | AlertFormatter |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
AlertFormatter(alertParent:UIComponent = null)
The constructor for AlertFormatter class. | AlertFormatter | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
showAlert(message:String, title:String, icon:Class, buttons:uint, closer:Function = null, minHeight:Number = NaN, minWidth:Number = NaN):void
This method displays a generic dialog. | AlertFormatter | ||
showAlertWithNoButtonsAndReturn(message:String, title:String, icon:Class, buttons:uint, closer:Function = null, minHeight:Number = NaN, minWidth:Number = NaN):Alert
This method displays a generic dialog without any buttons. | AlertFormatter | ||
This method displays an error dialog. | AlertFormatter | ||
This method displays an information dialog. | AlertFormatter | ||
This method displays a notification dialog. | AlertFormatter | ||
This method displays a warning dialog. | AlertFormatter | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
Información sobre propiedades
ERROR_ICON | propiedad |
public var ERROR_ICON:Class
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This property refers to error icon.
INFO_ICON | propiedad |
public var INFO_ICON:Class
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This property refers to information icon.
OK_ICON | propiedad |
public var OK_ICON:Class
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This property refers to OK icon.
WARNING_ICON | propiedad |
public var WARNING_ICON:Class
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This property refers to warning icon.
Información sobre constructores
AlertFormatter | () | Información sobre |
public function AlertFormatter(alertParent:UIComponent = null)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
The constructor for AlertFormatter
class.
alertParent:UIComponent (default = null ) — UI component that acts as the parent of the alert dialog.
|
Información sobre métodos
showAlert | () | método |
public function showAlert(message:String, title:String, icon:Class, buttons:uint, closer:Function = null, minHeight:Number = NaN, minWidth:Number = NaN):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This method displays a generic dialog.
Parámetros
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
icon:Class — Icon displayed on the dialog.
| |
buttons:uint (default = NaN ) — Buttons that are displayed on the dialog.
| |
closer:Function (default = null ) — Function invoked when the buttons on the alert are clicked.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
showAlertWithNoButtonsAndReturn | () | método |
public function showAlertWithNoButtonsAndReturn(message:String, title:String, icon:Class, buttons:uint, closer:Function = null, minHeight:Number = NaN, minWidth:Number = NaN):Alert
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This method displays a generic dialog without any buttons.
Parámetros
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
icon:Class — Icon to be displayed in dialog.
| |
buttons:uint (default = NaN ) — The buttons that will be displayed on dialog. These buttons will not be visible.
| |
closer:Function (default = null ) — Function to be invoked when the buttons on alert are clicked.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
Alert — It returns the alert dialog that is created by this method.
|
showError | () | método |
public function showError(message:String, title:String, minHeight:Number = NaN, minWidth:Number = NaN):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This method displays an error dialog.
Parámetros
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
showInfo | () | método |
public function showInfo(message:String, title:String, minHeight:Number = NaN, minWidth:Number = NaN):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This method displays an information dialog.
Parámetros
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
showNotification | () | método |
public function showNotification(message:String, title:String, minHeight:Number = NaN, minWidth:Number = NaN):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This method displays a notification dialog.
Parámetros
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
showWarning | () | método |
public function showWarning(message:String, title:String, minHeight:Number = NaN, minWidth:Number = NaN):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 10.0 |
Versiones de motor de ejecución: | Flash Player 10.2, AIR (unsupported) |
This method displays a warning dialog.
Parámetros
message:String — Message displayed in the alert dialog.
| |
title:String — Title of the alert dialog.
| |
minHeight:Number (default = NaN ) — Minimum height of the alert dialog.
| |
minWidth:Number (default = NaN ) — Minimum width of the alert dialog.
|
Tue Jun 12 2018, 02:12 PM Z