MovieData
| Kind of class: | class |
|---|---|
| Inherits from: | none |
| Classpath: | org.asapframework.management.movie.MovieData |
| File last modified: | Sunday, 05 November 2006, 11:40:08 |
Class to store information about a external (separately loaded) SWF movie - used internally by MovieManager to store and retrieve data.
MovieData stores properties of the movie, such as container clip, name, url and localController, and the state of the SWF: whether it has been created , loaded and initialized.
The state flags have the following meaning:
MovieData stores properties of the movie, such as container clip, name, url and localController, and the state of the SWF: whether it has been created , loaded and initialized.
The state flags have the following meaning:
- isCreated is true when the constructor of the local controller of the movie to load is called.
- isLoaded is true when the loader has signalled that the loading is complete
- isInitialized is true when the function notifyMovieInitialized() of the local manager of the movie to load has been called.
Summary
Constructor
- MovieData (inName:String, inURL:String, inMovieClip:MovieClip)
- Class constructor
Instance properties
- mc : MovieClip
- Movieclip controlled by the localController
- name : String
- Identifyer
- url : String
- url from which an swf has been loaded
- isCreated : Boolean
- Indicates whether a LocalController has been created
- isLoaded : Boolean
- Indicates whether the swf has been loaded
- isInitialized : Boolean
- Indicates if the LocalController has signalled notifyMovieInitialized
- localController : LocalController
- The LocalController of the movieclip
Instance methods
- toString : String
Constructor
MovieData
function MovieData (
inName:String,
inURL:String,
inMovieClip:MovieClip)
Class constructor
Parameters:
inName :
unique identifying name of movie
inURL :
url where the swf can be found
inMovieClip:
movieclip in which the swf will be or has been loaded
Instance properties
isCreated
isCreated:Boolean
(read)
Indicates whether a LocalController has been created
isInitialized
isInitialized:Boolean
(read)
Indicates if the LocalController has signalled notifyMovieInitialized
isLoaded
isLoaded:Boolean
(read)
Indicates whether the swf has been loaded
mc
mc:MovieClip
(read)
Movieclip controlled by the localController
name
name:String
(read)
Identifyer
url
url:String
(read)
url from which an swf has been loaded
Instance methods
toString
function toString (
) : String