Packageorg.openzoom.flash.scene
Interfacepublic interface IMultiScaleScene extends IDisposable, flash.events.IEventDispatcher

Interface for a multiscale scene that is viewed with a viewport.



Public Properties
 PropertyDefined by
  sceneHeight : Number
Indicates the height of the scene, in pixels.
IMultiScaleScene
  sceneWidth : Number
Indicates the width of the scene, in pixels.
IMultiScaleScene
  targetCoordinateSpace : DisplayObject
[read-only] The display object that defines the coordinate system to use.
IMultiScaleScene
Public Methods
 MethodDefined by
 Inherited
dispose():void
Releases all resources this object holds on to.
IDisposable
Events
 EventSummaryDefined by
   Dispatched when sceneWidth or sceneHeight are changed.IMultiScaleScene
Property detail
sceneHeightproperty
sceneHeight:Number  [read-write]

Indicates the height of the scene, in pixels.

Implementation
    public function get sceneHeight():Number
    public function set sceneHeight(value:Number):void
sceneWidthproperty 
sceneWidth:Number  [read-write]

Indicates the width of the scene, in pixels.

Implementation
    public function get sceneWidth():Number
    public function set sceneWidth(value:Number):void
targetCoordinateSpaceproperty 
targetCoordinateSpace:DisplayObject  [read-only]

The display object that defines the coordinate system to use. This is mainly used for renderers that want to compute their bounds with DisplayObject::getBounds relative to the scene they are contained in.

Implementation
    public function get targetCoordinateSpace():DisplayObject
Event detail
resizeevent 
Event object type: flash.events.Event

Dispatched when sceneWidth or sceneHeight are changed.