Packageflashx.textLayout.container
Classpublic class TextContainerManager
InheritanceTextContainerManager Inheritance flash.events.EventDispatcher
Implements ISWFContext, IInteractionEventHandler, ISandboxSupport

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Manages text in a container. Assumes that it manages all children of the container. Consider using TextContainerManager for better performance in cases where there is a one container per TextFlow, and the TextFlow is not the main focus, is static text, or is infrequently selected. Good for text in form fields, for example.

See also

ContainerController


Public Properties
 PropertyDefined By
  compositionHeight : Number
Returns the vertical extent allowed for text inside the container.
TextContainerManager
  compositionWidth : Number
Returns the horizontal extent allowed for text inside the container.
TextContainerManager
  configuration : IConfiguration
[read-only] The Configuration object for this TextContainerManager.
TextContainerManager
  container : Sprite
[read-only] Returns the container (DisplayObjectContainer) that holds the text that this TextContainerManager manages.
TextContainerManager
  defaultConfiguration : IConfiguration
[static] [read-only] The default configuration for this TextContainerManager.
TextContainerManager
  editingMode : String
Editing mode of this TextContainerManager.
TextContainerManager
  horizontalScrollPolicy : String
Controls whether the factory generates all text lines or stops when the container bounds are filled. Specifies the horizontal scrolling policy, which you can set by assigning one of the constants of the ScrollPolicy class: ON, OFF, or AUTO.
TextContainerManager
  horizontalScrollPosition : Number
Specifies the current horizontal scroll location on the stage.
TextContainerManager
  hostFormat : ITextLayoutFormat
Sets the format when display just a string.
TextContainerManager
  numLines : int
[read-only] The total number of lines composed in the flow.
TextContainerManager
  preserveSelectionOnSetText : Boolean
TextContainerManager
  swfContext : ISWFContext
Optional ISWFContext instance used to make FTE calls as needed in the proper swf context.
TextContainerManager
  verticalScrollPolicy : String
Controls whether the factory generates all text lines or stops when the container bounds are filled. Specifies the vertical scrolling policy, which you can set by assigning one of the constants of the ScrollPolicy class: ON, OFF, or, AUTO.
TextContainerManager
  verticalScrollPosition : Number
Specifies the current vertical scroll location on the stage.
TextContainerManager
Public Methods
 MethodDefined By
  
TextContainerManager(container:Sprite, configuration:IConfiguration = null)
Constructor function - creates a TextContainerManager instance.
TextContainerManager
  
activateHandler(event:Event):void
Processes the Event.ACTIVATE event when the client manages events.
TextContainerManager
  
Returns the current ISelectionManager instance.
TextContainerManager
  
Called to request clients to begin the forwarding of mouseup and mousemove events from outside a security sandbox.
TextContainerManager
  
compose():void
Composes the container text; calls either the factory or updateAllControllers().
TextContainerManager
  
deactivateHandler(event:Event):void
Processes the Event.DEACTIVATE event when the client manages events.
TextContainerManager
  
drawBackgroundAndSetScrollRect(scrollX:Number, scrollY:Number):Boolean
Returns true if it has filled in the container's scrollRect property.
TextContainerManager
  
editHandler(event:Event):void
Processes an edit event (CUT, COPY, PASTE, SELECT_ALL) when the client manages events.
TextContainerManager
  
Terminates interaction.
TextContainerManager
  
Called to inform clients that the the forwarding of mouseup and mousemove events from outside a security sandbox is no longer needed.
TextContainerManager
  
focusChangeHandler(event:FocusEvent):void
Processes the FocusEvent.KEY_FOCUS_CHANGE and FocusEvent.MOUSE_FOCUS_CHANGE events when the client manages events.
TextContainerManager
  
focusInHandler(event:FocusEvent):void
Process a focusIn event.
TextContainerManager
  
focusOutHandler(event:FocusEvent):void
Processes the FocusEvent.FOCUS_OUT event when the client manages events.
TextContainerManager
  
getContentBounds():Rectangle
Creates a rectangle that shows where the last call to either the compose() method or the updateContainer() method placed the text.
TextContainerManager
  
getLineAt(index:int):TextLine
Return the TextLine at the index from array of composed lines.
TextContainerManager
  
getScrollDelta(numLines:int):Number
Figure out the scroll distance required to scroll up or down by the specified number of lines.
TextContainerManager
  
getText(separator:String = 
):String
Returns the current text using a separator between paragraphs.
TextContainerManager
  
The current TextFlow.
TextContainerManager
  
imeStartCompositionHandler(event:IMEEvent):void
Processes the IME_START_COMPOSITION event when the client manages events.
TextContainerManager
  
Call this if you change the selection formats (SelectionFormat) and want the interactionManager to update.
TextContainerManager
  
Call this if you are editing, and want to reset the undo manager used for editing.
TextContainerManager
  
isDamaged():Boolean
Returns true if the content needs composing.
TextContainerManager
  
keyDownHandler(event:KeyboardEvent):void
Processes the KeyboardEvent.KEY_DOWN event when the client manages events.
TextContainerManager
  
keyFocusChangeHandler(event:FocusEvent):void
Processes the FocusEvent.KEY_FOCUS_CHANGE event when the client manages events.
TextContainerManager
  
keyUpHandler(event:KeyboardEvent):void
Processes the Keyboard.KEY_UP event when the client manages events.
TextContainerManager
  
menuSelectHandler(event:ContextMenuEvent):void
Processes the ContextMenuEvent.MENU_SELECT event when the client manages events.
TextContainerManager
  
mouseDoubleClickHandler(event:MouseEvent):void
Processes the MouseEvent.DOUBLE_CLICK event when the client manages events.
TextContainerManager
  
mouseDownHandler(event:MouseEvent):void
Processes the MouseEvent.MOUSE_DOWN event when the client manages events.
TextContainerManager
  
mouseMoveHandler(event:MouseEvent):void
Processes the MouseEvent.MOUSE_MOVE event when the client manages events.
TextContainerManager
  
mouseMoveSomewhere(e:Event):void
Client call to forward a mouseMove event from outside a security sandbox.
TextContainerManager
  
mouseOutHandler(event:MouseEvent):void
Processes the MouseEvent.MOUSE_OUT event when the client manages events.
TextContainerManager
  
mouseOverHandler(event:MouseEvent):void
Process a mouseOver event.
TextContainerManager
  
mouseUpHandler(event:MouseEvent):void
Processes the MouseEvent.MOUSE_UP event when the client manages events.
TextContainerManager
  
mouseUpSomewhere(e:Event):void
Client call to forward a mouseUp event from outside a security sandbox.
TextContainerManager
  
mouseWheelHandler(event:MouseEvent):void
Processes the MouseEvent.MOUSE_WHEEL event when the client manages events.
TextContainerManager
  
resetLine(textLine:TextLine):void
TextContainerManager
  
scrollToRange(activePosition:int, anchorPosition:int):void
Scrolls so that the text range is visible in the container.
TextContainerManager
  
setText(text:String):void
Sets the text property to the specified String.
TextContainerManager
  
setTextFlow(textFlow:TextFlow):void
Sets a TextFlow into this TextContainerManager replacing any existing TextFlow and discarding the current text.
TextContainerManager
  
Processes the SOFT_KEYBOARD_ACTIVATING event when the client manages events.
TextContainerManager
  
textInputHandler(event:TextEvent):void
Processes the TextEvent.TEXT_INPUT event when the client manages events.
TextContainerManager
  
updateContainer():Boolean
Updates the display; calls either the factory or updateAllControllers().
TextContainerManager
Protected Methods
 MethodDefined By
  
createContextMenu():ContextMenu
Creates a ContextMenu for the TextContainerManager.
TextContainerManager
  
Create an edit manager to use for editing.
TextContainerManager
  
Create a selection manager to use for selection.
TextContainerManager
  
Returns the focusedSelectionFormat - by default get it from the configuration.
TextContainerManager
  
Returns the inactiveSelectionFormat - by default get it from the configuration This can be overridden in the subclass to supply a different SelectionFormat
TextContainerManager
  
Returns the undo manager to use.
TextContainerManager
  
Returns the unfocusedSelectionFormat - by default get it from the configuration You can override this method in the subclass to supply a different SelectionFormat.
TextContainerManager
Events
 Event Summary Defined By
  Dispatched when any link is clicked.TextContainerManager
  Dispatched after every recompose.TextContainerManager
  Dispatched by a TextFlow object each time it is damagedTextContainerManager
   Defines the value of the type property of a flowOperationBegin event object.TextContainerManager
   Defines the value of the type property of a flowOperationComplete event object.TextContainerManager
   Defines the value of the type property of a flowOperationEnd event object.TextContainerManager
  Dispatched when a InlineGraphicElement is resized due to having width or height as auto or percent and the graphic has finished loading.TextContainerManager
  Dispatched when the mouse is pressed down over any link.TextContainerManager
  Dispatched when the mouse passes over any link.TextContainerManager
  Dispatched when the mouse is released over any link.TextContainerManager
  Dispatched when the mouse goes out of any link.TextContainerManager
  Dispatched when the mouse first enters any link.TextContainerManager
  Dispatched by a TextFlow object after text is scrolled within a controller container.TextContainerManager
  Dispatched whenever the selection is changed.TextContainerManager
  Dispatched by a TextFlow object each time a container has had new DisplayObjects added or updated as a result of composition.TextContainerManager
Property Detail
compositionHeightproperty
compositionHeight:Number

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Returns the vertical extent allowed for text inside the container. The value is specified in pixels.

After setting this property, the text in the container is damaged and requires composing.


Implementation
    public function get compositionHeight():Number
    public function set compositionHeight(value:Number):void
compositionWidthproperty 
compositionWidth:Number

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Returns the horizontal extent allowed for text inside the container. The value is specified in pixels.

After setting this property, the text in the container is damaged and requires composing.


Implementation
    public function get compositionWidth():Number
    public function set compositionWidth(value:Number):void
configurationproperty 
configuration:IConfiguration  [read-only]

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

The Configuration object for this TextContainerManager.


Implementation
    public function get configuration():IConfiguration

See also

IConfiguration
containerproperty 
container:Sprite  [read-only]

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Returns the container (DisplayObjectContainer) that holds the text that this TextContainerManager manages.


Implementation
    public function get container():Sprite

See also

defaultConfigurationproperty 
defaultConfiguration:IConfiguration  [read-only]

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

The default configuration for this TextContainerManager. Column and padding attributes are set to FormatValue.INHERIT.


Implementation
    public static function get defaultConfiguration():IConfiguration

See also

editingModeproperty 
editingMode:String

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Editing mode of this TextContainerManager. Modes are reading only, reading and selection permitted, and editing (reading, selection, and writing) permitted. Use the constant values of the EditingMode class to set this property.

Default value is READ_WRITE.


Implementation
    public function get editingMode():String
    public function set editingMode(value:String):void

See also

horizontalScrollPolicyproperty 
horizontalScrollPolicy:String

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Controls whether the factory generates all text lines or stops when the container bounds are filled.

Specifies the horizontal scrolling policy, which you can set by assigning one of the constants of the ScrollPolicy class: ON, OFF, or AUTO.


Implementation
    public function get horizontalScrollPolicy():String
    public function set horizontalScrollPolicy(value:String):void
horizontalScrollPositionproperty 
horizontalScrollPosition:Number

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Specifies the current horizontal scroll location on the stage. The value specifies the number of pixels from the left.


Implementation
    public function get horizontalScrollPosition():Number
    public function set horizontalScrollPosition(value:Number):void
hostFormatproperty 
hostFormat:ITextLayoutFormat

Sets the format when display just a string. If displaying a TextFlow this has no immediate effect. The supplied ITextLayoutFormat is not copied. Modifying it without calling this setter has indeterminate effects.


Implementation
    public function get hostFormat():ITextLayoutFormat
    public function set hostFormat(value:ITextLayoutFormat):void
numLinesproperty 
numLines:int  [read-only]

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

The total number of lines composed in the flow. By default TLF does not compose the entire flow and this value may be innacruate. Use composeToPosition to get all lines composed.


Implementation
    public function get numLines():int
preserveSelectionOnSetTextproperty 
preserveSelectionOnSetText:Boolean

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5


Implementation
    public function get preserveSelectionOnSetText():Boolean
    public function set preserveSelectionOnSetText(value:Boolean):void
swfContextproperty 
swfContext:ISWFContext

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Optional ISWFContext instance used to make FTE calls as needed in the proper swf context.


Implementation
    public function get swfContext():ISWFContext
    public function set swfContext(value:ISWFContext):void

See also

verticalScrollPolicyproperty 
verticalScrollPolicy:String

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Controls whether the factory generates all text lines or stops when the container bounds are filled.

Specifies the vertical scrolling policy, which you can set by assigning one of the constants of the ScrollPolicy class: ON, OFF, or, AUTO.


Implementation
    public function get verticalScrollPolicy():String
    public function set verticalScrollPolicy(value:String):void
verticalScrollPositionproperty 
verticalScrollPosition:Number

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Specifies the current vertical scroll location on the stage. The value specifies the number of pixels from the top.


Implementation
    public function get verticalScrollPosition():Number
    public function set verticalScrollPosition(value:Number):void
Constructor Detail
TextContainerManager()Constructor
public function TextContainerManager(container:Sprite, configuration:IConfiguration = null)

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Constructor function - creates a TextContainerManager instance. For best results:

  1. Start with TextContainerManager.defaultConfiguration and modify it
  2. Share the same Configuration among many InputManagers

Parameters
container:Sprite — The DisplayObjectContainer in which to manage the text lines.
 
configuration:IConfiguration (default = null) — - The IConfiguration instance to use with this TextContainerManager instance.
Method Detail
activateHandler()method
public function activateHandler(event:Event):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the Event.ACTIVATE event when the client manages events.

Parameters

event:Event — The Event object.

See also

Event.ACTIVATE
beginInteraction()method 
public function beginInteraction():ISelectionManager

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Returns the current ISelectionManager instance. Converts to TextFlow instance and creates one if necessary.

Returns
ISelectionManager — the interaction manager for this TextContainerManager instance.

See also

beginMouseCapture()method 
public function beginMouseCapture():void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Called to request clients to begin the forwarding of mouseup and mousemove events from outside a security sandbox.

compose()method 
public function compose():void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Composes the container text; calls either the factory or updateAllControllers().

createContextMenu()method 
protected function createContextMenu():ContextMenu

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Creates a ContextMenu for the TextContainerManager. Use the methods of the ContextMenu class to add items to the menu.

You can override this method to define a custom context menu.

Returns
ContextMenu — the created context menu.

See also

ContextMenu
createEditManager()method 
protected function createEditManager(undoManager:IUndoManager):IEditManager

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Create an edit manager to use for editing. Override this method if you have a custom EditManager that you want to use in place of the default.

Parameters

undoManager:IUndoManager — IUndoManager instance for the EditManager being created.

Returns
IEditManager — the editing manager for this TextContainerManager instance.
createSelectionManager()method 
protected function createSelectionManager():ISelectionManager

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Create a selection manager to use for selection. Override this method if you have a custom SelectionManager that you want to use in place of the default.

Returns
ISelectionManager — a new SelectionManager instance.
deactivateHandler()method 
public function deactivateHandler(event:Event):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the Event.DEACTIVATE event when the client manages events.

Parameters

event:Event — The Event object.

See also

Event.DEACTIVATE
drawBackgroundAndSetScrollRect()method 
public function drawBackgroundAndSetScrollRect(scrollX:Number, scrollY:Number):Boolean

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Returns true if it has filled in the container's scrollRect property. This method enables you to test whether scrollRect is set without actually accessing the scrollRect property which can possibly create a performance issue.

Override this method to draw a background or a border. Overriding this method can be tricky as the scrollRect must be set as specified.

Parameters

scrollX:Number — The starting horizontal position of the scroll rectangle.
 
scrollY:Number — The starting vertical position of the scroll rectangle.

Returns
Booleantrue if it has created the scrollRect object.
editHandler()method 
public function editHandler(event:Event):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes an edit event (CUT, COPY, PASTE, SELECT_ALL) when the client manages events.

Parameters

event:Event — Event object.

See also

Event
endInteraction()method 
public function endInteraction():void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Terminates interaction.

See also

endMouseCapture()method 
public function endMouseCapture():void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Called to inform clients that the the forwarding of mouseup and mousemove events from outside a security sandbox is no longer needed.

focusChangeHandler()method 
public function focusChangeHandler(event:FocusEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the FocusEvent.KEY_FOCUS_CHANGE and FocusEvent.MOUSE_FOCUS_CHANGE events when the client manages events.

Parameters

event:FocusEvent — The FocusEvent object.

See also

FocusEvent.KEY_FOCUS_CHANGE
FocusEvent.MOUSE_FOCUS_CHANGE
focusInHandler()method 
public function focusInHandler(event:FocusEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Process a focusIn event.

Parameters

event:FocusEvent

focusOutHandler()method 
public function focusOutHandler(event:FocusEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the FocusEvent.FOCUS_OUT event when the client manages events.

Parameters

event:FocusEvent — The FocusEvent object.

See also

FocusEvent.FOCUS_OUT
getContentBounds()method 
public function getContentBounds():Rectangle

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Creates a rectangle that shows where the last call to either the compose() method or the updateContainer() method placed the text.

Returns
Rectangle — the bounds of the content

See also

getFocusedSelectionFormat()method 
protected function getFocusedSelectionFormat():SelectionFormat

Returns the focusedSelectionFormat - by default get it from the configuration. This can be overridden in the subclass to supply a different SelectionFormat

Returns
SelectionFormat
getInactiveSelectionFormat()method 
protected function getInactiveSelectionFormat():SelectionFormat

Returns the inactiveSelectionFormat - by default get it from the configuration This can be overridden in the subclass to supply a different SelectionFormat

Returns
SelectionFormat
getLineAt()method 
public function getLineAt(index:int):TextLine

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Return the TextLine at the index from array of composed lines.

Parameters

index:int — Finds the line at this index position in the text.

Returns
TextLine — the TextLine that occurs at the specified index.
getScrollDelta()method 
public function getScrollDelta(numLines:int):Number

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Figure out the scroll distance required to scroll up or down by the specified number of lines. Negative numbers scroll upward, bringing more of the top of the TextFlow into view. Positive numbers scroll downward, bringing the next line from the bottom into full view.

When scrolling up, for example, the method makes the next line fully visible. If the next line is partially obscured and the number of lines specified is 1, the partially obscured line becomes fully visible.

Parameters

numLines:int — The number of lines to scroll.

Returns
Number — the delta amount of space to scroll
getText()method 
public function getText(separator:String = 
):String

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Returns the current text using a separator between paragraphs. The separator can be specified with the separator argument. The default value of the separator argument is the Unicode character 'PARAGRAPH SEPARATOR' (U+2029).

Calling the setter discards any attached TextFlow. Any selection is lost.

Parameters

separator:String (default = ) — String to set between paragraphs.

Returns
String
getTextFlow()method 
public function getTextFlow():TextFlow

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

The current TextFlow. Converts this to a full TextFlow representation if it isn't already one.

Returns
TextFlow — the current TextFlow object
getUndoManager()method 
protected function getUndoManager():IUndoManager

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Returns the undo manager to use. By default, creates a unique undo manager. You can override this method in the subclass if you want to customize the undo manager (for example, to use a shared undo manager for multiple TextContainerManager instances).

Returns
IUndoManager — new IUndoManager instance.
getUnfocusedSelectionFormat()method 
protected function getUnfocusedSelectionFormat():SelectionFormat

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Returns the unfocusedSelectionFormat - by default get it from the configuration You can override this method in the subclass to supply a different SelectionFormat.

Returns
SelectionFormat
imeStartCompositionHandler()method 
public function imeStartCompositionHandler(event:IMEEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10.1, AIR 1.5

Processes the IME_START_COMPOSITION event when the client manages events.

Parameters

event:IMEEvent — The IMEEvent object.

See also

IMEEvent.IME_START_COMPOSITION
invalidateSelectionFormats()method 
public function invalidateSelectionFormats():void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Call this if you change the selection formats (SelectionFormat) and want the interactionManager to update.

invalidateUndoManager()method 
public function invalidateUndoManager():void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Call this if you are editing, and want to reset the undo manager used for editing.

isDamaged()method 
public function isDamaged():Boolean

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Returns true if the content needs composing.

Returns
Booleantrue if the content needs composing; false otherwise.
keyDownHandler()method 
public function keyDownHandler(event:KeyboardEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the KeyboardEvent.KEY_DOWN event when the client manages events.

Parameters

event:KeyboardEvent — KeyboardEvent object.

See also

KeyboardEvent.KEY_DOWN
keyFocusChangeHandler()method 
public function keyFocusChangeHandler(event:FocusEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the FocusEvent.KEY_FOCUS_CHANGE event when the client manages events.

Parameters

event:FocusEvent — The FocusEvent object.

keyUpHandler()method 
public function keyUpHandler(event:KeyboardEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the Keyboard.KEY_UP event when the client manages events.

Parameters

event:KeyboardEvent — The KeyboardEvent object.

See also

KeyboardEvent.KEY_UP
menuSelectHandler()method 
public function menuSelectHandler(event:ContextMenuEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the ContextMenuEvent.MENU_SELECT event when the client manages events.

Parameters

event:ContextMenuEvent — ContextMenuEvent object.

See also

ContextMenuEvent.MENU_SELECT
mouseDoubleClickHandler()method 
public function mouseDoubleClickHandler(event:MouseEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the MouseEvent.DOUBLE_CLICK event when the client manages events.

Parameters

event:MouseEvent — The MouseEvent object.

See also

MouseEvent.DOUBLE_CLICK
mouseDownHandler()method 
public function mouseDownHandler(event:MouseEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the MouseEvent.MOUSE_DOWN event when the client manages events.

Parameters

event:MouseEvent — The MouseEvent object.

See also

MouseEvent.MOUSE_DOWN
mouseMoveHandler()method 
public function mouseMoveHandler(event:MouseEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the MouseEvent.MOUSE_MOVE event when the client manages events.

Parameters

event:MouseEvent — The MouseEvent object.

See also

MouseEvent.MOUSE_MOVE
mouseMoveSomewhere()method 
public function mouseMoveSomewhere(e:Event):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Client call to forward a mouseMove event from outside a security sandbox. Coordinates of the mouse move are not needed.

Parameters

e:Event

mouseOutHandler()method 
public function mouseOutHandler(event:MouseEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the MouseEvent.MOUSE_OUT event when the client manages events.

Parameters

event:MouseEvent — The MouseEvent object.

See also

MouseEvent.MOUSE_OUT
mouseOverHandler()method 
public function mouseOverHandler(event:MouseEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Process a mouseOver event.

Parameters

event:MouseEvent

See also

MouseEvent.MOUSE_OVER
mouseUpHandler()method 
public function mouseUpHandler(event:MouseEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the MouseEvent.MOUSE_UP event when the client manages events.

Parameters

event:MouseEvent — The MouseEvent object.

See also

MouseEvent.MOUSE_UP
mouseUpSomewhere()method 
public function mouseUpSomewhere(e:Event):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Client call to forward a mouseUp event from outside a security sandbox. Coordinates of the mouse up are not needed.

Parameters

e:Event

mouseWheelHandler()method 
public function mouseWheelHandler(event:MouseEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the MouseEvent.MOUSE_WHEEL event when the client manages events.

Parameters

event:MouseEvent — The MouseEvent object.

See also

MouseEvent.MOUSE_WHEEL
resetLine()method 
public function resetLine(textLine:TextLine):void

Parameters

textLine:TextLine

scrollToRange()method 
public function scrollToRange(activePosition:int, anchorPosition:int):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Scrolls so that the text range is visible in the container.

Parameters

activePosition:int — The end of the selection that is changed when you extend the selection. It can be either the start or the end of the selection, expressed as an offset from the start of the text flow.
 
anchorPosition:int — The stable end of the selection when you extend the selection. It can be either the start or the end of the selection.

setText()method 
public function setText(text:String):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Sets the text property to the specified String. Discards any attached TextFlow. Any selection is lost.

Parameters

text:String — the String to set

setTextFlow()method 
public function setTextFlow(textFlow:TextFlow):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Sets a TextFlow into this TextContainerManager replacing any existing TextFlow and discarding the current text.

Parameters

textFlow:TextFlow

softKeyboardActivatingHandler()method 
public function softKeyboardActivatingHandler(event:Event):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10.2, AIR 1.5

Processes the SOFT_KEYBOARD_ACTIVATING event when the client manages events.

Parameters

event:Event — The SoftKeyboardEvent object.

See also

SoftKeyboardEvent.SOFT_KEYBOARD_ACTIVATING
textInputHandler()method 
public function textInputHandler(event:TextEvent):void

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Processes the TextEvent.TEXT_INPUT event when the client manages events.

Parameters

event:TextEvent — The TextEvent object.

See also

TextEvent.TEXT_INPUT
updateContainer()method 
public function updateContainer():Boolean

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Updates the display; calls either the factory or updateAllControllers().

Returns
Boolean — true if anything changed.
Event Detail
click Event
Event Object Type: flashx.textLayout.events.FlowElementMouseEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched when any link is clicked.

compositionComplete Event  
Event Object Type: flashx.textLayout.events.CompositionCompleteEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched after every recompose.

damage Event  
Event Object Type: flashx.textLayout.events.DamageEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched by a TextFlow object each time it is damaged

flowOperationBegin Event  
Event Object Type: flashx.textLayout.events.FlowOperationEvent
FlowOperationEvent.type property = flashx.textLayout.events.FlowOperationEvent.FLOW_OPERATION_BEGIN

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Defines the value of the type property of a flowOperationBegin event object. Dispatched before an operation is executed. Cancelling this event blocks the operation.
flowOperationComplete Event  
Event Object Type: flashx.textLayout.events.FlowOperationEvent
FlowOperationEvent.type property = flashx.textLayout.events.FlowOperationEvent.FLOW_OPERATION_COMPLETE

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Defines the value of the type property of a flowOperationComplete event object. Dispatched after all operations including pending and composite operations are completed, composition is finished and the display is scrolled.
flowOperationEnd Event  
Event Object Type: flashx.textLayout.events.FlowOperationEvent
FlowOperationEvent.type property = flashx.textLayout.events.FlowOperationEvent.FLOW_OPERATION_END

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Defines the value of the type property of a flowOperationEnd event object. Dispatched after an operation completes. Any errors are stored in OperationEvent.error. If there is an error, cancelling this event blocks the rethrow of the error. Generally speaking all errors are likely to be fatal.

Changing an operation at this time (after it has been executed) may fail.

inlineGraphicStatusChanged Event  
Event Object Type: flashx.textLayout.events.StatusChangeEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched when a InlineGraphicElement is resized due to having width or height as auto or percent and the graphic has finished loading.

mouseDown Event  
Event Object Type: flashx.textLayout.events.FlowElementMouseEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched when the mouse is pressed down over any link.

mouseMove Event  
Event Object Type: flashx.textLayout.events.FlowElementMouseEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched when the mouse passes over any link.

mouseUp Event  
Event Object Type: flashx.textLayout.events.FlowElementMouseEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched when the mouse is released over any link.

rollOut Event  
Event Object Type: flashx.textLayout.events.FlowElementMouseEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched when the mouse goes out of any link.

rollOver Event  
Event Object Type: flashx.textLayout.events.FlowElementMouseEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched when the mouse first enters any link.

scroll Event  
Event Object Type: flashx.textLayout.events.TextLayoutEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched by a TextFlow object after text is scrolled within a controller container.

selectionChange Event  
Event Object Type: flashx.textLayout.events.SelectionEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched whenever the selection is changed. Primarily used to update selection-dependent user interface.

updateComplete Event  
Event Object Type: flashx.textLayout.events.UpdateCompleteEvent

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Dispatched by a TextFlow object each time a container has had new DisplayObjects added or updated as a result of composition.