////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package mx.events
{
import flash.display.LoaderInfo;
import flash.events.Event;
import flash.events.ProgressEvent;
import flash.net.URLRequest;
/**
* The RSLEvent class represents an event object used by the
* DownloadProgressBar class when an RSL is being downloaded by the Preloader class.
*
* @see mx.preloaders.DownloadProgressBar
* @see mx.preloaders.Preloader
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public class RSLEvent extends ProgressEvent
{
include "../core/Version.as";
//--------------------------------------------------------------------------
//
// Class constants
//
//--------------------------------------------------------------------------
/**
* The RSLEvent.RSL_ADD_PRELOADED
constant defines the value of the
* type
property of the event object for an
* rslAddPreloaded
event. This event is dispatched from an
* IFlexModuleFactory after a child IFlexModuleFactory preloads an RSL
* into its application domain.
*
*
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 the currentTarget . |
loaderInfo | The LoaderInfo instance * associated with this RSL. |
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 listening for the event. |
RSLEvent.RSL_COMPLETE
constant defines the value of the
* type
property of the event object for a rslComplete
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
* myButton.addEventListener() to register an event listener,
* myButton is the value of the currentTarget . |
errorText | Empty |
isResourceModule | True if we loaded a resourceModule * instead of an RSL |
rslIndex | The index number of the RSL * currently being downloaded. |
rslTotal | The total number of RSLs * being downloaded. |
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 listening for the event. |
url | The URLRequest object that represents * the location of the RSL being downloaded. |
RSLEvent.RSL_ERROR
constant defines the value of the
* type
property of the event object for a rslError
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
* myButton.addEventListener() to register an event listener,
* myButton is the value of the currentTarget . |
errorText | An error message.|
isResourceModule | True if we loaded a resourceModule * instead of an RSL |
rslIndex | The index number of the RSL * currently being downloaded. |
rslTotal | The total number of RSLs * being downloaded. |
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 listening for the event. |
url | The URLRequest object that represents * the location of the RSL being downloaded. |
RSLEvent.RSL_PROGRESS
constant defines the value of the
* type
property of the event object for a rslProgress
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
* myButton.addEventListener() to register an event listener,
* myButton is the value of the currentTarget . |
errorText | Empty|
isResourceModule | True if we loaded a resourceModule * instead of an RSL |
rslIndex | The index number of the RSL * currently being downloaded. |
rslTotal | The total number of RSLs * being downloaded. |
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 listening for the event. |
url | The URLRequest object that represents * the location of the RSL being downloaded. |
RSLEvent.RSL_PROGRESS
);RSLEvent.RSL_COMPLETE
);RSLEvent.RSL_ERROR
);total - 1
.
*
* @param rslTotal The total number of RSLs being loaded.
*
* @param url The location of the RSL.
*
* @param errorText The error message of the error when type is RSLEvent.RSL_ERROR.
*
* @param isResourceModule True if the event occurred when loading a ResourceModule.
*
* @param loaderInfo The LoaderInfo object associated with this event.
*
* @tiptext Constructor for RSLEvent
objects.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function RSLEvent(type:String, bubbles:Boolean = false,
cancelable:Boolean = false,
bytesLoaded:int = -1, bytesTotal:int = -1,
rslIndex:int = -1, rslTotal:int = -1,
url:URLRequest = null, errorText:String = null,
isResourceModule:Boolean = false,
loaderInfo:LoaderInfo = null)
{
super(type, bubbles, cancelable, bytesLoaded, bytesTotal);
this.rslIndex = rslIndex;
this.rslTotal = rslTotal;
this.url = url;
this.errorText = errorText;
this.isResourceModule = isResourceModule;
this.loaderInfo = loaderInfo;
}
//--------------------------------------------------------------------------
//
// Properties
//
//--------------------------------------------------------------------------
//----------------------------------
// errorText
//----------------------------------
/**
* The error message if the type is RSL_ERROR; otherwise, it is null;
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var errorText:String;
//----------------------------------
// isResourceModule
//----------------------------------
/**
* True if the event is for loading a resourceModule instead of an RSL
*/
public var isResourceModule:Boolean;
//----------------------------------
// loaderInfo
//----------------------------------
/**
* The LoaderInfo object associated with this event. This is only set in the
* RSLEvent.RSL_COMPLETE event. Otherwise loaderInfo will be null.
*/
public var loaderInfo:LoaderInfo;
//----------------------------------
// rslIndex
//----------------------------------
/**
* The index number of the RSL currently being downloaded.
* This is a number between 0 and rslTotal - 1
.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var rslIndex:int;
//----------------------------------
// rslTotal
//----------------------------------
/**
* The total number of RSLs being downloaded by the preloader
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var rslTotal:int;
//----------------------------------
// url
//----------------------------------
/**
* The URLRequest object that represents the location
* of the RSL being downloaded.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var url:URLRequest;
//--------------------------------------------------------------------------
//
// Overridden properties: Event
//
//--------------------------------------------------------------------------
/**
* @private
*/
override public function clone():Event
{
return new RSLEvent(type, bubbles, cancelable,
bytesLoaded, bytesTotal, rslIndex,
rslTotal, url, errorText, isResourceModule,
loaderInfo);
}
}
}