Packageispring.presenter.player.skin.ui
Interfacepublic interface ISkinWindow extends flash.events.IEventDispatcher

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The ISkinWindow interface represents the player window providing access to the presentation player dimensions and its display object.

The ISkinWindow interface can be obtained via the window property on the ISkin interface.

The ISkinWindow interface extends the flash.events.IEventDispatcher interface. The current implementation of the ISkinWindow interface does not displatch any event. This functionality is reserved for future versions.

See also

ispring.presenter.player.skin.ISkin.window
flash.events.IEventDispatcher


Public Properties
PropertyDefined By
displayObject : DisplayObject
[read-only] The flash.display.DisplayObject object visualizing the presentation content.
ISkinWindow
height : Number
The skin window height in pixels.
ISkinWindow
maxHeight : Number
The maximal height of the skin window in pixels.
ISkinWindow
maximized : Boolean
Indicates whether the skin window is maximized.
ISkinWindow
maxWidth : Number
The maximal width of the skin window in pixels.
ISkinWindow
minHeight : Number
The minimal height of the skin window in pixels.
ISkinWindow
minWidth : Number
The minimal width of the skin window in pixels.
ISkinWindow
width : Number
The skin window height in pixels.
ISkinWindow
Public Methods
MethodDefined By
 
resize(width:Number, height:Number):void
Resizes the player window.
ISkinWindow
Property Detail
displayObjectproperty
displayObject:DisplayObject  [read-only]

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The flash.display.DisplayObject object visualizing the presentation content.


Implementation
    public function get displayObject():DisplayObject

See also

heightproperty 
height:Number

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The skin window height in pixels.


Implementation
    public function get height():Number
    public function set height(value:Number):void

See also

maxHeightproperty 
maxHeight:Number

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The maximal height of the skin window in pixels.


Implementation
    public function get maxHeight():Number
    public function set maxHeight(value:Number):void

See also

maximizedproperty 
maximized:Boolean

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

Indicates whether the skin window is maximized.


Implementation
    public function get maximized():Boolean
    public function set maximized(value:Boolean):void
maxWidthproperty 
maxWidth:Number

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The maximal width of the skin window in pixels.


Implementation
    public function get maxWidth():Number
    public function set maxWidth(value:Number):void

See also

minHeightproperty 
minHeight:Number

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The minimal height of the skin window in pixels.


Implementation
    public function get minHeight():Number
    public function set minHeight(value:Number):void

See also

minWidthproperty 
minWidth:Number

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The minimal width of the skin window in pixels.


Implementation
    public function get minWidth():Number
    public function set minWidth(value:Number):void

See also

widthproperty 
width:Number

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The skin window height in pixels.


Implementation
    public function get width():Number
    public function set width(value:Number):void

See also

Method Detail
resize()method
public function resize(width:Number, height:Number):void

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

Resizes the player window.

Parameters

width:Number — A new width of the skin window in pixels.
 
height:Number — A new height if the skin window in pixels.


Throws
flash.errors:IllegalOperationError — Throws if the skin window is maximized (the maximized property is true).

See also