[read-only]
This value generally corresponds to the rendered appearance of the
object and should be usable for correlating the identifier with
the object as it appears visually within the application.
An implementation of the IAutomationTabularData interface, which
can be used to retrieve the data.
Implementation public function get automationTabularData():Object
automationValue
property
automationValue:Array [read-only]
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
This value generally corresponds to the rendered appearance of the
object and should be usable for correlating the identifier with
the object as it appears visually within the application.
Implementation public function get automationValue():Array
automationVisible
property
automationVisible:Boolean [read-only]
Language Version :
ActionScript 3.0
Product Version :
Flex 4
Runtime Versions :
Flash Player 9, AIR 1.1
True if this component is visible for automation, false
otherwise.
Implementation public function get automationVisible():Boolean
See also
flash.display.DisplayObject.visible
numAutomationChildren
property
numAutomationChildren:int [read-only]
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
The number of automation children this container has.
This sum should not include any composite children, though
it does include those children not significant within the
automation hierarchy.
Implementation public function get numAutomationChildren():int
showInAutomationHierarchy
property
showInAutomationHierarchy:Boolean
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
A flag that determines if an automation object
shows in the automation hierarchy.
Children of containers that are not visible in the hierarchy
appear as children of the next highest visible parent.
Typically containers used for layout, such as boxes and Canvas,
do not appear in the hierarchy.
Some controls force their children to appear
in the hierarchy when appropriate.
For example a List will always force item renderers,
including boxes, to appear in the hierarchy.
Implementers must support setting this property
to true.
Implementation public function get showInAutomationHierarchy():Boolean public function set showInAutomationHierarchy(value:Boolean):void
Method Detail
createAutomationIDPart
()
method
public function createAutomationIDPart(child:IAutomationObject):Object
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
Returns a set of properties that identify the child within
this container. These values should not change during the
lifespan of the application.
Object — Sets of properties describing the child which can
later be used to resolve the component.
createAutomationIDPartWithRequiredProperties
()
method
public function createAutomationIDPartWithRequiredProperties(child:IAutomationObject, properties:Array):Object
Language Version :
ActionScript 3.0
Product Version :
Flex 4
Runtime Versions :
Flash Player 10, AIR 1.5
Returns a set of properties as automation IDs that identify the child within
this container. These values should not change during the
lifespan of the application
Provides the automation object list . This list
does not include any children that are composites.
Returns
Array — the automation children.
replayAutomatableEvent
()
method
public function replayAutomatableEvent(event:Event):Boolean
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
Replays the specified event. A component author should probably call
super.replayAutomatableEvent in case default replay behavior has been defined
in a superclass.
Parameters
event:Event — The event to replay.
Returns
Boolean — true if a replay was successful.
resolveAutomationIDPart
()
method
public function resolveAutomationIDPart(criteria:Object):Array
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
Resolves a child by using the id provided. The id is a set
of properties as provided by the createAutomationIDPart() method.
Parameters
criteria:Object — Set of properties describing the child.
The criteria can contain regular expression values
resulting in multiple children being matched.
Returns
Array — Array of children that matched the criteria
or null if no children could not be resolved.