Flash Lite 2.x and 3.0 ActionScript Language Reference

hasDataLoading (capabilities.hasDataLoading property)

public static hasDataLoading : Boolean [read-only]

Returns true if the Flash Lite player can dynamically load additional data through calls to specific functions.

You can call the following specific functions:

  • loadMovie()
  • loadMovieNum()
  • loadVariables()
  • loadVariablesNum()
  • XML.parseXML()
  • Sound.loadSound()
  • MovieClip.loadVariables()
  • MovieClip.loadMovie()
  • MovieClipLoader.loadClip()
  • LoadVars.load()
  • LoadVars.sendAndLoad()

Otherwise, this property returns false.

Example

The following example traces the value of this read-only property:

 trace(System.capabilities.hasDataLoading);