Pacoteflash.display
Classepublic final class Scene
HerançaScene Inheritance Object

The Scene class includes properties for identifying the name, labels, and number of frames in a scene. The MovieClip class includes a currentScene property, which is a Scene object that identifies the scene in which the playhead is located in the timeline of the MovieClip instance. The scenes property of the MovieClip class is an array of Scene objects. Also, the gotoAndPlay() and gotoAndStop() methods of the MovieClip class use Scene objects as parameters.

Veja também

MovieClip.currentScene
MovieClip.scenes
MovieClip.gotoAndPlay()
MovieClip.gotoAndStop()


Propriedades Públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  labels : Array
[read-only] An array of FrameLabel objects for the scene.
Scene
  name : String
[read-only] The name of the scene.
Scene
  numFrames : int
[read-only] The number of frames in the scene.
Scene
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Métodos Públicos
 MétodoDefinido por
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Detalhes da propriedade
labelspropriedade
labels:Array  [read-only]

An array of FrameLabel objects for the scene. Each FrameLabel object contains a frame property, which specifies the frame number corresponding to the label, and a name property.


Implementação
    public function get labels():Array

Veja também

namepropriedade 
name:String  [read-only]

The name of the scene.


Implementação
    public function get name():String
numFramespropriedade 
numFrames:int  [read-only]

The number of frames in the scene.


Implementação
    public function get numFrames():int