Pakket | mx.events |
Klasse | public class ResourceEvent |
Overerving | ResourceEvent ProgressEvent Event Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
loadResourceModule()
method.
Meer voorbeelden
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
bubbles : Boolean [alleen-lezen]
Geeft aan of een gebeurtenis een terugkoppelgebeurtenis is. | Event | ||
bytesLoaded : Number
Het aantal items of bytes dat wordt geladen wanneer de listener de gebeurtenis verwerkt. | ProgressEvent | ||
bytesTotal : Number
Het totale aantal items of bytes dat wordt geladen wanneer het laadproces is voltooid. | ProgressEvent | ||
cancelable : Boolean [alleen-lezen]
Geeft aan of het gedrag dat aan deze gebeurtenis is gekoppeld, kan worden voorkomen. | Event | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
currentTarget : Object [alleen-lezen]
Het object dat het gebeurtenisobject actief verwerkt met een gebeurtenislistener. | Event | ||
errorText : String
The error message if the type is ERROR;
otherwise, it is null. | ResourceEvent | ||
eventPhase : uint [alleen-lezen]
De huidige fase in de gebeurtenisstroom. | Event | ||
target : Object [alleen-lezen]
Doel van gebeurtenis. | Event | ||
type : String [alleen-lezen]
Het type gebeurtenis. | Event |
Methode | Gedefinieerd door | ||
---|---|---|---|
ResourceEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, bytesLoaded:uint = 0, bytesTotal:uint = 0, errorText:String = null)
Constructor. | ResourceEvent | ||
[overschrijven]
Maakt een kopie van het object ProgressEvent en stelt de waarde van elke eigenschap in zodat deze overeenkomt met die van het origineel. | ProgressEvent | ||
Een hulpprogrammafunctie voor de implementatie van de methode toString() in aangepaste ActionScript 3.0-Event-klassen. | Event | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Controleert of de methode preventDefault() is aangeroepen voor de gebeurtenis. | Event | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Annuleert het standaardgedrag van een gebeurtenis wanneer dat gedrag kan worden geannuleerd. | Event | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Voorkomt het verwerken van gebeurtenislisteners in het huidige knooppunt en volgende knooppunten in de gebeurtenisstroom. | Event | ||
Voorkomt het verwerken van gebeurtenislisteners in knooppunten die volgen op het huidige knooppunt in de gebeurtenisstroom. | Event | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
[overschrijven]
Retourneert een tekenreeks die alle eigenschappen van het object ProgressEvent bevat. | ProgressEvent | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
COMPLETE : String = "complete" [statisch]
Dispatched when the resource module SWF file has finished loading. | ResourceEvent | ||
ERROR : String = "error" [statisch]
Dispatched when there is an error loading the resource module SWF file. | ResourceEvent | ||
PROGRESS : String = "progress" [statisch]
Dispatched when the resource module SWF file is loading. | ResourceEvent |
errorText | eigenschap |
public var errorText:String
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The error message if the type
is ERROR
;
otherwise, it is null
.
ResourceEvent | () | Constructor |
public function ResourceEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, bytesLoaded:uint = 0, bytesTotal:uint = 0, errorText:String = null)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
Parameterstype: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"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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:42 AM Z