ActionScript® 3.0 — dokumentacja dla platformy Adobe® Flash®
Strona główna  |  Ukryj listę pakietów i klas |  Pakiety  |  Klasy  |  Nowości  |  Indeks  |  Dodatki  |  Dlaczego język angielski?
Filtry: Pobieranie danych z serwera...
Pobieranie danych z serwera...
mx.automation 

IAutomationObjectHelper  - AS3 Flex

Pakietmx.automation
Interfejspublic interface IAutomationObjectHelper
Implementory AutomationManager

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

The IAutomationObjectHelper interface defines helper methods for IAutomationObjects.



Właściwości publiczne
 WłaściwośćZdefiniowane przez
  recording : Boolean
[tylko do odczytu] Indicates whether recording is taking place, true, or not, false.
IAutomationObjectHelper
  replaying : Boolean
[tylko do odczytu] Indicates whether replay is taking place, true, or not, false.
IAutomationObjectHelper
Metody publiczne
 MetodaZdefiniowane przez
  
addSynchronization(isComplete:Function, target:Object = null):void
Adds a synchronization object to the automation manager.
IAutomationObjectHelper
  
Returns the parent of the composite object.
IAutomationObjectHelper
  
helpCreateIDPart(parent:IAutomationObject, child:IAutomationObject, automationNameCallback:Function = null, automationIndexCallback:Function = null):AutomationIDPart
Creates an id for a given child within a parent.
IAutomationObjectHelper
  
helpCreateIDPartWithRequiredProperties(parent:IAutomationObject, child:IAutomationObject, properties:Array, automationNameCallback:Function = null, automationIndexCallback:Function = null):AutomationIDPart
Creates an id for a given child within a parent.
IAutomationObjectHelper
  
Returns an Array of children within a parent which match the id.
IAutomationObjectHelper
  
Determines whether an object is a composite or not.
IAutomationObjectHelper
  
Dispatches a MouseEvent.MOUSE_DOWN, MouseEvent.MOUSE_UP, and MouseEvent.CLICK from the specified IInteractionReplayer with the specified modifiers.
IAutomationObjectHelper
  
Replays a click event outside of the main drawing area.
IAutomationObjectHelper
  
Dispatches a KeyboardEvent.KEY_DOWN and KeyboardEvent.KEY_UP event for the specified KeyboardEvent object.
IAutomationObjectHelper
  
replayKeyDownKeyUp(to:IEventDispatcher, keyCode:uint, ctrlKey:Boolean = false, shiftKey:Boolean = false, altKey:Boolean = false):Boolean
Dispatches a KeyboardEvent.KEY_DOWN and KeyboardEvent.KEY_UP event from the specified IInteractionReplayer, for the specified key, with the specified modifiers.
IAutomationObjectHelper
  
Dispatches a MouseEvent while simulating mouse capture.
IAutomationObjectHelper
Szczegół właściwości

recording

właściwość
recording:Boolean  [tylko do odczytu]

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Indicates whether recording is taking place, true, or not, false.



Implementacja
    public function get recording():Boolean

replaying

właściwość 
replaying:Boolean  [tylko do odczytu]

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Indicates whether replay is taking place, true, or not, false.



Implementacja
    public function get replaying():Boolean
Szczegół metody

addSynchronization

()metoda
public function addSynchronization(isComplete:Function, target:Object = null):void

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Adds a synchronization object to the automation manager. The automation manager waits until the isComplete method returns true before proceeding with the next replay event.

Parametry

isComplete:Function — Function that indicates whether the synchronized operation is completed.
 
target:Object (default = null) — If null, all replay is stalled until the isComplete method returns true, otherwise the automation manager will only wait if the next operation is on the target.

getAutomationComposite

()metoda 
public function getAutomationComposite(obj:IAutomationObject):IAutomationObject

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Returns the parent of the composite object.

Parametry

obj:IAutomationObject — Composite object.

Zwraca
IAutomationObject — The parent IAutomationObject of the composite object.

helpCreateIDPart

()metoda 
public function helpCreateIDPart(parent:IAutomationObject, child:IAutomationObject, automationNameCallback:Function = null, automationIndexCallback:Function = null):AutomationIDPart

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Creates an id for a given child within a parent.

Parametry

parent:IAutomationObject — Parent of object for which to create and id.
 
child:IAutomationObject — Object for which to create an id.
 
automationNameCallback:Function (default = null) — A user-supplied function used to determine the child's automationName.
 
automationIndexCallback:Function (default = null) — A user-supplied function used to determine the child's automationIndex.

Zwraca
AutomationIDPart — An AutomationIDPart object representing the child within the parent.

helpCreateIDPartWithRequiredProperties

()metoda 
public function helpCreateIDPartWithRequiredProperties(parent:IAutomationObject, child:IAutomationObject, properties:Array, automationNameCallback:Function = null, automationIndexCallback:Function = null):AutomationIDPart

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Creates an id for a given child within a parent.

Parametry

parent:IAutomationObject — Parent of object for which to create and id.
 
child:IAutomationObject — Object for which to create an id.
 
properties:Array — which needs to be considered for creating the id.
 
automationNameCallback:Function (default = null) — A user-supplied function used to determine the child's automationName.
 
automationIndexCallback:Function (default = null) — A user-supplied function used to determine the child's automationIndex.

Zwraca
AutomationIDPart — An AutomationIDPart object representing the child within the parent.

helpResolveIDPart

()metoda 
public function helpResolveIDPart(parent:IAutomationObject, part:Object):Array

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Returns an Array of children within a parent which match the id.

Parametry

parent:IAutomationObject — Parent object under which the id needs to be resolved.
 
part:Object — AutomationIDPart object representing the child.

Zwraca
Array — Array of children which match the id of part.

isAutomationComposite

()metoda 
public function isAutomationComposite(obj:IAutomationObject):Boolean

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Determines whether an object is a composite or not. If an object is not reachable through the automation APIs from the top application then it is considered to be a composite.

Parametry

obj:IAutomationObject — The object.

Zwraca
Booleantrue if the object is a composite.

replayClick

()metoda 
public function replayClick(to:IEventDispatcher, sourceEvent:MouseEvent = null):Boolean

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Dispatches a MouseEvent.MOUSE_DOWN, MouseEvent.MOUSE_UP, and MouseEvent.CLICK from the specified IInteractionReplayer with the specified modifiers.

Parametry

to:IEventDispatcher — Event dispatcher.
 
sourceEvent:MouseEvent (default = null) — Mouse event.

Zwraca
Booleantrue if the events were dispatched.

replayClickOffStage

()metoda 
public function replayClickOffStage():Boolean

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Replays a click event outside of the main drawing area. use this method to simulate the mouseDownOutside event.

Zwraca
Booleantrue if the event was dispatched.

replayKeyboardEvent

()metoda 
public function replayKeyboardEvent(to:IEventDispatcher, event:KeyboardEvent):Boolean

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Dispatches a KeyboardEvent.KEY_DOWN and KeyboardEvent.KEY_UP event for the specified KeyboardEvent object.

Parametry

to:IEventDispatcher — Event dispatcher.
 
event:KeyboardEvent — Keyboard event.

Zwraca
Booleantrue if the events were dispatched.

replayKeyDownKeyUp

()metoda 
public function replayKeyDownKeyUp(to:IEventDispatcher, keyCode:uint, ctrlKey:Boolean = false, shiftKey:Boolean = false, altKey:Boolean = false):Boolean

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Dispatches a KeyboardEvent.KEY_DOWN and KeyboardEvent.KEY_UP event from the specified IInteractionReplayer, for the specified key, with the specified modifiers.

Parametry

to:IEventDispatcher — Key code for key pressed.
 
keyCode:uint — Boolean indicating whether Ctrl key pressed.
 
ctrlKey:Boolean (default = false) — Boolean indicating whether Shift key pressed.
 
shiftKey:Boolean (default = false) — Boolean indicating whether Alt key pressed.
 
altKey:Boolean (default = false)

Zwraca
Booleantrue if the events were dispatched.

replayMouseEvent

()metoda 
public function replayMouseEvent(target:IEventDispatcher, event:MouseEvent):Boolean

Wersja języka: ActionScript 3.0
Wersja produktu: Flex 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Dispatches a MouseEvent while simulating mouse capture.

Parametry

target:IEventDispatcher — Event dispatcher.
 
event:MouseEvent — Mouse event.

Zwraca
Booleantrue if the event was dispatched.




[ X ]Dlaczego język angielski?
Treść dokumentacji języka ActionScript 3.0 wyświetlana w języku angielskim

Niektóre części dokumentacji języka ActionScript 3.0 nie są przetłumaczone na poszczególne języki. Gdy element nie jest przetłumaczony na dany język, jest wyświetlany tekst angielski. Na przykład opis klasy ga.controls.HelpBox nie jest przetłumaczony na żaden dodatkowy język. Z tego powodu polska wersja dokumentacji zawiera opis klasy ga.controls.HelpBox w języku angielskim.