controlVR.onLoadProgress

Availability

Flash Player 7

Edition

Flash MX 2004.

Usage

vr_mc.onLoadProgress = function(percentage:Number) {

  // your statements here

}

Description

Invoked every time the loading content is written to the hard disk during the loading process.

Parameters

Percentage The percentage that had been loaded when the listener was invoked

Example

The following example you will have to give your controlVR instance a name vr_mc and place the following code in the main timeline. The following code will trace all the variables of the new object.


vr_mc.onLoadProgress = function (percentage){

	trace(percentage);

	

}