Onloadstart (Moviecliploader.onloadstart Event Listener) - MACROMEDIA FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE Reference

Flash lite 2.x actionscript language reference
Hide thumbs Also See for FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE:
Table of Contents

Advertisement

onLoadStart (MovieClipLoader.onLoadStart event
listener)
onLoadStart = function([target_mc]) {}
Invoked when a call to
file. Call this listener on a listener object that you add using
MovieClipLoader.addListener()
The value for
target_mc
is useful if you are loading multiple files with the same set of listeners.
Parameters
target_mc: MovieClip [optional]
MovieClipLoader.loadClip()
Availability: ActionScript 1.0; Flash Lite 2.0
Parameters
[optional] - A movie clip loaded by a
target_mc:
Example
The following example loads an image into a movie clip instance called
and
onLoadInit
onLoadComplete
image. This information appears in a text field called
this.createEmptyMovieClip("image_mc", this.getNextHighestDepth());
var mclListener:Object = new Object();
mclListener.onLoadStart = function(target_mc:MovieClip) {
target_mc.startTimer = getTimer();
};
mclListener.onLoadComplete = function(target_mc:MovieClip) {
target_mc.completeTimer = getTimer();
};
mclListener.onLoadInit = function(target_mc:MovieClip) {
var timerMS:Number = target_mc.completeTimer-target_mc.startTimer;
target_mc.createTextField("timer_txt", target_mc.getNextHighestDepth(),
0, target_mc._height,
target_mc._width, 22);
target_mc.timer_txt.text = "loaded in "+timerMS+" ms.";
};
var image_mcl:MovieClipLoader = new MovieClipLoader();
image_mcl.addListener(mclListener);
image_mcl.loadClip("http://www.helpexamples.com/flash/images/image1.jpg",
image_mc);
MovieClipLoader.loadClip()
.
identifies the movie clip this call is being made for. This parameter
method.
events are used to determine how long it takes to load the
has successfully begun to download a
A movie clip loaded by a
MovieClipLoader.loadClip()
.
timer_txt
method.
. The
image_mc
MovieClipLoader
541

Advertisement

Table of Contents
loading

Table of Contents