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.
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
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
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
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
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
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
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
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
hostFormat:flashx.textLayout.formats: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():flashx.textLayout.formats:ITextLayoutFormat
public function set hostFormat(value:flashx.textLayout.formats:ITextLayoutFormat):void
numLines:int
[read-only]
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
The total number of lines in the flow.
Implementation public function get numLines():int
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
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
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
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:
- Start with TextContainerManager.defaultConfiguration and modify it
- 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.
|
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
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.
ReturnsSee also
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.
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()
.
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.
ReturnsSee also
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.
|
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 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
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 | Boolean — true if it has created the scrollRect object.
|
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
public function endInteraction():void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Terminates interaction.
See also
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.
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
See also
public function focusInHandler(event:FocusEvent):void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Process a focusIn event.
Parameters
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
See also
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.
ReturnsSee also
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 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 public function getLineAt(index:int):flash.text.engine: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 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
|
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 public function getTextFlow():flashx.textLayout.elements: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 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 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 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
See also
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.
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.
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 | Boolean — true if the content needs composing; false otherwise.
|
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
See also
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
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
See also
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
See also
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
See also
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
See also
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
See also
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
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
See also
public function mouseOverHandler(event:MouseEvent):void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Process a mouseOver event.
Parameters
See also
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
See also
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
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
See also
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.
|
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
|
public function setTextFlow(textFlow:flashx.textLayout.elements: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
public function textInputHandler(event:flash.events: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
See also
public function updateContainer():void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Updates the display; calls either the factory or updateAllControllers().
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.
Event Object Type: flashx.textLayout.events.CompositionCompleteEvent
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Dispatched after every recompose.
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
Event Object Type: flashx.textLayout.events.FlowOperationEvent
property FlowOperationEvent.type = 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.
Event Object Type: flashx.textLayout.events.FlowOperationEvent
property FlowOperationEvent.type = 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.
Event Object Type: flashx.textLayout.events.FlowOperationEvent
property FlowOperationEvent.type = 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.
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.
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.
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.
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.
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.
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.
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.
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.
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.