Packagecom.adobe.portfolio.components.supportClasses
Classpublic class CanvasItem
InheritanceCanvasItem Inheritance spark.components.supportClasses.SkinnableComponent
Implements mx.managers.IFocusManagerComponent, spark.components.IItemRenderer, mx.controls.listClasses.IListItemRenderer, IListenAndWatch

An item renderer used to render CanvasDataItemData objects in a CanvasList.



Public Properties
 PropertyDefined By
  canvasData : CanvasItemData
The CanvasItemData object to be rendered.
CanvasItem
  data : Object
The data object to be renderered.
CanvasItem
  dragging : Boolean
CanvasItem
  imageOpacity : Number
[read-only] The opacity of the image component for this item.
CanvasItem
  itemIndex : int
CanvasItem
  label : String
CanvasItem
  playSWF : Boolean
True if SWF content within this component should be played; false otherwise.
CanvasItem
  selected : Boolean
CanvasItem
  showsCaret : Boolean
CanvasItem
  swfOpacity : Number
[read-only] The opacity of the swf component for this item.
CanvasItem
Protected Properties
 PropertyDefined By
  imageContext : PropertyContext
[read-only] The property context used to represent the image properties for this item.
CanvasItem
  swfContext : PropertyContext
[read-only] The property context used to represent the swf properties for this item.
CanvasItem
  textContext : PropertyContext
[read-only] The property context used to represent the text properties for this item.
CanvasItem
Public Methods
 MethodDefined By
  
Default constructor
CanvasItem
  
A function to add event listeners and change watchers required by this item.
CanvasItem
  
loseContext():Boolean
Clears the property context for this item as the current property context.
CanvasItem
  
A function to clean up event listeners and change watchers required by this item.
CanvasItem
  
takeContext():Boolean
Sets the property context for this item as the current property context.
CanvasItem
  
takeFocus():void
Gives focus to this item.
CanvasItem
Protected Methods
 MethodDefined By
  
[override]
CanvasItem
  
[override]
CanvasItem
  
handleContainsPoint(handle:GraphicElement, point:Point):Boolean
Returns true if the given point is contained in the bounds of the given handle.
CanvasItem
  
onDataPropertyChanged(event:PropertyChangeEvent):void
Event listener called when this item's data changes.
CanvasItem
  
onMouseDoubleClick(event:MouseEvent):void
Event listener for double-click events on this item.
CanvasItem
  
onMouseDown(event:MouseEvent):void
Event listener for mouseDown events on this item.
CanvasItem
  
onMouseRoll(event:MouseEvent):void
Event listener for rollover events on this item.
CanvasItem
  
onSetImageClick(event:MouseEvent):void
Event listener for click events on the image component skin part.
CanvasItem
  
onSetSwfClick(event:MouseEvent):void
Event listener for click events on the swf component skin part.
CanvasItem
  
onTextChange(event:TextOperationEvent):void
Event listener for text change events on the text area skin part.
CanvasItem
  
partAdded(partName:String, instance:Object):void
[override]
CanvasItem
  
partRemoved(partName:String, instance:Object):void
[override]
CanvasItem
  
setAuthoringMode(value:Boolean):void
A function invoked when authoring mode changes.
CanvasItem
Events
 Event Summary Defined By
  Dispatched when the user requests that this item be removed from its parent.CanvasItem
Skin Parts

This component uses skins made up of skin parts. Do not set the skin parts directly. The component's skin sets the skin parts.


 Skin Part Description Defined By
  
handleBC:spark.primitives.supportClasses.GraphicElement
Required: false Part Type: Static
An optional bottom-center handle skin part for resizing.
CanvasItem
  
handleBL:spark.primitives.supportClasses.GraphicElement
Required: false Part Type: Static
An optional bottom-left handle skin part for resizing.
CanvasItem
  
handleBorder:spark.primitives.Rect
Required: false Part Type: Static
An optional handle border skin part for moving.
CanvasItem
  
handleBR:spark.primitives.supportClasses.GraphicElement
Required: false Part Type: Static
An optional bottom-right handle skin part for resizing.
CanvasItem
  
handleML:spark.primitives.supportClasses.GraphicElement
Required: false Part Type: Static
An optional middle-left handle skin part for resizing.
CanvasItem
  
handleMove:spark.primitives.Rect
Required: false Part Type: Static
An optional skin part representing a drag region for moving.
CanvasItem
  
handleMR:spark.primitives.supportClasses.GraphicElement
Required: false Part Type: Static
An optional middle-right handle skin part for resizing.
CanvasItem
  
handleTC:spark.primitives.supportClasses.GraphicElement
Required: false Part Type: Static
An optional top-center handle skin part for resizing.
CanvasItem
  
handleTL:spark.primitives.supportClasses.GraphicElement
Required: false Part Type: Static
An optional top-left handle skin part for resizing.
CanvasItem
  
handleTR:spark.primitives.supportClasses.GraphicElement
Required: false Part Type: Static
An optional top-right handle skin part for resizing.
CanvasItem
  
imageComponent:mx.controls.Image
Required: true Part Type: Static
The image skin part used for image items.
CanvasItem
  
setImageButton:mx.core.IButton
Required: false Part Type: Static
An optional button skin part used to set the source of the image component for image items.
CanvasItem
  
swfComponent:mx.controls.SWFLoader
Required: true Part Type: Static
The swf skin part used for image items.
CanvasItem
  
textArea:spark.components.TextArea
Required: true Part Type: Static
The text area skin part used for text items.
CanvasItem
Skin States

To skin the component, implement a skin that defines the following states. Although you must implement all skin states, a skin state can be empty. An empty skin state specifies no changes to the default skin state.


 Skin State Description Defined By
  
imageAuthoringNormal
CanvasItem
  
imageAuthoringOver
CanvasItem
  
imageAuthoringOverAndSelected
CanvasItem
  
imageAuthoringSelected
CanvasItem
  
imageNormal
CanvasItem
  
imageOver
CanvasItem
  
imageOverAndSelected
CanvasItem
  
imageSelected
CanvasItem
  
swfAuthoringNormal
CanvasItem
  
swfAuthoringOver
CanvasItem
  
swfAuthoringOverAndSelected
CanvasItem
  
swfAuthoringSelected
CanvasItem
  
swfNormal
CanvasItem
  
swfOver
CanvasItem
  
swfOverAndSelected
CanvasItem
  
swfSelected
CanvasItem
  
textAuthoringNormal
CanvasItem
  
textAuthoringOver
CanvasItem
  
textAuthoringOverAndSelected
CanvasItem
  
textAuthoringSelected
CanvasItem
  
textNormal
CanvasItem
  
textOver
CanvasItem
  
textOverAndSelected
CanvasItem
  
textSelected
CanvasItem
Public Constants
 ConstantDefined By
  EVENT_REMOVE : String = removeItem
[static] A string literal representing the name of the removeItem event.
CanvasItem
  SKIN_PART_HANDLE_BORDER : String = handleBorder
[static] A string literal representing the name of the handle border skin part.
CanvasItem
  SKIN_PART_HANDLE_BOTTOM_CENTER : String = handleBC
[static] A string literal representing the name of the bottom-center handle skin part.
CanvasItem
  SKIN_PART_HANDLE_BOTTOM_LEFT : String = handleBL
[static] A string literal representing the name of the bottom-left handle skin part.
CanvasItem
  SKIN_PART_HANDLE_BOTTOM_RIGHT : String = handleBR
[static] A string literal representing the name of the bottom-right handle skin part.
CanvasItem
  SKIN_PART_HANDLE_MIDDLE_LEFT : String = handleML
[static] A string literal representing the name of the middle-left handle skin part.
CanvasItem
  SKIN_PART_HANDLE_MIDDLE_RIGHT : String = handleMR
[static] A string literal representing the name of the middle-right handle skin part.
CanvasItem
  SKIN_PART_HANDLE_MOVE : String = handleMove
[static] A string literal representing the name of the handle move skin part.
CanvasItem
  SKIN_PART_HANDLE_TOP_CENTER : String = handleTC
[static] A string literal representing the name of the top-center handle skin part.
CanvasItem
  SKIN_PART_HANDLE_TOP_LEFT : String = handleTL
[static] A string literal representing the name of the top-left handle skin part.
CanvasItem
  SKIN_PART_HANDLE_TOP_RIGHT : String = handleTR
[static] A string literal representing the name of the top-right handle skin part.
CanvasItem
  SKIN_PART_IMAGE_COMPONENT : String = imageComponent
[static] A string literal representing the name of the image component skin part.
CanvasItem
  SKIN_PART_SET_IMAGE_BUTTON : String = setImageButton
[static] A string literal representing the name of the set image button skin part.
CanvasItem
  SKIN_PART_SWF_COMPONENT : String = swfComponent
[static] A string literal representing the name of the swf component skin part.
CanvasItem
  SKIN_PART_TEXT_AREA : String = textArea
[static] A string literal representing the name of the text area skin part.
CanvasItem
  SKIN_STATE_IMAGE_AUTHORING_NORMAL : String = imageAuthoringNormal
[static] A string literal representing the name of the normal image authoring state.
CanvasItem
  SKIN_STATE_IMAGE_AUTHORING_OVER : String = imageAuthoringOver
[static] A string literal representing the name of the over image authoring state.
CanvasItem
  SKIN_STATE_IMAGE_AUTHORING_OVER_AND_SELECTED : String = imageAuthoringOverAndSelected
[static] A string literal representing the name of the overAndSelected image authoring state.
CanvasItem
  SKIN_STATE_IMAGE_AUTHORING_SELECTED : String = imageAuthoringSelected
[static] A string literal representing the name of the selected image authoring state.
CanvasItem
  SKIN_STATE_IMAGE_NORMAL : String = imageNormal
[static] A string literal representing the name of the normal image consumption state.
CanvasItem
  SKIN_STATE_IMAGE_OVER : String = imageOver
[static] A string literal representing the name of the over image consumption state.
CanvasItem
  SKIN_STATE_IMAGE_OVER_AND_SELECTED : String = imageOverAndSelected
[static] A string literal representing the name of the overAndSelected image consumption state.
CanvasItem
  SKIN_STATE_IMAGE_SELECTED : String = imageSelected
[static] A string literal representing the name of the selected image comsumption state.
CanvasItem
  SKIN_STATE_SWF_AUTHORING_NORMAL : String = swfAuthoringNormal
[static] A string literal representing the name of the normal swf authoring state.
CanvasItem
  SKIN_STATE_SWF_AUTHORING_OVER : String = swfAuthoringOver
[static] A string literal representing the name of the over swf authoring state.
CanvasItem
  SKIN_STATE_SWF_AUTHORING_OVER_AND_SELECTED : String = swfAuthoringOverAndSelected
[static] A string literal representing the name of the overAndSelected swf authoring state.
CanvasItem
  SKIN_STATE_SWF_AUTHORING_SELECTED : String = swfAuthoringSelected
[static] A string literal representing the name of the selected swf authoring state.
CanvasItem
  SKIN_STATE_SWF_NORMAL : String = swfNormal
[static] A string literal representing the name of the normal swf consumption state.
CanvasItem
  SKIN_STATE_SWF_OVER : String = swfOver
[static] A string literal representing the name of the over swf consumption state.
CanvasItem
  SKIN_STATE_SWF_OVER_AND_SELECTED : String = swfOverAndSelected
[static] A string literal representing the name of the overAndSelected swf consumption state.
CanvasItem
  SKIN_STATE_SWF_SELECTED : String = swfSelected
[static] A string literal representing the name of the selected swf consumption state.
CanvasItem
  SKIN_STATE_TEXT_AUTHORING_NORMAL : String = textAuthoringNormal
[static] A string literal representing the name of the normal text authoring state.
CanvasItem
  SKIN_STATE_TEXT_AUTHORING_OVER : String = textAuthoringOver
[static] A string literal representing the name of the over text authoring state.
CanvasItem
  SKIN_STATE_TEXT_AUTHORING_OVER_AND_SELECTED : String = textAuthoringOverAndSelected
[static] A string literal representing the name of the overAndSelected text authoring state.
CanvasItem
  SKIN_STATE_TEXT_AUTHORING_SELECTED : String = textAuthoringSelected
[static] A string literal representing the name of the selected text authoring state.
CanvasItem
  SKIN_STATE_TEXT_NORMAL : String = textNormal
[static] A string literal representing the name of the normal text consumption state.
CanvasItem
  SKIN_STATE_TEXT_OVER : String = textOver
[static] A string literal representing the name of the over text consumption state.
CanvasItem
  SKIN_STATE_TEXT_OVER_AND_SELECTED : String = textOverAndSelected
[static] A string literal representing the name of the overAndSelected text consumption state.
CanvasItem
  SKIN_STATE_TEXT_SELECTED : String = textSelected
[static] A string literal representing the name of the selected text consumption state.
CanvasItem
Protected Constants
 ConstantDefined By
  collectionManager : CollectionManager
[static] The navigator's CollectionManager instance.
CanvasItem
Property Detail
canvasDataproperty
canvasData:CanvasItemData

The CanvasItemData object to be rendered.

This property can be used as the source for data binding.


Implementation
    public function get canvasData():CanvasItemData
    public function set canvasData(value:CanvasItemData):void
dataproperty 
data:Object

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

The data object to be renderered. Only CanvasItemData objects are supported.


Implementation
    public function get data():Object
    public function set data(value:Object):void
draggingproperty 
dragging:Boolean


Implementation
    public function get dragging():Boolean
    public function set dragging(value:Boolean):void
imageContextproperty 
imageContext:PropertyContext  [read-only]

The property context used to represent the image properties for this item.


Implementation
    protected function get imageContext():PropertyContext
imageOpacityproperty 
imageOpacity:Number  [read-only]

The opacity of the image component for this item.

This property can be used as the source for data binding.


Implementation
    public function get imageOpacity():Number
itemIndexproperty 
itemIndex:int


Implementation
    public function get itemIndex():int
    public function set itemIndex(value:int):void
labelproperty 
label:String


Implementation
    public function get label():String
    public function set label(value:String):void
playSWFproperty 
playSWF:Boolean

True if SWF content within this component should be played; false otherwise.


Implementation
    public function get playSWF():Boolean
    public function set playSWF(value:Boolean):void
selectedproperty 
selected:Boolean


Implementation
    public function get selected():Boolean
    public function set selected(value:Boolean):void
showsCaretproperty 
showsCaret:Boolean


Implementation
    public function get showsCaret():Boolean
    public function set showsCaret(value:Boolean):void
swfContextproperty 
swfContext:PropertyContext  [read-only]

The property context used to represent the swf properties for this item.


Implementation
    protected function get swfContext():PropertyContext
swfOpacityproperty 
swfOpacity:Number  [read-only]

The opacity of the swf component for this item.

This property can be used as the source for data binding.


Implementation
    public function get swfOpacity():Number
textContextproperty 
textContext:PropertyContext  [read-only]

The property context used to represent the text properties for this item.


Implementation
    protected function get textContext():PropertyContext
Constructor Detail
CanvasItem()Constructor
public function CanvasItem()

Default constructor

Method Detail
addListenAndWatch()method
public function addListenAndWatch():void

A function to add event listeners and change watchers required by this item.

commitProperties()method 
override protected function commitProperties():void

getCurrentSkinState()method 
override protected function getCurrentSkinState():String

Returns
String
handleContainsPoint()method 
protected function handleContainsPoint(handle:GraphicElement, point:Point):Boolean

Returns true if the given point is contained in the bounds of the given handle.

Parameters

handle:GraphicElement
 
point:Point

Returns
Boolean
loseContext()method 
public function loseContext():Boolean

Clears the property context for this item as the current property context.

Returns
Boolean

See also

PropertyContext
PropertyManager.setCurrentContext
onDataPropertyChanged()method 
protected function onDataPropertyChanged(event:PropertyChangeEvent):void

Event listener called when this item's data changes.

Parameters

event:PropertyChangeEvent

onMouseDoubleClick()method 
protected function onMouseDoubleClick(event:MouseEvent):void

Event listener for double-click events on this item.

Parameters

event:MouseEvent

onMouseDown()method 
protected function onMouseDown(event:MouseEvent):void

Event listener for mouseDown events on this item.

Parameters

event:MouseEvent

onMouseRoll()method 
protected function onMouseRoll(event:MouseEvent):void

Event listener for rollover events on this item.

Parameters

event:MouseEvent

onSetImageClick()method 
protected function onSetImageClick(event:MouseEvent):void

Event listener for click events on the image component skin part.

Parameters

event:MouseEvent

onSetSwfClick()method 
protected function onSetSwfClick(event:MouseEvent):void

Event listener for click events on the swf component skin part.

Parameters

event:MouseEvent

onTextChange()method 
protected function onTextChange(event:TextOperationEvent):void

Event listener for text change events on the text area skin part.

Parameters

event:TextOperationEvent

partAdded()method 
override protected function partAdded(partName:String, instance:Object):void

Parameters

partName:String
 
instance:Object

partRemoved()method 
override protected function partRemoved(partName:String, instance:Object):void

Parameters

partName:String
 
instance:Object

removeListenAndWatch()method 
public function removeListenAndWatch():void

A function to clean up event listeners and change watchers required by this item.

setAuthoringMode()method 
protected function setAuthoringMode(value:Boolean):void

A function invoked when authoring mode changes.

Parameters

value:Boolean

takeContext()method 
public function takeContext():Boolean

Sets the property context for this item as the current property context.

Returns
Boolean

See also

PropertyContext
PropertyManager.setCurrentContext
takeFocus()method 
public function takeFocus():void

Gives focus to this item.

Event Detail
removeItem Event
Event Object Type: flash.events.Event

Dispatched when the user requests that this item be removed from its parent.

Constant Detail
collectionManagerConstant
protected static const collectionManager:CollectionManager

The navigator's CollectionManager instance. All host interaction should go through this instance, rather than the INavigatorHost directly.

EVENT_REMOVEConstant 
public static const EVENT_REMOVE:String = removeItem

A string literal representing the name of the removeItem event.

SKIN_PART_HANDLE_BORDERConstant 
public static const SKIN_PART_HANDLE_BORDER:String = handleBorder

A string literal representing the name of the handle border skin part.

SKIN_PART_HANDLE_BOTTOM_CENTERConstant 
public static const SKIN_PART_HANDLE_BOTTOM_CENTER:String = handleBC

A string literal representing the name of the bottom-center handle skin part.

SKIN_PART_HANDLE_BOTTOM_LEFTConstant 
public static const SKIN_PART_HANDLE_BOTTOM_LEFT:String = handleBL

A string literal representing the name of the bottom-left handle skin part.

SKIN_PART_HANDLE_BOTTOM_RIGHTConstant 
public static const SKIN_PART_HANDLE_BOTTOM_RIGHT:String = handleBR

A string literal representing the name of the bottom-right handle skin part.

SKIN_PART_HANDLE_MIDDLE_LEFTConstant 
public static const SKIN_PART_HANDLE_MIDDLE_LEFT:String = handleML

A string literal representing the name of the middle-left handle skin part.

SKIN_PART_HANDLE_MIDDLE_RIGHTConstant 
public static const SKIN_PART_HANDLE_MIDDLE_RIGHT:String = handleMR

A string literal representing the name of the middle-right handle skin part.

SKIN_PART_HANDLE_MOVEConstant 
public static const SKIN_PART_HANDLE_MOVE:String = handleMove

A string literal representing the name of the handle move skin part.

SKIN_PART_HANDLE_TOP_CENTERConstant 
public static const SKIN_PART_HANDLE_TOP_CENTER:String = handleTC

A string literal representing the name of the top-center handle skin part.

SKIN_PART_HANDLE_TOP_LEFTConstant 
public static const SKIN_PART_HANDLE_TOP_LEFT:String = handleTL

A string literal representing the name of the top-left handle skin part.

SKIN_PART_HANDLE_TOP_RIGHTConstant 
public static const SKIN_PART_HANDLE_TOP_RIGHT:String = handleTR

A string literal representing the name of the top-right handle skin part.

SKIN_PART_IMAGE_COMPONENTConstant 
public static const SKIN_PART_IMAGE_COMPONENT:String = imageComponent

A string literal representing the name of the image component skin part.

SKIN_PART_SET_IMAGE_BUTTONConstant 
public static const SKIN_PART_SET_IMAGE_BUTTON:String = setImageButton

A string literal representing the name of the set image button skin part.

SKIN_PART_SWF_COMPONENTConstant 
public static const SKIN_PART_SWF_COMPONENT:String = swfComponent

A string literal representing the name of the swf component skin part.

SKIN_PART_TEXT_AREAConstant 
public static const SKIN_PART_TEXT_AREA:String = textArea

A string literal representing the name of the text area skin part.

SKIN_STATE_IMAGE_AUTHORING_NORMALConstant 
public static const SKIN_STATE_IMAGE_AUTHORING_NORMAL:String = imageAuthoringNormal

A string literal representing the name of the normal image authoring state.

SKIN_STATE_IMAGE_AUTHORING_OVERConstant 
public static const SKIN_STATE_IMAGE_AUTHORING_OVER:String = imageAuthoringOver

A string literal representing the name of the over image authoring state.

SKIN_STATE_IMAGE_AUTHORING_OVER_AND_SELECTEDConstant 
public static const SKIN_STATE_IMAGE_AUTHORING_OVER_AND_SELECTED:String = imageAuthoringOverAndSelected

A string literal representing the name of the overAndSelected image authoring state.

SKIN_STATE_IMAGE_AUTHORING_SELECTEDConstant 
public static const SKIN_STATE_IMAGE_AUTHORING_SELECTED:String = imageAuthoringSelected

A string literal representing the name of the selected image authoring state.

SKIN_STATE_IMAGE_NORMALConstant 
public static const SKIN_STATE_IMAGE_NORMAL:String = imageNormal

A string literal representing the name of the normal image consumption state.

SKIN_STATE_IMAGE_OVERConstant 
public static const SKIN_STATE_IMAGE_OVER:String = imageOver

A string literal representing the name of the over image consumption state.

SKIN_STATE_IMAGE_OVER_AND_SELECTEDConstant 
public static const SKIN_STATE_IMAGE_OVER_AND_SELECTED:String = imageOverAndSelected

A string literal representing the name of the overAndSelected image consumption state.

SKIN_STATE_IMAGE_SELECTEDConstant 
public static const SKIN_STATE_IMAGE_SELECTED:String = imageSelected

A string literal representing the name of the selected image comsumption state.

SKIN_STATE_SWF_AUTHORING_NORMALConstant 
public static const SKIN_STATE_SWF_AUTHORING_NORMAL:String = swfAuthoringNormal

A string literal representing the name of the normal swf authoring state.

SKIN_STATE_SWF_AUTHORING_OVERConstant 
public static const SKIN_STATE_SWF_AUTHORING_OVER:String = swfAuthoringOver

A string literal representing the name of the over swf authoring state.

SKIN_STATE_SWF_AUTHORING_OVER_AND_SELECTEDConstant 
public static const SKIN_STATE_SWF_AUTHORING_OVER_AND_SELECTED:String = swfAuthoringOverAndSelected

A string literal representing the name of the overAndSelected swf authoring state.

SKIN_STATE_SWF_AUTHORING_SELECTEDConstant 
public static const SKIN_STATE_SWF_AUTHORING_SELECTED:String = swfAuthoringSelected

A string literal representing the name of the selected swf authoring state.

SKIN_STATE_SWF_NORMALConstant 
public static const SKIN_STATE_SWF_NORMAL:String = swfNormal

A string literal representing the name of the normal swf consumption state.

SKIN_STATE_SWF_OVERConstant 
public static const SKIN_STATE_SWF_OVER:String = swfOver

A string literal representing the name of the over swf consumption state.

SKIN_STATE_SWF_OVER_AND_SELECTEDConstant 
public static const SKIN_STATE_SWF_OVER_AND_SELECTED:String = swfOverAndSelected

A string literal representing the name of the overAndSelected swf consumption state.

SKIN_STATE_SWF_SELECTEDConstant 
public static const SKIN_STATE_SWF_SELECTED:String = swfSelected

A string literal representing the name of the selected swf consumption state.

SKIN_STATE_TEXT_AUTHORING_NORMALConstant 
public static const SKIN_STATE_TEXT_AUTHORING_NORMAL:String = textAuthoringNormal

A string literal representing the name of the normal text authoring state.

SKIN_STATE_TEXT_AUTHORING_OVERConstant 
public static const SKIN_STATE_TEXT_AUTHORING_OVER:String = textAuthoringOver

A string literal representing the name of the over text authoring state.

SKIN_STATE_TEXT_AUTHORING_OVER_AND_SELECTEDConstant 
public static const SKIN_STATE_TEXT_AUTHORING_OVER_AND_SELECTED:String = textAuthoringOverAndSelected

A string literal representing the name of the overAndSelected text authoring state.

SKIN_STATE_TEXT_AUTHORING_SELECTEDConstant 
public static const SKIN_STATE_TEXT_AUTHORING_SELECTED:String = textAuthoringSelected

A string literal representing the name of the selected text authoring state.

SKIN_STATE_TEXT_NORMALConstant 
public static const SKIN_STATE_TEXT_NORMAL:String = textNormal

A string literal representing the name of the normal text consumption state.

SKIN_STATE_TEXT_OVERConstant 
public static const SKIN_STATE_TEXT_OVER:String = textOver

A string literal representing the name of the over text consumption state.

SKIN_STATE_TEXT_OVER_AND_SELECTEDConstant 
public static const SKIN_STATE_TEXT_OVER_AND_SELECTED:String = textOverAndSelected

A string literal representing the name of the overAndSelected text consumption state.

SKIN_STATE_TEXT_SELECTEDConstant 
public static const SKIN_STATE_TEXT_SELECTED:String = textSelected

A string literal representing the name of the selected text consumption state.