Pacote | mx.events |
Classe | public class ResourceEvent |
Herança | ResourceEvent ProgressEvent Event Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
loadResourceModule()
method.
Mais exemplos
Elementos da API relacionados
Propriedade | Definido por | ||
---|---|---|---|
bubbles : Boolean [somente leitura]
Indica se um evento é do tipo bubbling. | Event | ||
bytesLoaded : Number
O número de itens ou bytes carregados no momento em que o ouvinte processa o evento. | ProgressEvent | ||
bytesTotal : Number
O número total de itens ou bytes que serão carregados se o processo de carregamento for bem-sucedido. | ProgressEvent | ||
cancelable : Boolean [somente leitura]
Indica se o comportamento associado ao evento pode ser impedido. | Event | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
currentTarget : Object [somente leitura]
O objeto que está processando ativamente o objeto Event com um ouvinte de evento. | Event | ||
errorText : String
The error message if the type is ERROR;
otherwise, it is null. | ResourceEvent | ||
eventPhase : uint [somente leitura]
A fase atual no fluxo de eventos. | Event | ||
target : Object [somente leitura]
O destino de evento. | Event | ||
type : String [somente leitura]
O tipo de evento. | Event |
Método | Definido por | ||
---|---|---|---|
ResourceEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, bytesLoaded:uint = 0, bytesTotal:uint = 0, errorText:String = null)
Constructor. | ResourceEvent | ||
[substituir]
Cria uma copia de um objeto ProgressEvent e define o valor de cada propriedade para corresponder ao valor do original. | ProgressEvent | ||
Uma função de utilitário para implementar o método toString() em classes ActionScript 3.0 Event personalizadas. | Event | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Verifica se o método preventDefault() foi chamado no evento. | Event | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Cancela um comportamento padrão de evento se esse comportamento puder ser cancelado. | Event | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Impede o processamento de qualquer ouvinte de evento no nó atual e qualquer nó subsequente no fluxo de eventos. | Event | ||
Impede o processamento de algum ouvinte de evento em nós subsequentes ao nó atual no fluxo de eventos. | Event | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
[substituir]
Retorna uma string que contém todas as propriedades do objeto ProgressEvent. | ProgressEvent | ||
Retorna o valor primitivo do objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
COMPLETE : String = "complete" [estático]
Dispatched when the resource module SWF file has finished loading. | ResourceEvent | ||
ERROR : String = "error" [estático]
Dispatched when there is an error loading the resource module SWF file. | ResourceEvent | ||
PROGRESS : String = "progress" [estático]
Dispatched when the resource module SWF file is loading. | ResourceEvent |
errorText | propriedade |
public var errorText:String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The error message if the type
is ERROR
;
otherwise, it is null
.
ResourceEvent | () | Construtor |
public function ResourceEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, bytesLoaded:uint = 0, bytesTotal:uint = 0, errorText:String = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Parâmetrostype:String — The value of the type property of the event object. Possible values are:
| |
bubbles:Boolean (default = false ) — Determines whether the Event object
participates in the bubbling stage of the event flow.
| |
cancelable:Boolean (default = false ) — Determines whether the Event object can be cancelled.
| |
bytesLoaded:uint (default = 0 ) — The number of bytes loaded
at the time the listener processes the event.
| |
bytesTotal:uint (default = 0 ) — The total number of bytes
that will ultimately be loaded if the loading process succeeds.
| |
errorText:String (default = null ) — The error message of the error
when type is ResourceEvent.ERROR .
|
COMPLETE | Constante |
public static const COMPLETE:String = "complete"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Dispatched when the resource module SWF file has finished loading.
The ResourceEvent.COMPLETE constant defines the value of the
type
property of the event object for a complete
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of currentTarget . |
errorText | Empty |
target | The object that dispatched the event;
it is not always the object listening for the event.
Use the currentTarget property to always access the
object that listens for the event. |
ERROR | Constante |
public static const ERROR:String = "error"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Dispatched when there is an error loading the resource module SWF file.
The ResourceEvent.ERROR constant defines the value of the
type
property of the event object for a error
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
bytesLoaded | Empty |
bytesTotal | Empty |
cancelable | false |
currentTarget | The object that defines the
event listener that handles the event. For example, if you use the
myButton.addEventListener() method to register an event listener,
myButton is the value of currentTarget . |
errorText | |
target | The object that dispatched the event;
it is not always the object that is listening for the event.
Use the currentTarget property to always access the
object that listens for the event. |
PROGRESS | Constante |
public static const PROGRESS:String = "progress"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Dispatched when the resource module SWF file is loading.
The ResourceEvent.PROGRESS constant defines the value of the
type
property of the event object for a progress
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
bytesLoaded | The number of bytes loaded. |
bytesTotal | The total number of bytes to load. |
cancelable | false |
currentTarget | The object that defines the
event listener that handles the event. For example, if you use the
myButton.addEventListener() method to register an event listener,
myButton is the value of currentTarget . |
errorText | |
target | The object that dispatched the event;
it is not always the object that listens for the event.
Use the currentTarget property to always access the
object that is listening for the event. |
Wed Jun 13 2018, 11:10 AM Z