Packageispring.presenter.presentation.resources.references
Interfacepublic interface IReference 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 IReference interface stores information about a reference.

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

See also

ispring.presenter.presentation.resources.references.IReferences
flash.events.IEventDispatcher


Public Properties
PropertyDefined By
target : String
[read-only] The name of the target window to open the reference in.
IReference
title : String
[read-only] The reference title.
IReference
type : String
[read-only] The type of the reference.
IReference
url : String
[read-only] The reference URL.
IReference
Public Methods
MethodDefined By
 
navigate(overridenTarget:String = null):void
Opens the reference in the specified browser window.
IReference
Property Detail
targetproperty
target:String  [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 name of the target window to open the reference in.


Implementation
    public function get target():String
titleproperty 
title:String  [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 reference title.


Implementation
    public function get title():String
typeproperty 
type:String  [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 type of the reference. See the ispring.presenter.presentation.resources.references.ReferenceType constants for this property.


Implementation
    public function get type():String

See also

urlproperty 
url:String  [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 reference URL.


Implementation
    public function get url():String
Method Detail
navigate()method
public function navigate(overridenTarget:String = null):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

Opens the reference in the specified browser window.

Parameters

overridenTarget:String (default = null) — A target window name to open the reference. If this parameter is null the reference is opened in the target window defined by the target property.

See also